diff --git a/.gitignore b/.gitignore index 03d8c28..2455a67 100644 --- a/.gitignore +++ b/.gitignore @@ -405,4 +405,7 @@ ASALocalRun/ .localhistory/ # Meteor -.meteor \ No newline at end of file +.meteor + +# Credentials File +**/appsettings.Secret.json \ No newline at end of file diff --git a/ApptentiveKit.iOS/ApiDefinition.cs b/ApptentiveKit.iOS/ApiDefinition.cs index 06cdd57..ee608fd 100644 --- a/ApptentiveKit.iOS/ApiDefinition.cs +++ b/ApptentiveKit.iOS/ApiDefinition.cs @@ -24,13 +24,18 @@ interface Apptentive : IUNUserNotificationCenterDelegate [Export ("shared", ArgumentSemantic.Strong)] Apptentive Shared { get; } + // @property (nonatomic, class) NSString * _Nullable fontName; + [Static] + [NullAllowed, Export ("fontName")] + string FontName { get; set; } + // @property (nonatomic) enum UITheme theme; [Export ("theme", ArgumentSemantic.Assign)] UITheme Theme { get; set; } // -(void)registerWithKey:(NSString * _Nonnull)key signature:(NSString * _Nonnull)signature completion:(void (^ _Nullable)(BOOL))completion; [Export("registerWithConfiguration:completion:")] - void Register(ApptentiveConfiguration configuration, [NullAllowed] Action completion); + void Register(ApptentiveConfiguration configuration, [NullAllowed] Action? completion); // -(void)engage:(NSString * _Nonnull)event fromViewController:(UIViewController * _Nullable)viewController; [Export("engage:fromViewController:")] @@ -38,7 +43,7 @@ interface Apptentive : IUNUserNotificationCenterDelegate // -(void)engage:(NSString * _Nonnull)event fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion; [Export("engage:fromViewController:completion:")] - void Engage(string @event, [NullAllowed] UIViewController viewController, [NullAllowed] Action completion); + void Engage(string @event, [NullAllowed] UIViewController viewController, [NullAllowed] Action? completion); // -(void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData fromViewController:(UIViewController * _Nullable)viewController; [Export("engage:withCustomData:fromViewController:")] @@ -46,13 +51,13 @@ interface Apptentive : IUNUserNotificationCenterDelegate // -(void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion; [Export("engage:withCustomData:fromViewController:completion:")] - void Engage(string @event, [NullAllowed] NSDictionary customData, [NullAllowed] UIViewController viewController, [NullAllowed] Action completion); + void Engage(string @event, [NullAllowed] NSDictionary customData, [NullAllowed] UIViewController viewController, [NullAllowed] Action? completion); // -(void)queryCanShowInteractionForEvent:(NSString * _Nonnull)event completion:(void (^ _Nonnull)(BOOL))completion; [Export("queryCanShowInteractionForEvent:completion:")] void QueryCanShowInteraction(string @event, Action completion); - // - (void)queryCanShowMessageCenterWithCompletion:(void (^ _Nonnull)(BOOL))completion SWIFT_DEPRECATED_MSG("This feature is not implemented and will always result in false."); + // - (void)queryCanShowMessageCenterWithCompletion:(void (^ _Nonnull)(BOOL))completion; [Export("queryCanShowMessageCenterWithCompletion:")] void QueryCanShowMessageCenter(Action completion); @@ -62,7 +67,7 @@ interface Apptentive : IUNUserNotificationCenterDelegate // -(void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion; [Export("presentMessageCenterFromViewController:completion:")] - void PresentMessageCenter([NullAllowed] UIViewController viewController, [NullAllowed] Action completion); + void PresentMessageCenter([NullAllowed] UIViewController viewController, [NullAllowed] Action? completion); // -(void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController withCustomData:(NSDictionary * _Nullable)customData; [Export("presentMessageCenterFromViewController:withCustomData:")] @@ -70,7 +75,7 @@ interface Apptentive : IUNUserNotificationCenterDelegate // -(void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController withCustomData:(NSDictionary * _Nullable)customData completion:(void (^ _Nullable)(BOOL))completion; [Export("presentMessageCenterFromViewController:withCustomData:completion:")] - void PresentMessageCenter([NullAllowed] UIViewController viewController, [NullAllowed] NSDictionary customData, [NullAllowed] Action completion); + void PresentMessageCenter([NullAllowed] UIViewController viewController, [NullAllowed] NSDictionary customData, [NullAllowed] Action? completion); // @property (nonatomic) NSInteger unreadMessageCount; [Export("unreadMessageCount")] @@ -166,7 +171,7 @@ interface Apptentive : IUNUserNotificationCenterDelegate // - (void)logInWithToken:(NSString * _Nonnull)token completion:(void (^ _Nonnull)(BOOL, NSError * _Nullable))completion; [Export("logInWithToken:completion:")] - void LogIn(string token, Action completion); + void LogIn(string token, Action? completion); // - (void)logOut; [Export("logOut")] @@ -174,7 +179,7 @@ interface Apptentive : IUNUserNotificationCenterDelegate // - (void)updateToken:(NSString * _Nonnull)token completion:(void (^ _Nullable)(BOOL))completion; [Export("updateToken:completion:")] - void UpdateToken(string token, [NullAllowed] Action completion); + void UpdateToken(string token, [NullAllowed] Action? completion); [NullAllowed, Export("authenticationFailureCallback")] Action AuthenticationFailureCallback { get; set; } @@ -210,6 +215,14 @@ interface ApptentiveConfiguration [Export("distributionVersion")] string DistributionVersion { get; set; } + // @property (copy, nonatomic) NSString * _Nullable baseURL; + [NullAllowed, Export("overrideBaseURL")] + NSUrl? OverrideBaseUrl { get; set; } + + // @property (copy, nonatomic) NSString * _Nullable region; + [NullAllowed, Export("region")] + string? Region { get; set; } + // -(instancetype _Nullable)initWithApptentiveKey:(NSString * _Nonnull)apptentiveKey apptentiveSignature:(NSString * _Nonnull)apptentiveSignature; [Export("initWithApptentiveKey:apptentiveSignature:")] IntPtr Constructor(string apptentiveKey, string apptentiveSignature); diff --git a/ApptentiveKit.iOS/ApptentiveKit.iOS.csproj b/ApptentiveKit.iOS/ApptentiveKit.iOS.csproj index 1dc57f1..6d4f5dd 100644 --- a/ApptentiveKit.iOS/ApptentiveKit.iOS.csproj +++ b/ApptentiveKit.iOS/ApptentiveKit.iOS.csproj @@ -1,6 +1,6 @@ - net8.0-ios + net10.0-ios enable true true @@ -9,8 +9,8 @@ Library Alchemer Digital Team - 6.8.1 - Copyright © 2024 Alchemer LLC and contributors + 7.0.0 + Copyright © 2026 Alchemer LLC and contributors True https://github.com/apptentive/apptentive-maui git @@ -23,21 +23,22 @@ Wrapper for ApptentiveKit iOS SDK for use with Plugin.Maui.Apptentive project. - + - + Framework False - + PreserveNewest + None \ No newline at end of file diff --git a/ApptentiveKit.iOS/ApptentiveKit.iOS.nuspec b/ApptentiveKit.iOS/ApptentiveKit.iOS.nuspec index cd6f09b..d5edfbd 100644 --- a/ApptentiveKit.iOS/ApptentiveKit.iOS.nuspec +++ b/ApptentiveKit.iOS/ApptentiveKit.iOS.nuspec @@ -2,7 +2,7 @@ Apptentive.iOS - 6.8.1 + 7.0.0 ApptentiveKit iOS wrapper for Maui plugin Apptentive Apptentive @@ -13,12 +13,12 @@ BSD-3-Clause images\icon.png - + - - + + diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ApptentiveKit b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ApptentiveKit index 60dc3e3..103581f 100755 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ApptentiveKit and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ApptentiveKit differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Assets.car b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Assets.car index a29d18b..ce06cf3 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Assets.car and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Assets.car differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Distribution.plist b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Distribution.plist index 60bba09..2719476 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Distribution.plist and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Distribution.plist differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Headers/ApptentiveKit-Swift.h b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Headers/ApptentiveKit-Swift.h index d6b5920..8b70547 100644 --- a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Headers/ApptentiveKit-Swift.h +++ b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Headers/ApptentiveKit-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// Generated by Apple Swift version 6.2.3 (swiftlang-6.2.3.3.21 clang-1700.6.3.2) #ifndef APPTENTIVEKIT_SWIFT_H #define APPTENTIVEKIT_SWIFT_H #pragma clang diagnostic push @@ -42,6 +42,8 @@ #include #endif #if defined(__cplusplus) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module" #if defined(__arm64e__) && __has_include() # include #else @@ -55,6 +57,7 @@ # endif #pragma clang diagnostic pop #endif +#pragma clang diagnostic pop #endif #if !defined(SWIFT_TYPEDEFS) @@ -62,6 +65,7 @@ # if __has_include() # include # elif !defined(__cplusplus) +typedef unsigned char char8_t; typedef uint_least16_t char16_t; typedef uint_least32_t char32_t; # endif @@ -293,6 +297,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" #pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" +#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -302,12 +307,12 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #if defined(__OBJC__) + @protocol ApptentiveDelegate; enum UITheme : NSInteger; @class NSString; @class UIImage; @class NSData; - /// The main interface to the Apptentive SDK. SWIFT_CLASS("_TtC13ApptentiveKit10Apptentive") @interface Apptentive : NSObject @@ -320,6 +325,10 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) Apptentive * /// The theme to apply to Apptentive UI. /// This property must be set before calling register(credentials:). @property (nonatomic) enum UITheme theme; +/// Whether to store sensitive conversation credentials in the iOS keychain. +/// This property must be set before calling register(credentials:). +/// It defaults to false for backward compatibility. +@property (nonatomic) BOOL shouldUseSecureTokenStorage; /// The name of the person using the app, if available. @property (nonatomic, copy) NSString * _Nullable personName; /// The email address of the person using the app, if available. @@ -363,21 +372,27 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) Apptentive * typedef SWIFT_ENUM(NSInteger, UITheme, open) { /// Apptentive cross-platform look and feel. UIThemeApptentive = 1, + UIThemeCustomerOnly = 2, + UIThemeCustomerBasedOnApptentive = 3, /// iOS default look and feel. UIThemeNone = 0, }; +@interface Apptentive (SWIFT_EXTENSION(ApptentiveKit)) +/// Overrides the system font in Apptentive interactions using the font with the specified name. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable fontName;) ++ (NSString * _Nullable)fontName SWIFT_WARN_UNUSED_RESULT; ++ (void)setFontName:(NSString * _Nullable)value; +@end @class UNNotificationResponse; @class UNNotification; @class UNUserNotificationCenter; - @interface Apptentive (SWIFT_EXTENSION(ApptentiveKit)) /// Sets the remote notification device token to the specified value. /// \param tokenData The remote notification device token passed into application(_:didRegisterForRemoteNotificationsWithDeviceToken:). /// - (void)setRemoteNotificationDeviceToken:(NSData * _Nonnull)tokenData; -- (void)setRemoteNotifcationDeviceToken:(NSData * _Nonnull)tokenData SWIFT_DEPRECATED_MSG("Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead."); /// Should be called in response to the application delegate receiving a remote notification. /// note: /// If the return value is false, the caller is responsible for calling the fetch completion handler. @@ -433,51 +448,23 @@ typedef SWIFT_ENUM(NSInteger, UITheme, open) { - (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center didReceiveNotificationResponse:(UNNotificationResponse * _Nonnull)response withCompletionHandler:(void (^ _Nonnull)(void))completionHandler; @end - - @class ApptentiveConfiguration; -@class TermsAndConditions; @class UIViewController; -@class NSDate; @class NSNumber; -@class UIView; -enum ApptentivePushProvider : NSInteger; -@class NSUUID; enum ApptentiveAuthenticationFailureReason : NSInteger; enum ApptentiveLogLevel : NSUInteger; - @interface Apptentive (SWIFT_EXTENSION(ApptentiveKit)) -+ (void)registerWithConfiguration:(ApptentiveConfiguration * _Nonnull)configuration SWIFT_DEPRECATED_MSG("Use the 'register(with:completion:)' method on the 'shared' instance instead."); - (void)registerWithConfiguration:(ApptentiveConfiguration * _Nonnull)configuration completion:(void (^ _Nullable)(BOOL))completion; -+ (Apptentive * _Nonnull)sharedConnection SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Use the 'shared' static property instead."); -@property (nonatomic, copy) NSString * _Nullable appID SWIFT_DEPRECATED_MSG("This property is ignored. SKStoreReviewController will be used for all ratings."); -@property (nonatomic) BOOL showInfoButton SWIFT_DEPRECATED_MSG("This property is ignored. The info button no longer exists."); -@property (nonatomic, strong) TermsAndConditions * _Nullable surveyTermsAndConditions SWIFT_DEPRECATED_MSG("This feature is not implemented."); -@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveKey SWIFT_DEPRECATED_MSG("This property is not available for reading."); -@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveSignature SWIFT_DEPRECATED_MSG("This property is not available for reading."); - (void)engage:(NSString * _Nonnull)event fromViewController:(UIViewController * _Nullable)viewController; - (void)engage:(NSString * _Nonnull)event fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion; - (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData fromViewController:(UIViewController * _Nullable)viewController; - (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion; -- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData withExtendedData:(NSArray * _Nullable)extendedData fromViewController:(UIViewController * _Nullable)viewController SWIFT_DEPRECATED_MSG("Event extended data are no longer supported. Event will be engaged without extended data."); -- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData withExtendedData:(NSArray * _Nullable)extendedData fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion SWIFT_DEPRECATED_MSG("Event extended data are no longer supported. Event will be engaged without extended data."); - (void)queryCanShowInteractionForEvent:(NSString * _Nonnull)event completion:(void (^ _Nonnull)(BOOL))completion; -+ (NSDictionary * _Nonnull)extendedDataDate:(NSDate * _Nonnull)date SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported."); -+ (NSDictionary * _Nonnull)extendedDataLocationForLatitude:(double)latitude longitude:(double)longitude SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported."); -+ (NSDictionary * _Nonnull)extendedDataCommerceWithTransactionID:(NSString * _Nullable)transactionID affiliation:(NSString * _Nullable)affiliation revenue:(NSNumber * _Nullable)revenue shipping:(NSNumber * _Nullable)shipping tax:(NSNumber * _Nullable)tax currency:(NSString * _Nullable)currency commerceItems:(NSArray * _Nullable)commerceItems SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported."); -+ (NSDictionary * _Nonnull)extendedDataCommerceItemWithItemID:(NSString * _Nullable)itemID name:(NSString * _Nullable)name category:(NSString * _Nullable)category price:(NSNumber * _Nullable)price quantity:(NSNumber * _Nullable)quantity currency:(NSString * _Nullable)currency SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported."); - (void)queryCanShowMessageCenterWithCompletion:(void (^ _Nonnull)(BOOL))completion; - (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController; - (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion; - (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController withCustomData:(NSDictionary * _Nullable)customData; - (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController withCustomData:(NSDictionary * _Nullable)customData completion:(void (^ _Nullable)(BOOL))completion; -- (void)dismissMessageCenterWithAnimated:(BOOL)animated completion:(void (^ _Nullable)(void))completion SWIFT_DEPRECATED_MSG("This feature is not implemented and this method will always result in false."); -- (UIView * _Nonnull)unreadMessageCountAccessoryViewWithApptentiveHeart:(BOOL)apptentiveHeart SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("This feature is not implemented and this property will return an empty view."); -- (void)openAppStore SWIFT_DEPRECATED_MSG("This method is no longer implemented and will trigger an assertion failure."); -- (void)setPushProvider:(enum ApptentivePushProvider)pushProvider deviceToken:(NSData * _Nonnull)deviceToken SWIFT_DEPRECATED_MSG("Use the 'setRemoteNotificationToken()' method instead."); -- (BOOL)didReceveUserNotificationResponse:(UNNotificationResponse * _Nonnull)response from:(UIViewController * _Nullable)_ withCompletionHandler:(void (^ _Nonnull)(void))completionHandler SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:)."); -@property (nonatomic, copy) NSUUID * _Nullable advertisingIdentifier SWIFT_DEPRECATED_MSG("Advertising identifier collection is not implemented."); -@property (nonatomic, copy) NSString * _Nullable mParticleId SWIFT_DEPRECATED_MSG("mParticleId has been renamed to mParticleID."); - (void)removeCustomPersonDataWithKey:(NSString * _Nonnull)key; - (void)removeCustomDeviceDataWithKey:(NSString * _Nonnull)key; - (void)addCustomDeviceDataString:(NSString * _Nonnull)string withKey:(NSString * _Nonnull)key; @@ -486,12 +473,9 @@ enum ApptentiveLogLevel : NSUInteger; - (void)addCustomPersonDataString:(NSString * _Nonnull)string withKey:(NSString * _Nonnull)key; - (void)addCustomPersonDataNumber:(NSNumber * _Nonnull)number withKey:(NSString * _Nonnull)key; - (void)addCustomPersonDataBool:(BOOL)boolValue withKey:(NSString * _Nonnull)key; -@property (nonatomic) id _Nullable styleSheet SWIFT_DEPRECATED_MSG("Set style overrides defined in UIKit+Apptentive.swift extensions."); -- (void)checkSDKConfiguration SWIFT_DEPRECATED_MSG("This method is not currently implemented and will trigger an assertion failure."); - (void)logInWithToken:(NSString * _Nonnull)token completion:(void (^ _Nonnull)(BOOL, NSError * _Nullable))completion; - (void)logOut; @property (nonatomic, copy) void (^ _Nullable authenticationFailureCallback)(enum ApptentiveAuthenticationFailureReason, NSString * _Nullable); -@property (nonatomic, copy) BOOL (^ _Nullable preInteractionCallback)(NSString * _Nonnull, NSDictionary * _Nullable) SWIFT_DEPRECATED_MSG("This feature is no longer supported."); - (void)updateToken:(NSString * _Nonnull)token completion:(void (^ _Nullable)(BOOL))completion; @property (nonatomic) enum ApptentiveLogLevel logLevel; @end @@ -524,7 +508,6 @@ typedef SWIFT_ENUM(NSInteger, ApptentiveAuthenticationFailureReason, open) { }; @class NSURL; - SWIFT_CLASS("_TtC13ApptentiveKit23ApptentiveConfiguration") @interface ApptentiveConfiguration : NSObject /// The Apptentive App Key, obtained from your Apptentive dashboard. @@ -532,21 +515,17 @@ SWIFT_CLASS("_TtC13ApptentiveKit23ApptentiveConfiguration") /// The Apptentive App Signature, obtained from your Apptentive dashboard. @property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveSignature; /// The granularity of log messages to show. -@property (nonatomic) enum ApptentiveLogLevel logLevel; +@property (nonatomic) enum ApptentiveLogLevel logLevel SWIFT_DEPRECATED_MSG("Logging now uses iOS's Unified Logging features so logs are no longer filtered by the SDK."); /// If set, redacts potentially-sensitive information such as user data and credentials from logging. -@property (nonatomic) BOOL shouldSanitizeLogMessages; +@property (nonatomic) BOOL shouldSanitizeLogMessages SWIFT_DEPRECATED_MSG("Logging now uses iOS's Unified Logging features so redaction of sensitive information is handled automatically."); /// The server URL to use for API calls. Should only be used for testing. -@property (nonatomic, copy) NSURL * _Nullable baseURL SWIFT_DEPRECATED_MSG("This property is ignored. Use the designated initializer for 'Apptentive' to set this."); +@property (nonatomic, copy) NSURL * _Nullable overrideBaseURL; +/// The region to use when resolving the API server base URL. +@property (nonatomic, copy) NSString * _Nullable region; /// The name of the distribution that includes the Apptentive SDK. For example “Cordova”. @property (nonatomic, copy) NSString * _Nullable distributionName; /// The version of the distribution that includes the Apptentive SDK. @property (nonatomic, copy) NSString * _Nullable distributionVersion; -/// The iTunes store app ID of the app (used for Apptentive rating prompt). -@property (nonatomic, copy) NSString * _Nullable appID SWIFT_DEPRECATED_MSG("This property is ignored. An 'SKStoreReviewController' will be used for all ratings."); -/// If set, shows a button in Surveys and Message Center that presents information about Apptentive including a link to our privacy policy. -@property (nonatomic) BOOL showInfoButton SWIFT_DEPRECATED_MSG("This property is ignored. The info button no longer exists."); -/// If set, will show a link to terms and conditions in the bottom bar in Surveys. -@property (nonatomic, strong) TermsAndConditions * _Nullable surveyTermsAndConditions SWIFT_DEPRECATED_MSG("This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard."); - (nullable instancetype)initWithApptentiveKey:(NSString * _Nonnull)apptentiveKey apptentiveSignature:(NSString * _Nonnull)apptentiveSignature OBJC_DESIGNATED_INITIALIZER; /// Returns an instance of the ApptentiveConfiguration class initialized with the specified parameters. /// \param key The Apptentive App Key, obtained from your Apptentive dashboard. @@ -561,7 +540,6 @@ SWIFT_CLASS("_TtC13ApptentiveKit23ApptentiveConfiguration") + (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); @end - /// Describes an object that responds to authentication failures for logged-in conversations. SWIFT_PROTOCOL("_TtP13ApptentiveKit18ApptentiveDelegate_") @protocol ApptentiveDelegate @@ -588,7 +566,6 @@ typedef SWIFT_ENUM(NSUInteger, ApptentiveLogLevel, open) { @class NSBundle; @class NSCoder; - /// UINavigationController subclass intended primarily to facilitate scoping UIAppearance rules to Apptentive UI. SWIFT_CLASS("_TtC13ApptentiveKit30ApptentiveNavigationController") @interface ApptentiveNavigationController : UINavigationController @@ -603,21 +580,8 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class) BOOL prefersLargeHeader;) - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; @end -typedef SWIFT_ENUM(NSInteger, ApptentivePushProvider, open) { -/// Specifies the Apptentive push provider. - ApptentivePushProviderApptentive = 0, -/// Specifies the Urban Airship push provider. - ApptentivePushProviderUrbanAirship = 1, -/// Specifies the Amazon Simple Notification Service push provider. - ApptentivePushProviderAmazonSNS = 2, -/// Specifies the Parse push provider. - ApptentivePushProviderParse = 3, -}; - - @class UIFont; @class UIColor; - /// The buttons used in TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions. SWIFT_CLASS("_TtC13ApptentiveKit12DialogButton") @interface DialogButton : UIButton @@ -637,7 +601,6 @@ SWIFT_CLASS("_TtC13ApptentiveKit12DialogButton") - (void)didMoveToWindow; @end - /// Displays the contents of the dialog used for TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions. SWIFT_CLASS("_TtC13ApptentiveKit10DialogView") @interface DialogView : UIView @@ -664,73 +627,67 @@ SWIFT_CLASS("_TtC13ApptentiveKit10DialogView") @property (nonatomic, strong) UIColor * _Nonnull separatorColor; /// The amount by which to inset the header image from view’s edges and the title label. @property (nonatomic) UIEdgeInsets imageInset; +- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; - (void)didMoveToWindow; - (void)layoutSubviews; -- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; @end @class UIResponder; - /// A class used to display TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions. SWIFT_CLASS("_TtC13ApptentiveKit20DialogViewController") @interface DialogViewController : UIViewController @property (nonatomic, readonly, strong) UIResponder * _Nullable nextResponder; -- (void)viewDidLoad; - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; +- (void)viewDidLoad; - (void)viewDidAppear:(BOOL)animated; - (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil SWIFT_UNAVAILABLE; @end - /// A button used to dismiss a TextModal (“Note”) interaction. SWIFT_CLASS("_TtC13ApptentiveKit13DismissButton") @interface DismissButton : DialogButton @end - SWIFT_CLASS("_TtC13ApptentiveKit29EnjoymentDialogViewController") @interface EnjoymentDialogViewController : DialogViewController @end - +SWIFT_CLASS("_TtC13ApptentiveKit17GlassDialogButton") SWIFT_AVAILABILITY(ios,introduced=26) +@interface GlassDialogButton : UIView +- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; +@end /// A button used to launch a subsequent interaction from a TextModal (“Note”) interaction. SWIFT_CLASS("_TtC13ApptentiveKit17InteractionButton") @interface InteractionButton : DialogButton @end - /// A button used to indicate negative sentiment in the EnjoymentDialog (“Love Dialog”) interaction. SWIFT_CLASS("_TtC13ApptentiveKit8NoButton") @interface NoButton : DialogButton @end - -SWIFT_CLASS("_TtC13ApptentiveKit18TermsAndConditions") SWIFT_DEPRECATED_MSG("This class is provided for compatibility but this feature is not implemented.") -@interface TermsAndConditions : NSObject -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - SWIFT_CLASS("_TtC13ApptentiveKit23TextModalViewController") @interface TextModalViewController : DialogViewController @end - @interface UIBarButtonItem (SWIFT_EXTENSION(ApptentiveKit)) /// The bar button item to use for closing Apptentive UI. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIBarButtonItem * _Nonnull apptentiveClose;) + (UIBarButtonItem * _Nonnull)apptentiveClose SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveClose:(UIBarButtonItem * _Nonnull)value; +/// The bar button item to use for refreshing the Apptentive Web View. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIBarButtonItem * _Nonnull appentiveRefresh;) ++ (UIBarButtonItem * _Nonnull)appentiveRefresh SWIFT_WARN_UNUSED_RESULT; ++ (void)setAppentiveRefresh:(UIBarButtonItem * _Nonnull)value; /// The bar button item to use for editing the profile in message center. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIBarButtonItem * _Nonnull apptentiveProfileEdit;) + (UIBarButtonItem * _Nonnull)apptentiveProfileEdit SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveProfileEdit:(UIBarButtonItem * _Nonnull)value; @end - @interface UIButton (SWIFT_EXTENSION(ApptentiveKit)) SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) CGFloat apptentivePillRadius;) + (CGFloat)apptentivePillRadius SWIFT_WARN_UNUSED_RESULT; @@ -739,9 +696,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class) CGFloat apptentiveCornerRadius + (void)setApptentiveCornerRadius:(CGFloat)newValue; @end - - - @interface UIColor (SWIFT_EXTENSION(ApptentiveKit)) /// The color to use for the background in text inputs for message center. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextInputBackground;) @@ -839,10 +793,22 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull app SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSurveyIntroduction;) + (UIColor * _Nonnull)apptentiveSurveyIntroduction SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveSurveyIntroduction:(UIColor * _Nonnull)value; +/// The color to use for text fields/text views that are part of a survey (but not part of an “other” choice). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSurveyTextInputBackground;) ++ (UIColor * _Nonnull)apptentiveSurveyTextInputBackground SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveSurveyTextInputBackground:(UIColor * _Nonnull)value; /// The color to use for the borders of text fields and text views. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputBorder;) + (UIColor * _Nonnull)apptentiveTextInputBorder SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveTextInputBorder:(UIColor * _Nonnull)value; +/// The border color for survey “other” choice text fields. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveOtherTextInputBorder;) ++ (UIColor * _Nonnull)apptentiveOtherTextInputBorder SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveOtherTextInputBorder:(UIColor * _Nonnull)value; +/// The background color for survey “other” choice text fields. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveOtherTextInputBackground;) ++ (UIColor * _Nonnull)apptentiveOtherTextInputBackground SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveOtherTextInputBackground:(UIColor * _Nonnull)value; /// The color to use for text fields and text views. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputBackground;) + (UIColor * _Nonnull)apptentiveTextInputBackground SWIFT_WARN_UNUSED_RESULT; @@ -914,7 +880,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull app /// The color to use for the button that deletes the attachment from the draft message. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterAttachmentDeleteButton SWIFT_DEPRECATED_MSG("This property has been renamed to 'apptentiveAttachmentRemoveButton'.");) + (UIColor * _Nonnull)apptentiveMessageCenterAttachmentDeleteButton SWIFT_WARN_UNUSED_RESULT; -+ (void)setApptentiveMessageCenterAttachmentDeleteButton:(UIColor * _Nonnull)value; ++ (void)setApptentiveMessageCenterAttachmentDeleteButton:(UIColor * _Nonnull)newValue; /// The color to use for the button that deletes the attachment from the draft message. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveAttachmentRemoveButton;) + (UIColor * _Nonnull)apptentiveAttachmentRemoveButton SWIFT_WARN_UNUSED_RESULT; @@ -935,9 +901,36 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull app SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDisclaimerLabel;) + (UIColor * _Nonnull)apptentiveDisclaimerLabel SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveDisclaimerLabel:(UIColor * _Nonnull)value; +/// The color used for the background of the Enjoyment Dialog (“Love Dialog”) and Text Modals (“Prompts”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nullable apptentiveDialogBackground;) ++ (UIColor * _Nullable)apptentiveDialogBackground SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogBackground:(UIColor * _Nullable)value; +/// The text color used for the title of the Enjoyment Dialog (“Love Dialog”) or a Text Modal (“Prompt”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDialogTitle;) ++ (UIColor * _Nonnull)apptentiveDialogTitle SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogTitle:(UIColor * _Nonnull)value; +/// The text color used for the message of a Text Modal (“Prompt”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDialogMessage;) ++ (UIColor * _Nonnull)apptentiveDialogMessage SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogMessage:(UIColor * _Nonnull)value; +/// The text color used for the button labels in the Enjoyment Dialog (“Love Dialog”) and Text Modals (“Prompts”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDialogButtonBackground;) ++ (UIColor * _Nonnull)apptentiveDialogButtonBackground SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogButtonBackground:(UIColor * _Nonnull)value; +/// The text color used for the button labels in the Enjoyment Dialog (“Love Dialog”) and Text Modals (“Prompts”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDialogButtonLabel;) ++ (UIColor * _Nonnull)apptentiveDialogButtonLabel SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogButtonLabel:(UIColor * _Nonnull)value; +/// The color for button borders. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveButtonBorder;) ++ (UIColor * _Nonnull)apptentiveButtonBorder SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveButtonBorder:(UIColor * _Nonnull)value; +/// The color of the button separator of the Enjoyment Dialog (“Love Dialog”) and Text Modals (“Prompts”) on devices running iOS 18 and earlier. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDialogSeparator;) ++ (UIColor * _Nonnull)apptentiveDialogSeparator SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogSeparator:(UIColor * _Nonnull)value; @end - @interface UIFont (SWIFT_EXTENSION(ApptentiveKit)) /// The font to use for placeholder for text inputs in message center. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterTextInputPlaceholder;) @@ -1019,10 +1012,26 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull appt SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveTextInput;) + (UIFont * _Nonnull)apptentiveTextInput SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveTextInput:(UIFont * _Nonnull)value; +/// The font used for the title of a Text Modal (“Prompt”) that also has a message. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveDialogTitle;) ++ (UIFont * _Nonnull)apptentiveDialogTitle SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogTitle:(UIFont * _Nonnull)value; +/// The font used for the Enjoyment Dialog (“Love Dialog”) title, and the text on a Text Modal (“Prompt”) +/// when either the title or message is omitted. +/// This matches the iOS 26 system alert controller’s behavior. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveDialogText;) ++ (UIFont * _Nonnull)apptentiveDialogText SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogText:(UIFont * _Nonnull)value; +/// The font used for the message of a Text Modal (“Prompt”) that also has a title. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveDialogMessage;) ++ (UIFont * _Nonnull)apptentiveDialogMessage SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogMessage:(UIFont * _Nonnull)value; +/// The font used for the button labels in the Enjoyment Dialog (“Love Dialog”) and Text Modals (“Prompts”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveDialogButton;) ++ (UIFont * _Nonnull)apptentiveDialogButton SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogButton:(UIFont * _Nonnull)value; @end - - @interface UIImage (SWIFT_EXTENSION(ApptentiveKit)) /// The image to use for the add attachment button for message center. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveMessageAttachmentButton;) @@ -1068,11 +1077,11 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable ap SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveCheckboxSelected;) + (UIImage * _Nullable)apptentiveCheckboxSelected SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveCheckboxSelected:(UIImage * _Nullable)value; +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveDialogHeader;) ++ (UIImage * _Nullable)apptentiveDialogHeader SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogHeader:(UIImage * _Nullable)value; @end - - - @interface UITableView (SWIFT_EXTENSION(ApptentiveKit)) SWIFT_CLASS_PROPERTY(@property (nonatomic, class) NSInteger apptentiveStyle;) + (NSInteger)apptentiveStyle SWIFT_WARN_UNUSED_RESULT; @@ -1080,7 +1089,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class) NSInteger apptentiveStyle;) @end enum ToolbarMode : NSInteger; - @interface UIToolbar (SWIFT_EXTENSION(ApptentiveKit)) /// Determines when to show a toolbar in Apptentive view controllers. SWIFT_CLASS_PROPERTY(@property (nonatomic, class) enum ToolbarMode apptentiveMode;) @@ -1096,15 +1104,10 @@ typedef SWIFT_ENUM(NSInteger, ToolbarMode, open) { ToolbarModeHiddenWhenEmpty = 1, }; - - @interface UIViewController (SWIFT_EXTENSION(ApptentiveKit)) @property (nonatomic) UIModalPresentationStyle apptentiveModalPresentationStyle; @end - - - /// A button used to indicate positive sentiment in the EnjoymentDialog (“Love Dialog”) interaction. SWIFT_CLASS("_TtC13ApptentiveKit9YesButton") @interface YesButton : DialogButton diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Info.plist b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Info.plist index a9921f4..fcb4b76 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Info.plist and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Info.plist differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.abi.json b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.abi.json index 9305092..7b7a097 100644 --- a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.abi.json +++ b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.abi.json @@ -1,8 +1,8 @@ { "ABIRoot": { "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", + "name": "ApptentiveKit", + "printedName": "ApptentiveKit", "children": [ { "kind": "Import", @@ -51,6 +51,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "UIKit", @@ -83,7 +90,10 @@ "name": "WebKit", "printedName": "WebKit", "declKind": "Import", - "moduleName": "ApptentiveKit" + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Preconcurrency" + ] }, { "kind": "Import", @@ -149,6 +159,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override", "AccessControl", @@ -209,6 +220,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override", "AccessControl", @@ -242,6 +254,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override", "AccessControl" @@ -353,6 +366,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override" ], @@ -364,6 +378,7 @@ "mangledName": "$s13ApptentiveKit20DialogViewControllerC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Preconcurrency", "Custom", "AccessControl", "RawDocComment", @@ -384,6 +399,20 @@ "usr": "s:13ApptentiveKit23DialogViewModelDelegateP", "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP" }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -440,6 +469,13 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, { "kind": "Conformance", "name": "UITraitChangeObservable", @@ -458,6 +494,7 @@ "mangledName": "$s13ApptentiveKit29EnjoymentDialogViewControllerC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Preconcurrency", "Custom", "AccessControl", "ObjC" @@ -479,6 +516,20 @@ "usr": "s:13ApptentiveKit23DialogViewModelDelegateP", "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP" }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -535,6 +586,13 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, { "kind": "Conformance", "name": "UITraitChangeObservable", @@ -553,6 +611,7 @@ "mangledName": "$s13ApptentiveKit23TextModalViewControllerC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Preconcurrency", "Custom", "AccessControl", "ObjC" @@ -574,6 +633,20 @@ "usr": "s:13ApptentiveKit23DialogViewModelDelegateP", "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP" }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -630,6 +703,13 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, { "kind": "Conformance", "name": "UITraitChangeObservable", @@ -679,6 +759,16 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -726,6 +816,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -763,6 +860,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -775,8 +879,8 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ @@ -785,8 +889,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "OSLog", + "printedName": "OSLog", "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ @@ -800,441 +904,6 @@ "declKind": "Import", "moduleName": "ApptentiveKit" }, - { - "kind": "TypeDecl", - "name": "HTMLTextAlignment", - "printedName": "HTMLTextAlignment", - "children": [ - { - "kind": "Var", - "name": "center", - "printedName": "center", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.HTMLTextAlignment.Type) -> ApptentiveKit.HTMLTextAlignment", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.HTMLTextAlignment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO6centeryA2CmF", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO6centeryA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "left", - "printedName": "left", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.HTMLTextAlignment.Type) -> ApptentiveKit.HTMLTextAlignment", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.HTMLTextAlignment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO4leftyA2CmF", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO4leftyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "right", - "printedName": "right", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.HTMLTextAlignment.Type) -> ApptentiveKit.HTMLTextAlignment", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.HTMLTextAlignment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO5rightyA2CmF", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO5rightyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.HTMLTextAlignment?", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO8rawValueACSgSS_tcfc", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO8rawValueACSgSS_tcfc", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit17HTMLTextAlignmentO8rawValueSSvp", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO8rawValueSSvp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO8rawValueSSvg", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO8rawValueSSvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "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": "TypeDecl", - "name": "SystemFontNames", - "printedName": "SystemFontNames", - "children": [ - { - "kind": "Var", - "name": "html", - "printedName": "html", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.SystemFontNames.Type) -> ApptentiveKit.SystemFontNames", - "children": [ - { - "kind": "TypeNominal", - "name": "SystemFontNames", - "printedName": "ApptentiveKit.SystemFontNames", - "usr": "s:13ApptentiveKit15SystemFontNamesO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.SystemFontNames.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "SystemFontNames", - "printedName": "ApptentiveKit.SystemFontNames", - "usr": "s:13ApptentiveKit15SystemFontNamesO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit15SystemFontNamesO4htmlyA2CmF", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO4htmlyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "os", - "printedName": "os", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.SystemFontNames.Type) -> ApptentiveKit.SystemFontNames", - "children": [ - { - "kind": "TypeNominal", - "name": "SystemFontNames", - "printedName": "ApptentiveKit.SystemFontNames", - "usr": "s:13ApptentiveKit15SystemFontNamesO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.SystemFontNames.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "SystemFontNames", - "printedName": "ApptentiveKit.SystemFontNames", - "usr": "s:13ApptentiveKit15SystemFontNamesO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit15SystemFontNamesO2osyA2CmF", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO2osyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.SystemFontNames?", - "children": [ - { - "kind": "TypeNominal", - "name": "SystemFontNames", - "printedName": "ApptentiveKit.SystemFontNames", - "usr": "s:13ApptentiveKit15SystemFontNamesO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit15SystemFontNamesO8rawValueACSgSS_tcfc", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO8rawValueACSgSS_tcfc", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit15SystemFontNamesO8rawValueSSvp", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO8rawValueSSvp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SystemFontNamesO8rawValueSSvg", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO8rawValueSSvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit15SystemFontNamesO", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "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": "Import", "name": "UIKit", @@ -1302,6 +971,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "QuickLook", @@ -1359,14 +1035,31 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", "printedName": "UIKit", "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ - "RawDocComment" + "Preconcurrency" ] }, { @@ -1389,6 +1082,23 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "Foundation", @@ -1426,34 +1136,120 @@ "declKind": "Import", "moduleName": "ApptentiveKit" }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "TypeDecl", + "name": "ApptentiveDelegate", + "printedName": "ApptentiveDelegate", + "children": [ + { + "kind": "Function", + "name": "authenticationDidFail", + "printedName": "authenticationDidFail(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate(im)authenticationDidFailWith:", + "mangledName": "$s13ApptentiveKit0A8DelegateP21authenticationDidFail4withys5Error_p_tF", + "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate", + "mangledName": "$s13ApptentiveKit0A8DelegateP", + "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + } + ] + }, { "kind": "TypeDecl", - "name": "ApptentiveLogger", - "printedName": "ApptentiveLogger", + "name": "Apptentive", + "printedName": "Apptentive", "children": [ { "kind": "Var", - "name": "shouldHideSensitiveLogs", - "printedName": "shouldHideSensitiveLogs", + "name": "shared", + "printedName": "shared", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Apptentive", + "printedName": "ApptentiveKit.Apptentive", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cpy)shared", + "mangledName": "$s13ApptentiveKit0A0C6sharedACvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", + "Custom", "AccessControl", + "ObjC", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -1463,87 +1259,51 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Apptentive", + "printedName": "ApptentiveKit.Apptentive", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cm)shared", + "mangledName": "$s13ApptentiveKit0A0C6sharedACvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final", + "ObjC" ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvMZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "logLevel", - "printedName": "logLevel", + "name": "delegate", + "printedName": "delegate", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "WeakStorage", + "printedName": "(any ApptentiveKit.ApptentiveDelegate)?" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovp", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovp", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)delegate", + "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Final", + "Custom", "HasStorage", + "ReferenceOwnership", "AccessControl", + "ObjC", "RawDocComment" ], + "ownership": 1, "hasStorage": true, "accessors": [ { @@ -1553,16 +1313,28 @@ "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Optional", + "printedName": "(any ApptentiveKit.ApptentiveDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveDelegate", + "printedName": "any ApptentiveKit.ApptentiveDelegate", + "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovg", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovg", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)delegate", + "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvg", "moduleName": "ApptentiveKit", "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -1577,16 +1349,28 @@ }, { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Optional", + "printedName": "(any ApptentiveKit.ApptentiveDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveDelegate", + "printedName": "any ApptentiveKit.ApptentiveDelegate", + "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovs", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovs", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDelegate:", + "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvs", "moduleName": "ApptentiveKit", "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -1601,38 +1385,40 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvM", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvM", + "usr": "s:13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvM", + "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvM", "moduleName": "ApptentiveKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "default", - "printedName": "default", + "name": "interactionPresenter", + "printedName": "interactionPresenter", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "InteractionPresenter", + "printedName": "ApptentiveKit.InteractionPresenter", + "usr": "s:13ApptentiveKit20InteractionPresenterC" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvpZ", + "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp", + "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", + "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, "hasStorage": true, "accessors": [ { @@ -1642,18 +1428,19 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "InteractionPresenter", + "printedName": "ApptentiveKit.InteractionPresenter", + "usr": "s:13ApptentiveKit20InteractionPresenterC" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvgZ", + "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg", + "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -1668,18 +1455,19 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "InteractionPresenter", + "printedName": "ApptentiveKit.InteractionPresenter", + "usr": "s:13ApptentiveKit20InteractionPresenterC" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvsZ", + "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs", + "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -1694,40 +1482,42 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvMZ", + "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM", + "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "engagement", - "printedName": "engagement", + "name": "theme", + "printedName": "theme", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)theme", + "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ "HasInitialValue", + "Final", + "Custom", "HasStorage", "AccessControl", + "ObjC", "RawDocComment" ], - "isFromExtension": true, "hasStorage": true, "accessors": [ { @@ -1737,18 +1527,20 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)theme", + "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -1763,18 +1555,20 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setTheme:", + "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -1789,40 +1583,42 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvMZ", + "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvM", + "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "interaction", - "printedName": "interaction", + "name": "shouldUseSecureTokenStorage", + "printedName": "shouldUseSecureTokenStorage", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)shouldUseSecureTokenStorage", + "mangledName": "$s13ApptentiveKit0A0C27shouldUseSecureTokenStorageSbvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ "HasInitialValue", + "Final", + "Custom", "HasStorage", "AccessControl", + "ObjC", "RawDocComment" ], - "isFromExtension": true, "hasStorage": true, "accessors": [ { @@ -1832,18 +1628,20 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)shouldUseSecureTokenStorage", + "mangledName": "$s13ApptentiveKit0A0C27shouldUseSecureTokenStorageSbvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -1858,18 +1656,20 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setShouldUseSecureTokenStorage:", + "mangledName": "$s13ApptentiveKit0A0C27shouldUseSecureTokenStorageSbvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -1884,41 +1684,49 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvMZ", + "usr": "s:13ApptentiveKit0A0C27shouldUseSecureTokenStorageSbvM", + "mangledName": "$s13ApptentiveKit0A0C27shouldUseSecureTokenStorageSbvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "network", - "printedName": "network", + "name": "personName", + "printedName": "personName", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV7networkACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)personName", + "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", + "Custom", "AccessControl", + "Custom", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -1927,18 +1735,28 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7networkACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personName", + "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -1953,18 +1771,28 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7networkACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setPersonName:", + "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -1979,41 +1807,49 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7networkACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvMZ", + "usr": "s:13ApptentiveKit0A0C10personNameSSSgvM", + "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "payload", - "printedName": "payload", + "name": "personEmailAddress", + "printedName": "personEmailAddress", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)personEmailAddress", + "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", + "Custom", "AccessControl", + "Custom", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2022,18 +1858,28 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personEmailAddress", + "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -2048,18 +1894,28 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setPersonEmailAddress:", + "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -2074,41 +1930,49 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvMZ", + "usr": "s:13ApptentiveKit0A0C18personEmailAddressSSSgvM", + "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "targeting", - "printedName": "targeting", + "name": "mParticleID", + "printedName": "mParticleID", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)mParticleID", + "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", + "Custom", "AccessControl", + "Custom", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2117,18 +1981,28 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)mParticleID", + "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -2143,18 +2017,28 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setMParticleID:", + "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -2169,41 +2053,40 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvMZ", + "usr": "s:13ApptentiveKit0A0C11mParticleIDSSSgvM", + "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "messages", - "printedName": "messages", + "name": "personCustomData", + "printedName": "personCustomData", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvpZ", + "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp", + "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", + "Custom", "AccessControl", + "Custom", "RawDocComment" ], - "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2212,18 +2095,19 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvgZ", + "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg", + "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -2238,18 +2122,19 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvsZ", + "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs", + "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -2264,41 +2149,40 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvMZ", + "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0VvM", + "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0VvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "attachments", - "printedName": "attachments", + "name": "deviceCustomData", + "printedName": "deviceCustomData", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvpZ", + "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp", + "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", + "Custom", "AccessControl", + "Custom", "RawDocComment" ], - "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2307,18 +2191,19 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvgZ", + "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg", + "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -2333,18 +2218,19 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvsZ", + "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs", + "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -2359,40 +2245,43 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvMZ", + "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM", + "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "resources", - "printedName": "resources", + "name": "unreadMessageCount", + "printedName": "unreadMessageCount", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV9resourcesACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9resourcesACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)unreadMessageCount", + "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ + "Final", "HasInitialValue", + "Custom", "HasStorage", "AccessControl", + "Dynamic", + "ObjC", "RawDocComment" ], - "isFromExtension": true, "hasStorage": true, "accessors": [ { @@ -2402,18 +2291,21 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9resourcesACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9resourcesACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)unreadMessageCount", + "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "Dynamic", + "ObjC" + ], "accessorKind": "get" }, { @@ -2428,64 +2320,57 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9resourcesACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9resourcesACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setUnreadMessageCount:", + "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final", + "Dynamic", + "ObjC" ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9resourcesACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9resourcesACvMZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + "accessorKind": "set" } ] }, { "kind": "Var", - "name": "logLevel", - "printedName": "logLevel", + "name": "distributionName", + "printedName": "distributionName", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)distributionName", + "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ + "Final", + "Custom", "AccessControl", + "Custom", + "ObjC", "RawDocComment" ], - "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2494,17 +2379,28 @@ "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionName", + "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvg", "moduleName": "ApptentiveKit", - "static": true, - "isFromExtension": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -2519,17 +2415,28 @@ }, { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDistributionName:", + "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvs", "moduleName": "ApptentiveKit", - "static": true, - "isFromExtension": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -2544,381 +2451,330 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvMZ", + "usr": "s:13ApptentiveKit0A0C16distributionNameSSSgvM", + "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:13ApptentiveKit0A6LoggerV", - "mangledName": "$s13ApptentiveKit0A6LoggerV", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "LogLevel", - "printedName": "LogLevel", - "children": [ + }, { "kind": "Var", - "name": "debug", - "printedName": "debug", + "name": "distributionVersion", + "printedName": "distributionVersion", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO5debugyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO5debugyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "info", - "printedName": "info", - "children": [ + "declKind": "Var", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)distributionVersion", + "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "Custom", + "ObjC", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO4infoyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO4infoyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "notice", - "printedName": "notice", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionVersion", + "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO6noticeyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO6noticeyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "warning", - "printedName": "warning", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDistributionVersion:", + "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C19distributionVersionSSSgvM", + "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvM", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO7warningyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO7warningyA2CmF", - "moduleName": "ApptentiveKit" + ] }, { - "kind": "Var", - "name": "error", - "printedName": "error", + "kind": "TypeDecl", + "name": "UITheme", + "printedName": "UITheme", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "Var", + "name": "apptentive", + "printedName": "apptentive", "children": [ { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.UITheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + } + ] } ] } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO5erroryA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO5erroryA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "critical", - "printedName": "critical", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "Var", + "name": "customerOnly", + "printedName": "customerOnly", "children": [ { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO8criticalyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO8criticalyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "fault", - "printedName": "fault", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.UITheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C7UIThemeO12customerOnlyyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO12customerOnlyyA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "customerBasedOnApptentive", + "printedName": "customerBasedOnApptentive", "children": [ { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.UITheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + } + ] } ] } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO5faultyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO5faultyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Function", - "name": "<", - "printedName": "<(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C7UIThemeO015customerBasedOnA0yA2EmF", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO015customerBasedOnA0yA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 }, { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit8LogLevelO1loiySbAC_ACtFZ", - "mangledName": "$s13ApptentiveKit8LogLevelO1loiySbAC_ACtFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.LogLevel?", + "kind": "Var", + "name": "none", + "printedName": "none", "children": [ { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.UITheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C7UIThemeO4noneyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO4noneyA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit8LogLevelO8rawValueACSgSi_tcfc", - "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueACSgSi_tcfc", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit8LogLevelO8rawValueSivp", - "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueSivp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ApptentiveKit.Apptentive.UITheme?", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Int", @@ -2926,49 +2782,17 @@ "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit8LogLevelO8rawValueSivg", - "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueSivg", + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueAESgSi_tcfc", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueAESgSi_tcfc", "moduleName": "ApptentiveKit", "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit8LogLevelO", - "mangledName": "$s13ApptentiveKit8LogLevelO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "Int", - "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": [ + "init_kind": "Designated" + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", @@ -2976,387 +2800,271 @@ "printedName": "Swift.Int", "usr": "s:Si" } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueSivp", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueSivp", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueSivg", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueSivg", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessorKind": "get" + } ] } ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ApptentiveDelegate", - "printedName": "ApptentiveDelegate", - "children": [ - { - "kind": "Function", - "name": "authenticationDidFail", - "printedName": "authenticationDidFail(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate(im)authenticationDidFailWith:", - "mangledName": "$s13ApptentiveKit0A8DelegateP21authenticationDidFail4withys5Error_p_tF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate", - "mangledName": "$s13ApptentiveKit0A8DelegateP", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Apptentive", - "printedName": "Apptentive", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "Apptentive", - "printedName": "ApptentiveKit.Apptentive", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cpy)shared", - "mangledName": "$s13ApptentiveKit0A0C6sharedACvpZ", + "declKind": "Enum", + "usr": "s:13ApptentiveKit0A0C7UIThemeO", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "ObjC", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "enumRawTypeName": "Int", + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "Apptentive", - "printedName": "ApptentiveKit.Apptentive", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cm)shared", - "mangledName": "$s13ApptentiveKit0A0C6sharedACvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, { - "kind": "Var", - "name": "delegate", - "printedName": "delegate", + "kind": "TypeDecl", + "name": "AppCredentials", + "printedName": "AppCredentials", "children": [ { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "(any ApptentiveKit.ApptentiveDelegate)?" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)delegate", - "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "key", + "printedName": "key", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ApptentiveKit.ApptentiveDelegate)?", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveDelegate", - "printedName": "any ApptentiveKit.ApptentiveDelegate", - "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)delegate", - "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvg", + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3keySSvp", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvp", "moduleName": "ApptentiveKit", - "implicit": true, "declAttributes": [ - "ObjC" + "HasStorage", + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ApptentiveKit.ApptentiveDelegate)?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveDelegate", - "printedName": "any ApptentiveKit.ApptentiveDelegate", - "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3keySSvg", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDelegate:", - "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "signature", + "printedName": "signature", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvM", - "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvM", + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp", "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "interactionPresenter", - "printedName": "interactionPresenter", - "children": [ - { - "kind": "TypeNominal", - "name": "InteractionPresenter", - "printedName": "ApptentiveKit.InteractionPresenter", - "usr": "s:13ApptentiveKit20InteractionPresenterC" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp", - "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "InteractionPresenter", - "printedName": "ApptentiveKit.InteractionPresenter", - "usr": "s:13ApptentiveKit20InteractionPresenterC" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg", - "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init(key:signature:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" }, { "kind": "TypeNominal", - "name": "InteractionPresenter", - "printedName": "ApptentiveKit.InteractionPresenter", - "usr": "s:13ApptentiveKit20InteractionPresenterC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs", - "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs", + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc", "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM", - "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "theme", - "printedName": "theme", - "children": [ - { - "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)theme", - "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" + }, { "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)theme", - "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvg", + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc", "moduleName": "ApptentiveKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "throwing": true, + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", @@ -3365,163 +3073,274 @@ }, { "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setTheme:", - "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvs", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF", "moduleName": "ApptentiveKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" + }, + { + "kind": "TypeNominal", + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvM", - "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvM", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, - "accessorKind": "_modify" + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, { - "kind": "Var", - "name": "personName", - "printedName": "personName", + "kind": "TypeDecl", + "name": "Region", + "printedName": "Region", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "us", + "printedName": "us", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.Region.Type) -> ApptentiveKit.Apptentive.Region", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.Region.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)personName", - "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C6RegionO2usyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C6RegionO2usyA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "eu", + "printedName": "eu", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.Region.Type) -> ApptentiveKit.Apptentive.Region", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.Region.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personName", - "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvg", + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C6RegionO2euyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C6RegionO2euyA2EmF", "moduleName": "ApptentiveKit", "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "RawDocComment" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "au", + "printedName": "au", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.Region.Type) -> ApptentiveKit.Apptentive.Region", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.Region.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setPersonName:", - "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvs", + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C6RegionO2auyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C6RegionO2auyA2EmF", "moduleName": "ApptentiveKit", "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "RawDocComment" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ApptentiveKit.Apptentive.Region?", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C10personNameSSSgvM", - "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvM", + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C6RegionO8rawValueAESgSS_tcfc", + "mangledName": "$s13ApptentiveKit0A0C6RegionO8rawValueAESgSS_tcfc", "moduleName": "ApptentiveKit", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "personEmailAddress", - "printedName": "personEmailAddress", - "children": [ + "init_kind": "Designated" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", @@ -3530,28 +3349,16 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)personEmailAddress", - "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C6RegionO8rawValueSSvp", + "mangledName": "$s13ApptentiveKit0A0C6RegionO8rawValueSSvp", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -3560,32 +3367,63 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C6RegionO8rawValueSSvg", + "mangledName": "$s13ApptentiveKit0A0C6RegionO8rawValueSSvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personEmailAddress", - "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + ] + } + ], + "declKind": "Enum", + "usr": "s:13ApptentiveKit0A0C6RegionO", + "mangledName": "$s13ApptentiveKit0A0C6RegionO", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", @@ -3593,837 +3431,640 @@ "printedName": "Swift.String", "usr": "s:SS" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setPersonEmailAddress:", - "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:SY", + "mangledName": "$sSY" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C18personEmailAddressSSSgvM", - "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, { - "kind": "Var", - "name": "mParticleID", - "printedName": "mParticleID", + "kind": "TypeDecl", + "name": "Environment", + "printedName": "Environment", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)mParticleID", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, ApptentiveKit.Apptentive.Region) -> Swift.String", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, ApptentiveKit.Apptentive.Region)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)mParticleID", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvg", + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C11EnvironmentVyAES2S_AC6RegionOtYbccfc", + "mangledName": "$s13ApptentiveKit0A0C11EnvironmentVyAES2S_AC6RegionOtYbccfc", "moduleName": "ApptentiveKit", "declAttributes": [ - "ObjC" + "AccessControl" ], - "accessorKind": "get" + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "production", + "printedName": "production", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV10productionAEvpZ", + "mangledName": "$s13ApptentiveKit0A0C11EnvironmentV10productionAEvpZ", + "moduleName": "ApptentiveKit", + "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", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV10productionAEvgZ", + "mangledName": "$s13ApptentiveKit0A0C11EnvironmentV10productionAEvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setMParticleID:", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "custom", + "printedName": "custom(_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C11mParticleIDSSSgvM", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvM", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV6customyAE10Foundation3URLVFZ", + "mangledName": "$s13ApptentiveKit0A0C11EnvironmentV6customyAE10Foundation3URLVFZ", "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "personCustomData", - "printedName": "personCustomData", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp", - "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp", + "declKind": "Struct", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV", + "mangledName": "$s13ApptentiveKit0A0C11EnvironmentV", "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "accessors": [ + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg", - "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg", - "moduleName": "ApptentiveKit", - "accessorKind": "get" + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs", - "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs", - "moduleName": "ApptentiveKit", - "accessorKind": "set" + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0VvM", - "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0VvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, { - "kind": "Var", - "name": "deviceCustomData", - "printedName": "deviceCustomData", + "kind": "Function", + "name": "register", + "printedName": "register(with:region:environment:completion:)", "children": [ { "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp", - "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg", - "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg", - "moduleName": "ApptentiveKit", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs", - "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs", - "moduleName": "ApptentiveKit", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "hasDefaultArg": true, + "usr": "s:13ApptentiveKit0A0C6RegionO" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "hasDefaultArg": true, + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Result<(), any Swift.Error>) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<(), any Swift.Error>", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s6ResultO" + } + ] } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM", - "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C8register4with6region11environment10completionyAC14AppCredentialsV_AC6RegionOAC11EnvironmentVys6ResultOyyts5Error_pGYbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C8register4with6region11environment10completionyAC14AppCredentialsV_AC6RegionOAC11EnvironmentVys6ResultOyyts5Error_pGYbcSgtF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "unreadMessageCount", - "printedName": "unreadMessageCount", + "kind": "Function", + "name": "register", + "printedName": "register(with:region:environment:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" + }, + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "hasDefaultArg": true, + "usr": "s:13ApptentiveKit0A0C6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "hasDefaultArg": true, + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" } ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)unreadMessageCount", - "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivp", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C8register4with6region11environmentyAC14AppCredentialsV_AC6RegionOAC11EnvironmentVtYaKF", + "mangledName": "$s13ApptentiveKit0A0C8register4with6region11environmentyAC14AppCredentialsV_AC6RegionOAC11EnvironmentVtYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "Dynamic", - "ObjC", + "Nonisolated", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "engage", + "printedName": "engage(event:from:completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "ApptentiveKit.Event", + "usr": "s:13ApptentiveKit5EventV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)unreadMessageCount", - "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Result) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s6ResultO" + } + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setUnreadMessageCount:", - "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "set" + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGYbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGYbcSgtF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "distributionName", - "printedName": "distributionName", + "kind": "Function", + "name": "engage", + "printedName": "engage(event:from:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "ApptentiveKit.Event", + "usr": "s:13ApptentiveKit5EventV" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "UIKit.UIViewController?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], + "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)distributionName", - "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvp", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C6engage5event4fromSbAA5EventV_So16UIViewControllerCSgtYaKF", + "mangledName": "$s13ApptentiveKit0A0C6engage5event4fromSbAA5EventV_So16UIViewControllerCSgtYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", - "ObjC", + "Nonisolated", "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": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionName", - "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "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": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDistributionName:", - "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16distributionNameSSSgvM", - "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "distributionVersion", - "printedName": "distributionVersion", + "kind": "Function", + "name": "dismissAllInteractions", + "printedName": "dismissAllInteractions(animated:)", "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)distributionVersion", - "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvp", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF", + "mangledName": "$s13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenter", + "printedName": "presentMessageCenter(from:with:completion:)", + "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": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionVersion", - "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", "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": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDistributionVersion:", - "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ApptentiveKit.CustomData?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C19distributionVersionSSSgvM", - "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UITheme", - "printedName": "UITheme", - "children": [ + "hasDefaultArg": true, + "usr": "s:Sq" + }, { - "kind": "Var", - "name": "apptentive", - "printedName": "apptentive", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Result) -> ())?", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", + "printedName": "(Swift.Result) -> ()", "children": [ { "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Apptentive.UITheme.Type", + "name": "Result", + "printedName": "Swift.Result", "children": [ { "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 0 - }, - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", - "children": [ - { - "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Apptentive.UITheme.Type", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:s6ResultO" } ] } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A0C7UIThemeO4noneyA2EmF", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO4noneyA2EmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 1 + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGYbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGYbcSgtF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenter", + "printedName": "presentMessageCenter(from:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.Apptentive.UITheme?", - "children": [ - { - "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueAESgSi_tcfc", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueAESgSi_tcfc", - "moduleName": "ApptentiveKit", - "implicit": true, - "init_kind": "Designated" + "usr": "s:Sq" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ApptentiveKit.CustomData?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueSivp", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueSivp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueSivg", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueSivg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit0A0C7UIThemeO", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from4withSbSo16UIViewControllerCSg_AA10CustomDataVSgtYaKF", + "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from4withSbSo16UIViewControllerCSg_AA10CustomDataVSgtYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", - "ObjC", + "Nonisolated", "RawDocComment" ], - "enumRawTypeName": "Int", - "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": "Function", - "name": "register", - "printedName": "register(with:completion:)", - "children": [ + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAttachment", + "printedName": "sendAttachment(_:)", + "children": [ { "kind": "TypeNominal", "name": "Void", @@ -4431,65 +4072,29 @@ }, { "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Result<(), any Swift.Error>) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result<(), any Swift.Error>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C8register4with10completionyAC14AppCredentialsV_ys6ResultOyyts5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C8register4with10completionyAC14AppCredentialsV_ys6ResultOyyts5Error_pGcSgtF", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentText:", + "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySSF", "moduleName": "ApptentiveKit", + "objc_name": "sendAttachmentText:", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", + "ObjC", "RawDocComment" ], "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "register", - "printedName": "register(with:)", + "name": "sendAttachment", + "printedName": "sendAttachment(_:)", "children": [ { "kind": "TypeNominal", @@ -4498,271 +4103,66 @@ }, { "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C8register4withyAC14AppCredentialsV_tYaKF", - "mangledName": "$s13ApptentiveKit0A0C8register4withyAC14AppCredentialsV_tYaKF", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentImage:", + "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySo7UIImageCF", "moduleName": "ApptentiveKit", + "objc_name": "sendAttachmentImage:", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", + "ObjC", "RawDocComment" ], - "throwing": true, "funcSelfKind": "NonMutating" }, { - "kind": "TypeDecl", - "name": "AppCredentials", - "printedName": "AppCredentials", + "kind": "Function", + "name": "sendAttachment", + "printedName": "sendAttachment(_:mediaType:)", "children": [ { - "kind": "Var", - "name": "key", - "printedName": "key", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3keySSvp", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvp", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit0A0C14AppCredentialsV3keySSvg", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "signature", - "printedName": "signature", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(key:signature:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc", - "moduleName": "ApptentiveKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF", - "moduleName": "ApptentiveKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" - }, - { - "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Struct", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV", + "declKind": "Func", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentFile:withMimeType:", + "mangledName": "$s13ApptentiveKit0A0C14sendAttachment_9mediaTypey10Foundation4DataV_SStF", "moduleName": "ApptentiveKit", + "objc_name": "sendAttachmentFile:withMimeType:", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", + "ObjC", "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": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "engage", - "printedName": "engage(event:from:completion:)", + "name": "canShowInteraction", + "printedName": "canShowInteraction(event:completion:)", "children": [ { "kind": "TypeNominal", @@ -4775,21 +4175,6 @@ "printedName": "ApptentiveKit.Event", "usr": "s:13ApptentiveKit5EventV" }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, { "kind": "TypeNominal", "name": "Optional", @@ -4833,10 +4218,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGcSgtF", + "usr": "s:13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGYbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGYbcSgtF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", + "Custom", "AccessControl", "RawDocComment" ], @@ -4844,8 +4231,8 @@ }, { "kind": "Function", - "name": "engage", - "printedName": "engage(event:from:)", + "name": "canShowInteraction", + "printedName": "canShowInteraction(event:)", "children": [ { "kind": "TypeNominal", @@ -4858,29 +4245,16 @@ "name": "Event", "printedName": "ApptentiveKit.Event", "usr": "s:13ApptentiveKit5EventV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C6engage5event4fromSbAA5EventV_So16UIViewControllerCSgtYaKF", - "mangledName": "$s13ApptentiveKit0A0C6engage5event4fromSbAA5EventV_So16UIViewControllerCSgtYaKF", + "usr": "s:13ApptentiveKit0A0C18canShowInteraction5eventSbAA5EventV_tYaKF", + "mangledName": "$s13ApptentiveKit0A0C18canShowInteraction5eventSbAA5EventV_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", "RawDocComment" ], "throwing": true, @@ -4888,55 +4262,14 @@ }, { "kind": "Function", - "name": "dismissAllInteractions", - "printedName": "dismissAllInteractions(animated:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF", - "mangledName": "$s13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentMessageCenter", - "printedName": "presentMessageCenter(from:completion:)", + "name": "canShowMessageCenter", + "printedName": "canShowMessageCenter(completion:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - }, { "kind": "TypeNominal", "name": "Optional", @@ -4980,10 +4313,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from10completionySo16UIViewControllerCSg_ys6ResultOySbs5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from10completionySo16UIViewControllerCSg_ys6ResultOySbs5Error_pGcSgtF", + "usr": "s:13ApptentiveKit0A0C20canShowMessageCenter10completionyys6ResultOySbs5Error_pGYbcSg_tF", + "mangledName": "$s13ApptentiveKit0A0C20canShowMessageCenter10completionyys6ResultOySbs5Error_pGYbcSg_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", + "Custom", "AccessControl", "RawDocComment" ], @@ -4991,8 +4326,33 @@ }, { "kind": "Function", - "name": "presentMessageCenter", - "printedName": "presentMessageCenter(from:with:completion:)", + "name": "canShowMessageCenter", + "printedName": "canShowMessageCenter()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C20canShowMessageCenterSbyYaKF", + "mangledName": "$s13ApptentiveKit0A0C20canShowMessageCenterSbyYaKF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "AccessControl", + "Nonisolated", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(with:completion:)", "children": [ { "kind": "TypeNominal", @@ -5001,437 +4361,20 @@ }, { "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" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.CustomData?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", "children": [ { "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Result) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGcSgtF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentMessageCenter", - "printedName": "presentMessageCenter(from:with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.CustomData?", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from4withSbSo16UIViewControllerCSg_AA10CustomDataVSgtYaKF", - "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from4withSbSo16UIViewControllerCSg_AA10CustomDataVSgtYaKF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAttachment", - "printedName": "sendAttachment(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentText:", - "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySSF", - "moduleName": "ApptentiveKit", - "objc_name": "sendAttachmentText:", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAttachment", - "printedName": "sendAttachment(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentImage:", - "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySo7UIImageCF", - "moduleName": "ApptentiveKit", - "objc_name": "sendAttachmentImage:", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAttachment", - "printedName": "sendAttachment(_:mediaType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentFile:withMimeType:", - "mangledName": "$s13ApptentiveKit0A0C14sendAttachment_9mediaTypey10Foundation4DataV_SStF", - "moduleName": "ApptentiveKit", - "objc_name": "sendAttachmentFile:withMimeType:", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "canShowInteraction", - "printedName": "canShowInteraction(event:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Event", - "printedName": "ApptentiveKit.Event", - "usr": "s:13ApptentiveKit5EventV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Result) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGcSgtF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "canShowInteraction", - "printedName": "canShowInteraction(event:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Event", - "printedName": "ApptentiveKit.Event", - "usr": "s:13ApptentiveKit5EventV" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C18canShowInteraction5eventSbAA5EventV_tYaKF", - "mangledName": "$s13ApptentiveKit0A0C18canShowInteraction5eventSbAA5EventV_tYaKF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "canShowMessageCenter", - "printedName": "canShowMessageCenter(completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Result) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C20canShowMessageCenter10completionyys6ResultOySbs5Error_pGcSg_tF", - "mangledName": "$s13ApptentiveKit0A0C20canShowMessageCenter10completionyys6ResultOySbs5Error_pGcSg_tF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "canShowMessageCenter", - "printedName": "canShowMessageCenter()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C20canShowMessageCenterSbyYaKF", - "mangledName": "$s13ApptentiveKit0A0C20canShowMessageCenterSbyYaKF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "logIn", - "printedName": "logIn(with:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Result", @@ -5455,10 +4398,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C5logIn4with10completionySS_ys6ResultOyyts5Error_pGctF", - "mangledName": "$s13ApptentiveKit0A0C5logIn4with10completionySS_ys6ResultOyyts5Error_pGctF", + "usr": "s:13ApptentiveKit0A0C5logIn4with10completionySS_ys6ResultOyyts5Error_pGYbctF", + "mangledName": "$s13ApptentiveKit0A0C5logIn4with10completionySS_ys6ResultOyyts5Error_pGYbctF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], @@ -5486,7 +4431,9 @@ "mangledName": "$s13ApptentiveKit0A0C5logIn4withySS_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", "RawDocComment" ], "throwing": true, @@ -5543,10 +4490,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C6logOut10completionyys6ResultOyyts5Error_pGcSg_tF", - "mangledName": "$s13ApptentiveKit0A0C6logOut10completionyys6ResultOyyts5Error_pGcSg_tF", + "usr": "s:13ApptentiveKit0A0C6logOut10completionyys6ResultOyyts5Error_pGYbcSg_tF", + "mangledName": "$s13ApptentiveKit0A0C6logOut10completionyys6ResultOyyts5Error_pGYbcSg_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], @@ -5568,7 +4517,9 @@ "mangledName": "$s13ApptentiveKit0A0C6logOutyyYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", "RawDocComment" ], "throwing": true, @@ -5632,10 +4583,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C11updateToken_10completionySS_ys6ResultOyyts5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C11updateToken_10completionySS_ys6ResultOyyts5Error_pGcSgtF", + "usr": "s:13ApptentiveKit0A0C11updateToken_10completionySS_ys6ResultOyyts5Error_pGYbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C11updateToken_10completionySS_ys6ResultOyyts5Error_pGYbcSgtF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", + "Custom", "AccessControl", "RawDocComment" ], @@ -5663,40 +4616,131 @@ "mangledName": "$s13ApptentiveKit0A0C11updateTokenyySSYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", "RawDocComment" ], "throwing": true, "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(apiBaseURL:)", + "kind": "TypeDecl", + "name": "BackendSync", + "printedName": "BackendSync", "children": [ { - "kind": "TypeNominal", - "name": "Apptentive", - "printedName": "ApptentiveKit.Apptentive", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "kind": "Var", + "name": "wrappedValue", + "printedName": "wrappedValue", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvp", + "mangledName": "$s13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvg", + "mangledName": "$s13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvg", + "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvs", + "mangledName": "$s13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvs", + "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvM", + "mangledName": "$s13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvM", + "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] } ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A0C10apiBaseURLAC10Foundation0E0V_tcfc", - "mangledName": "$s13ApptentiveKit0A0C10apiBaseURLAC10Foundation0E0V_tcfc", + "declKind": "Struct", + "usr": "s:13ApptentiveKit0A0C11BackendSyncV", + "mangledName": "$s13ApptentiveKit0A0C11BackendSyncV", "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "Convenience", "AccessControl", + "PropertyWrapper", "RawDocComment" ], - "init_kind": "Convenience" + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } + ] }, { "kind": "Constructor", @@ -5720,6 +4764,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Custom", "Override" ], "init_kind": "Designated" @@ -5746,7 +4791,8 @@ "mangledName": "$s13ApptentiveKit0A0C32setRemoteNotificationDeviceTokenyy10Foundation4DataVF", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -5756,46 +4802,14 @@ }, { "kind": "Function", - "name": "setRemoteNotifcationDeviceToken", - "printedName": "setRemoteNotifcationDeviceToken(_:)", + "name": "didReceiveRemoteNotification", + "printedName": "didReceiveRemoteNotification(_:fetchCompletionHandler:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setRemoteNotifcationDeviceToken:", - "mangledName": "$s13ApptentiveKit0A0C31setRemoteNotifcationDeviceTokenyy10Foundation4DataVF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "didReceiveRemoteNotification", - "printedName": "didReceiveRemoteNotification(_:fetchCompletionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", @@ -5837,10 +4851,11 @@ ], "declKind": "Func", "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)didReceiveRemoteNotification:fetchCompletionHandler:", - "mangledName": "$s13ApptentiveKit0A0C28didReceiveRemoteNotification_22fetchCompletionHandlerSbSDys11AnyHashableVypG_ySo23UIBackgroundFetchResultVctF", + "mangledName": "$s13ApptentiveKit0A0C28didReceiveRemoteNotification_22fetchCompletionHandlerSbSDys11AnyHashableVypG_ySo23UIBackgroundFetchResultVYbctF", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -5888,7 +4903,8 @@ "mangledName": "$s13ApptentiveKit0A0C33didReceveUserNotificationResponse_21withCompletionHandlerSbSo014UNNotificationG0C_yyctF", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -5937,7 +4953,8 @@ "mangledName": "$s13ApptentiveKit0A0C11willPresent_21withCompletionHandlerSbSo14UNNotificationC_ySo0H19PresentationOptionsVctF", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -5988,12 +5005,13 @@ ], "declKind": "Func", "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)userNotificationCenter:willPresentNotification:withCompletionHandler:", - "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_11willPresent21withCompletionHandlerySo06UNUserdE0C_So14UNNotificationCySo0L19PresentationOptionsVctF", + "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_11willPresent21withCompletionHandlerySo06UNUserdE0C_So14UNNotificationCySo0L19PresentationOptionsVYbctF", "moduleName": "ApptentiveKit", "objc_name": "userNotificationCenter:willPresentNotification:withCompletionHandler:", "declAttributes": [ - "Dynamic", + "Final", "ObjC", + "Custom", "AccessControl", "RawDocComment" ], @@ -6042,12 +5060,13 @@ ], "declKind": "Func", "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:", - "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_10didReceive21withCompletionHandlerySo06UNUserdE0C_So22UNNotificationResponseCyyctF", + "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_10didReceive21withCompletionHandlerySo06UNUserdE0C_So22UNNotificationResponseCyyYbctF", "moduleName": "ApptentiveKit", "objc_name": "userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:", "declAttributes": [ - "Dynamic", + "Final", "ObjC", + "Custom", "AccessControl", "RawDocComment" ], @@ -6079,6 +5098,8 @@ "mangledName": "$s13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", + "Custom", "AccessControl", "RawDocComment" ], @@ -6108,82 +5129,417 @@ "usr": "s:13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvg", "mangledName": "$s13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvg", "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final" + ], "isFromExtension": true, "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "loadEngagementManifest", - "printedName": "loadEngagementManifest(at:completion:)", + "kind": "TypeDecl", + "name": "ConversationState", + "printedName": "ConversationState", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO4noneyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO4noneyA2EmF", + "moduleName": "ApptentiveKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", + "kind": "Var", + "name": "placeholder", + "printedName": "placeholder", "children": [ { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO11placeholderyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO11placeholderyA2EmF", + "moduleName": "ApptentiveKit" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", + "kind": "Var", + "name": "anonymousPending", + "printedName": "anonymousPending", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO16anonymousPendingyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO16anonymousPendingyA2EmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "legacyPending", + "printedName": "legacyPending", + "children": [ { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result<(), any Swift.Error>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" }, { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO13legacyPendingyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO13legacyPendingyA2EmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "anonymous", + "printedName": "anonymous", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO9anonymousyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO9anonymousyA2EmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "loggedIn", + "printedName": "loggedIn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO8loggedInyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO8loggedInyA2EmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "loggedOut", + "printedName": "loggedOut", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO9loggedOutyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO9loggedOutyA2EmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ApptentiveKit.Apptentive.ConversationState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" } ], - "usr": "s:s6ResultO" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO8rawValueAESgSS_tcfc", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO8rawValueAESgSS_tcfc", + "moduleName": "ApptentiveKit", + "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:13ApptentiveKit0A0C17ConversationStateO8rawValueSSvp", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO8rawValueSSvp", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO8rawValueSSvg", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO8rawValueSSvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessorKind": "get" } ] } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C22loadEngagementManifest2at10completiony10Foundation3URLVSg_ys6ResultOyyts5Error_pGctF", - "mangledName": "$s13ApptentiveKit0A0C22loadEngagementManifest2at10completiony10Foundation3URLVSg_ys6ResultOyyts5Error_pGctF", + "declKind": "Enum", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO", "moduleName": "ApptentiveKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "Function", - "name": "getInteractionList", - "printedName": "getInteractionList(_:)", + "name": "loadEngagementManifest", + "printedName": "loadEngagementManifest(at:)", "children": [ { "kind": "TypeNominal", @@ -6191,37 +5547,61 @@ "printedName": "()" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([ApptentiveKit.Apptentive.InteractionListItem]) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C22loadEngagementManifest2aty10Foundation3URLVSg_tYaKF", + "mangledName": "$s13ApptentiveKit0A0C22loadEngagementManifest2aty10Foundation3URLVSg_tYaKF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getInteractionList", + "printedName": "getInteractionList()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ApptentiveKit.Apptentive.InteractionListItem]", + "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ApptentiveKit.Apptentive.InteractionListItem]", - "children": [ - { - "kind": "TypeNominal", - "name": "InteractionListItem", - "printedName": "ApptentiveKit.Apptentive.InteractionListItem", - "usr": "s:13ApptentiveKit0A0C19InteractionListItemV" - } - ], - "usr": "s:Sa" + "name": "InteractionListItem", + "printedName": "ApptentiveKit.Apptentive.InteractionListItem", + "usr": "s:13ApptentiveKit0A0C19InteractionListItemV" } - ] + ], + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C18getInteractionListyyySayAC0dE4ItemVGcF", - "mangledName": "$s13ApptentiveKit0A0C18getInteractionListyyySayAC0dE4ItemVGcF", + "usr": "s:13ApptentiveKit0A0C18getInteractionListSayAC0dE4ItemVGyYaF", + "mangledName": "$s13ApptentiveKit0A0C18getInteractionListSayAC0dE4ItemVGyYaF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], @@ -6231,7 +5611,7 @@ { "kind": "Function", "name": "presentInteraction", - "printedName": "presentInteraction(with:completion:)", + "printedName": "presentInteraction(with:)", "children": [ { "kind": "TypeNominal", @@ -6243,54 +5623,26 @@ "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result<(), any Swift.Error>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C18presentInteraction4with10completionySS_ys6ResultOyyts5Error_pGctF", - "mangledName": "$s13ApptentiveKit0A0C18presentInteraction4with10completionySS_ys6ResultOyyts5Error_pGctF", + "usr": "s:13ApptentiveKit0A0C18presentInteraction4withySS_tYaKF", + "mangledName": "$s13ApptentiveKit0A0C18presentInteraction4withySS_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", "name": "presentInteraction", - "printedName": "presentInteraction(at:completion:)", + "printedName": "presentInteraction(at:)", "children": [ { "kind": "TypeNominal", @@ -6302,48 +5654,20 @@ "name": "URL", "printedName": "Foundation.URL", "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result<(), any Swift.Error>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C18presentInteraction2at10completiony10Foundation3URLV_ys6ResultOyyts5Error_pGctF", - "mangledName": "$s13ApptentiveKit0A0C18presentInteraction2at10completiony10Foundation3URLV_ys6ResultOyyts5Error_pGctF", + "usr": "s:13ApptentiveKit0A0C18presentInteraction2aty10Foundation3URLV_tYaKF", + "mangledName": "$s13ApptentiveKit0A0C18presentInteraction2aty10Foundation3URLV_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -6495,7 +5819,23 @@ "AccessControl", "RawDocComment" ], - "isFromExtension": true + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } + ] }, { "kind": "Function", @@ -6539,6 +5879,8 @@ "mangledName": "$s13ApptentiveKit0A0C12getEventListyyySaySSGcF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], @@ -6548,237 +5890,67 @@ { "kind": "Function", "name": "getConnectionInfo", - "printedName": "getConnectionInfo(_:)", + "printedName": "getConnectionInfo()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String?, Swift.String?, Swift.String?, Swift.String?, Swift.String?) -> ()", + "name": "Tuple", + "printedName": "(ApptentiveKit.Apptentive.ConversationState, Swift.String?, Swift.String?)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String?, Swift.String?, Swift.String?, Swift.String?, Swift.String?)", + "name": "Optional", + "printedName": "Swift.String?", "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": "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" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "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": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "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" } - ] + ], + "usr": "s:Sq" } ] } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C17getConnectionInfoyyySSSg_A4EtcF", - "mangledName": "$s13ApptentiveKit0A0C17getConnectionInfoyyySSSg_A4EtcF", + "usr": "s:13ApptentiveKit0A0C17getConnectionInfoAC17ConversationStateO_SSSgAGtyYaF", + "mangledName": "$s13ApptentiveKit0A0C17getConnectionInfoAC17ConversationStateO_SSSgAGtyYaF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, - { - "kind": "Function", - "name": "register", - "printedName": "register(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveConfiguration", - "printedName": "ApptentiveKit.ApptentiveConfiguration", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)registerWithConfiguration:", - "mangledName": "$s13ApptentiveKit0A0C8register4withyAA0A13ConfigurationC_tFZ", - "moduleName": "ApptentiveKit", - "static": true, - "deprecated": true, - "objc_name": "registerWithConfiguration:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "register", - "printedName": "register(with:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveConfiguration", - "printedName": "ApptentiveKit.ApptentiveConfiguration", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Bool) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)registerWithConfiguration:completion:", - "mangledName": "$s13ApptentiveKit0A0C8register4with10completionyAA0A13ConfigurationC_ySbcSgtF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "registerWithConfiguration:completion:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sharedConnection", - "printedName": "sharedConnection()", - "children": [ - { - "kind": "TypeNominal", - "name": "Apptentive", - "printedName": "ApptentiveKit.Apptentive", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)sharedConnection", - "mangledName": "$s13ApptentiveKit0A0C16sharedConnectionACyFZ", - "moduleName": "ApptentiveKit", - "static": true, - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, { "kind": "Var", - "name": "appID", - "printedName": "appID", + "name": "fontName", + "printedName": "fontName", "children": [ { "kind": "TypeNominal", @@ -6796,17 +5968,21 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)appID", - "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvp", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cpy)fontName", + "mangledName": "$s13ApptentiveKit0A0C8fontNameSSSgvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ - "Dynamic", + "HasInitialValue", + "Final", + "Custom", + "HasStorage", "AccessControl", "ObjC", - "Available" + "RawDocComment" ], "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -6829,12 +6005,14 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)appID", - "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvg", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)fontName", + "mangledName": "$s13ApptentiveKit0A0C8fontNameSSSgvgZ", "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "get" @@ -6865,297 +6043,102 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAppID:", - "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvs", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)setFontName:", + "mangledName": "$s13ApptentiveKit0A0C8fontNameSSSgvsZ", "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "set" - } - ] - }, - { - "kind": "Var", - "name": "showInfoButton", - "printedName": "showInfoButton", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)showInfoButton", - "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)showInfoButton", - "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" }, { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setShowInfoButton:", - "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvs", + "usr": "s:13ApptentiveKit0A0C8fontNameSSSgvMZ", + "mangledName": "$s13ApptentiveKit0A0C8fontNameSSSgvMZ", "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "Final" ], "isFromExtension": true, - "accessorKind": "set" + "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "surveyTermsAndConditions", - "printedName": "surveyTermsAndConditions", + "kind": "Function", + "name": "register", + "printedName": "register(with:completion:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", - "children": [ - { - "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)surveyTermsAndConditions", - "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", - "children": [ - { - "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)surveyTermsAndConditions", - "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "ApptentiveConfiguration", + "printedName": "ApptentiveKit.ApptentiveConfiguration", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Bool) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", "children": [ { "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setSurveyTermsAndConditions:", - "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" - } - ] - }, - { - "kind": "Var", - "name": "apptentiveKey", - "printedName": "apptentiveKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)apptentiveKey", - "mangledName": "$s13ApptentiveKit0A0C13apptentiveKeySSvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)apptentiveKey", - "mangledName": "$s13ApptentiveKit0A0C13apptentiveKeySSvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "apptentiveSignature", - "printedName": "apptentiveSignature", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)apptentiveSignature", - "mangledName": "$s13ApptentiveKit0A0C19apptentiveSignatureSSvp", + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)registerWithConfiguration:completion:", + "mangledName": "$s13ApptentiveKit0A0C8register4with10completionyAA0A13ConfigurationC_ySbYbcSgtF", "moduleName": "ApptentiveKit", "deprecated": true, + "objc_name": "registerWithConfiguration:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" ], "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)apptentiveSignature", - "mangledName": "$s13ApptentiveKit0A0C19apptentiveSignatureSSvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { "kind": "Function", @@ -7194,7 +6177,8 @@ "moduleName": "ApptentiveKit", "objc_name": "engage:fromViewController:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC" ], @@ -7261,11 +6245,12 @@ ], "declKind": "Func", "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:fromViewController:completion:", - "mangledName": "$s13ApptentiveKit0A0C6engage_18fromViewController10completionySS_So06UIViewF0CSgySbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C6engage_18fromViewController10completionySS_So06UIViewF0CSgySbYbcSgtF", "moduleName": "ApptentiveKit", "objc_name": "engage:fromViewController:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC" ], @@ -7337,7 +6322,8 @@ "deprecated": true, "objc_name": "engage:withCustomData:fromViewController:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7432,12 +6418,13 @@ ], "declKind": "Func", "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:fromViewController:completion:", - "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData4from10completionySS_SDys11AnyHashableVypGSgSo16UIViewControllerCSgySbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData4from10completionySS_SDys11AnyHashableVypGSgSo16UIViewControllerCSgySbYbcSgtF", "moduleName": "ApptentiveKit", "deprecated": true, "objc_name": "engage:withCustomData:fromViewController:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7447,8 +6434,8 @@ }, { "kind": "Function", - "name": "engage", - "printedName": "engage(event:withCustomData:withExtendedData:from:)", + "name": "queryCanShowInteraction", + "printedName": "queryCanShowInteraction(forEvent:completion:)", "children": [ { "kind": "TypeNominal", @@ -7462,90 +6449,33 @@ "usr": "s:SS" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[Swift.AnyHashable : Any]]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.AnyHashable : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ], - "usr": "s:Sq" + ] } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:withExtendedData:fromViewController:", - "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData0e8ExtendedG04fromySS_SDys11AnyHashableVypGSgSayAKGSgSo16UIViewControllerCSgtF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowInteractionForEvent:completion:", + "mangledName": "$s13ApptentiveKit0A0C23queryCanShowInteraction8forEvent10completionySS_ySbYbctF", "moduleName": "ApptentiveKit", "deprecated": true, - "objc_name": "engage:withCustomData:withExtendedData:fromViewController:", + "objc_name": "queryCanShowInteractionForEvent:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7555,9 +6485,54 @@ }, { "kind": "Function", - "name": "engage", - "printedName": "engage(event:withCustomData:withExtendedData:from:completion:)", - "children": [ + "name": "queryCanShowMessageCenter", + "printedName": "queryCanShowMessageCenter(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowMessageCenterWithCompletion:", + "mangledName": "$s13ApptentiveKit0A0C25queryCanShowMessageCenter10completionyySbYbc_tF", + "moduleName": "ApptentiveKit", + "deprecated": true, + "objc_name": "queryCanShowMessageCenterWithCompletion:", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenterCompat", + "printedName": "presentMessageCenterCompat(from:)", + "children": [ { "kind": "TypeNominal", "name": "Void", @@ -7565,9 +6540,124 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "UIKit.UIViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:", + "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4fromySo16UIViewControllerCSg_tF", + "moduleName": "ApptentiveKit", + "objc_name": "presentMessageCenterFromViewController:", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenterCompat", + "printedName": "presentMessageCenterCompat(from:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Bool) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:completion:", + "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from10completionySo16UIViewControllerCSg_ySbYbcSgtF", + "moduleName": "ApptentiveKit", + "deprecated": true, + "objc_name": "presentMessageCenterFromViewController:completion:", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenterCompat", + "printedName": "presentMessageCenterCompat(from:withCustomData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", @@ -7595,38 +6685,42 @@ } ], "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:", + "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomDataySo16UIViewControllerCSg_SDys11AnyHashableVypGSgtF", + "moduleName": "ApptentiveKit", + "objc_name": "presentMessageCenterFromViewController:withCustomData:", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenterCompat", + "printedName": "presentMessageCenterCompat(from:withCustomData:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[[Swift.AnyHashable : Any]]?", + "printedName": "UIKit.UIViewController?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.AnyHashable : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], "usr": "s:Sq" @@ -7634,13 +6728,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIViewController?", + "printedName": "[Swift.AnyHashable : Any]?", "children": [ { "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" + "name": "Dictionary", + "printedName": "[Swift.AnyHashable : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHashable", + "printedName": "Swift.AnyHashable", + "usr": "s:s11AnyHashableV" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], "usr": "s:Sq" @@ -7674,13 +6781,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:withExtendedData:fromViewController:completion:", - "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData0e8ExtendedG04from10completionySS_SDys11AnyHashableVypGSgSayALGSgSo16UIViewControllerCSgySbcSgtF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:completion:", + "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomData10completionySo16UIViewControllerCSg_SDys11AnyHashableVypGSgySbYbcSgtF", "moduleName": "ApptentiveKit", "deprecated": true, - "objc_name": "engage:withCustomData:withExtendedData:fromViewController:completion:", + "objc_name": "presentMessageCenterFromViewController:withCustomData:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7690,8 +6798,8 @@ }, { "kind": "Function", - "name": "queryCanShowInteraction", - "printedName": "queryCanShowInteraction(forEvent:completion:)", + "name": "removeCustomPersonData", + "printedName": "removeCustomPersonData(withKey:)", "children": [ { "kind": "TypeNominal", @@ -7703,34 +6811,17 @@ "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowInteractionForEvent:completion:", - "mangledName": "$s13ApptentiveKit0A0C23queryCanShowInteraction8forEvent10completionySS_ySbctF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomPersonDataWithKey:", + "mangledName": "$s13ApptentiveKit0A0C22removeCustomPersonData7withKeyySS_tF", "moduleName": "ApptentiveKit", "deprecated": true, - "objc_name": "queryCanShowInteractionForEvent:completion:", + "objc_name": "removeCustomPersonDataWithKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7740,44 +6831,30 @@ }, { "kind": "Function", - "name": "extendedData", - "printedName": "extendedData(date:)", + "name": "removeCustomDeviceData", + "printedName": "removeCustomDeviceData(withKey:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataDate:", - "mangledName": "$s13ApptentiveKit0A0C12extendedData4dateSDys11AnyHashableVypG10Foundation4DateV_tFZ", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomDeviceDataWithKey:", + "mangledName": "$s13ApptentiveKit0A0C22removeCustomDeviceData7withKeyySS_tF", "moduleName": "ApptentiveKit", - "static": true, "deprecated": true, - "objc_name": "extendedDataDate:", + "objc_name": "removeCustomDeviceDataWithKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7787,50 +6864,36 @@ }, { "kind": "Function", - "name": "extendedData", - "printedName": "extendedData(latitude:longitude:)", + "name": "addCustomDeviceData", + "printedName": "addCustomDeviceData(_:withKey:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataLocationForLatitude:longitude:", - "mangledName": "$s13ApptentiveKit0A0C12extendedData8latitude9longitudeSDys11AnyHashableVypGSd_SdtFZ", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataString:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySS_SStF", "moduleName": "ApptentiveKit", - "static": true, "deprecated": true, - "objc_name": "extendedDataLocationForLatitude:longitude:", + "objc_name": "addCustomDeviceDataString:withKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7840,157 +6903,75 @@ }, { "kind": "Function", - "name": "extendedData", - "printedName": "extendedData(transactionID:affiliation:revenue:shipping:tax:currency:commerceItems:)", + "name": "addCustomDeviceData", + "printedName": "addCustomDeviceData(_:withKey:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "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": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataNumber:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySo8NSNumberC_SStF", + "moduleName": "ApptentiveKit", + "deprecated": true, + "objc_name": "addCustomDeviceDataNumber:withKey:", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addCustomDeviceData", + "printedName": "addCustomDeviceData(_:withKey:)", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[Swift.AnyHashable : Any]]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.AnyHashable : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:", - "mangledName": "$s13ApptentiveKit0A0C12extendedData13transactionID11affiliation7revenue8shipping3tax8currency13commerceItemsSDys11AnyHashableVypGSSSg_AOSo8NSNumberCSgA2rOSayANGSgtFZ", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataBool:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySb_SStF", "moduleName": "ApptentiveKit", - "static": true, "deprecated": true, - "objc_name": "extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:", + "objc_name": "addCustomDeviceDataBool:withKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8000,122 +6981,36 @@ }, { "kind": "Function", - "name": "extendedData", - "printedName": "extendedData(itemID:name:category:price:quantity:currency:)", + "name": "addCustomPersonData", + "printedName": "addCustomPersonData(_:withKey:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" }, { "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": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "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.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" + "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" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:", - "mangledName": "$s13ApptentiveKit0A0C12extendedData6itemID4name8category5price8quantity8currencySDys11AnyHashableVypGSSSg_A2NSo8NSNumberCSgAqNtFZ", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataString:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySS_SStF", "moduleName": "ApptentiveKit", - "static": true, "deprecated": true, - "objc_name": "extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:", + "objc_name": "addCustomPersonDataString:withKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8125,8 +7020,8 @@ }, { "kind": "Function", - "name": "queryCanShowMessageCenter", - "printedName": "queryCanShowMessageCenter(completion:)", + "name": "addCustomPersonData", + "printedName": "addCustomPersonData(_:withKey:)", "children": [ { "kind": "TypeNominal", @@ -8134,32 +7029,27 @@ "printedName": "()" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowMessageCenterWithCompletion:", - "mangledName": "$s13ApptentiveKit0A0C25queryCanShowMessageCenter10completionyySbc_tF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataNumber:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySo8NSNumberC_SStF", "moduleName": "ApptentiveKit", "deprecated": true, - "objc_name": "queryCanShowMessageCenterWithCompletion:", + "objc_name": "addCustomPersonDataNumber:withKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8169,8 +7059,8 @@ }, { "kind": "Function", - "name": "presentMessageCenterCompat", - "printedName": "presentMessageCenterCompat(from:)", + "name": "addCustomPersonData", + "printedName": "addCustomPersonData(_:withKey:)", "children": [ { "kind": "TypeNominal", @@ -8179,36 +7069,37 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:", - "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4fromySo16UIViewControllerCSg_tF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataBool:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySb_SStF", "moduleName": "ApptentiveKit", - "objc_name": "presentMessageCenterFromViewController:", + "deprecated": true, + "objc_name": "addCustomPersonDataBool:withKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", - "ObjC" + "ObjC", + "Available" ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "presentMessageCenterCompat", - "printedName": "presentMessageCenterCompat(from:completion:)", + "name": "logIn", + "printedName": "logIn(withToken:completion:)", "children": [ { "kind": "TypeNominal", @@ -8217,54 +7108,59 @@ }, { "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" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Bool) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, (any Swift.Error)?) -> ()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, (any Swift.Error)?)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Bool", "printedName": "Swift.Bool", "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:completion:", - "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from10completionySo16UIViewControllerCSg_ySbcSgtF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logInWithToken:completion:", + "mangledName": "$s13ApptentiveKit0A0C5logIn9withToken10completionySS_ySb_s5Error_pSgtYbctF", "moduleName": "ApptentiveKit", "deprecated": true, - "objc_name": "presentMessageCenterFromViewController:completion:", + "objc_name": "logInWithToken:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8274,119 +7170,271 @@ }, { "kind": "Function", - "name": "presentMessageCenterCompat", - "printedName": "presentMessageCenterCompat(from:withCustomData:)", + "name": "logOut", + "printedName": "logOut()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - }, + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logOut", + "mangledName": "$s13ApptentiveKit0A0C6logOutyyF", + "moduleName": "ApptentiveKit", + "deprecated": true, + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "authenticationFailureCallback", + "printedName": "authenticationFailureCallback", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", + "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Tuple", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveAuthenticationFailureReason", + "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", + "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] } - ], - "usr": "s:SD" + ] } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:", - "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomDataySo16UIViewControllerCSg_SDys11AnyHashableVypGSgtF", + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)authenticationFailureCallback", + "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvp", "moduleName": "ApptentiveKit", - "objc_name": "presentMessageCenterFromViewController:withCustomData:", + "deprecated": true, "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", - "ObjC" + "ObjC", + "Available" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentMessageCenterCompat", - "printedName": "presentMessageCenterCompat(from:withCustomData:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" + "name": "Optional", + "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveAuthenticationFailureReason", + "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", + "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)authenticationFailureCallback", + "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvg", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveAuthenticationFailureReason", + "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", + "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAuthenticationFailureCallback:", + "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvs", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvM", + "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvM", + "moduleName": "ApptentiveKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "updateToken", + "printedName": "updateToken(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", @@ -8417,229 +7465,13 @@ } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:completion:", - "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomData10completionySo16UIViewControllerCSg_SDys11AnyHashableVypGSgySbcSgtF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "presentMessageCenterFromViewController:withCustomData:completion:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dismissMessageCenter", - "printedName": "dismissMessageCenter(animated:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)dismissMessageCenterWithAnimated:completion:", - "mangledName": "$s13ApptentiveKit0A0C20dismissMessageCenter8animated10completionySb_yycSgtF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "dismissMessageCenterWithAnimated:completion:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unreadMessageCountAccessoryView", - "printedName": "unreadMessageCountAccessoryView(apptentiveHeart:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)unreadMessageCountAccessoryViewWithApptentiveHeart:", - "mangledName": "$s13ApptentiveKit0A0C31unreadMessageCountAccessoryView15apptentiveHeartSo6UIViewCSb_tF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "unreadMessageCountAccessoryViewWithApptentiveHeart:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "openAppStore", - "printedName": "openAppStore()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)openAppStore", - "mangledName": "$s13ApptentiveKit0A0C12openAppStoreyyF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setPushProvider", - "printedName": "setPushProvider(_:deviceToken:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setPushProvider:deviceToken:", - "mangledName": "$s13ApptentiveKit0A0C15setPushProvider_11deviceTokenyAA0adE0O_10Foundation4DataVtF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "didReceveUserNotificationResponse", - "printedName": "didReceveUserNotificationResponse(_:from:withCompletionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "UNNotificationResponse", - "printedName": "UserNotifications.UNNotificationResponse", - "usr": "c:objc(cs)UNNotificationResponse" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)didReceveUserNotificationResponse:from:withCompletionHandler:", - "mangledName": "$s13ApptentiveKit0A0C33didReceveUserNotificationResponse_4from21withCompletionHandlerSbSo014UNNotificationG0C_So16UIViewControllerCSgyyctF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)updateToken:completion:", + "mangledName": "$s13ApptentiveKit0A0C11updateToken_10completionySS_ySbYbcSgtF", "moduleName": "ApptentiveKit", "deprecated": true, "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8649,31 +7481,24 @@ }, { "kind": "Var", - "name": "advertisingIdentifier", - "printedName": "advertisingIdentifier", + "name": "logLevel", + "printedName": "logLevel", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.UUID?", - "children": [ - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" - } - ], - "usr": "s:Sq" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)advertisingIdentifier", - "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvp", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)logLevel", + "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovp", "moduleName": "ApptentiveKit", "deprecated": true, "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8687,26 +7512,18 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.UUID?", - "children": [ - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" - } - ], - "usr": "s:Sq" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)advertisingIdentifier", - "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvg", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logLevel", + "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovg", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "get" @@ -8723,1302 +7540,661 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.UUID?", - "children": [ - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" - } - ], - "usr": "s:Sq" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAdvertisingIdentifier:", - "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvs", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setLogLevel:", + "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovs", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C8logLevelAA0a3LogD0OvM", + "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0OvM", + "moduleName": "ApptentiveKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } ] + } + ], + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive", + "mangledName": "$s13ApptentiveKit0A0C", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "AccessControl", + "Custom", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ApptentiveError", + "printedName": "ApptentiveError", + "children": [ { "kind": "Var", - "name": "mParticleId", - "printedName": "mParticleId", + "name": "internalInconsistency", + "printedName": "internalInconsistency", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)mParticleId", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "invalidCustomDataType", + "printedName": "invalidCustomDataType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)mParticleId", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyA2CmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "fileExistsAtContainerDirectoryPath", + "printedName": "fileExistsAtContainerDirectoryPath", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setMParticleId:", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF", + "moduleName": "ApptentiveKit" }, { - "kind": "Function", - "name": "removeCustomPersonData", - "printedName": "removeCustomPersonData(withKey:)", + "kind": "Var", + "name": "unsupportedBackendStateTransition", + "printedName": "unsupportedBackendStateTransition", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomPersonDataWithKey:", - "mangledName": "$s13ApptentiveKit0A0C22removeCustomPersonData7withKeyySS_tF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "removeCustomPersonDataWithKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "removeCustomDeviceData", - "printedName": "removeCustomDeviceData(withKey:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomDeviceDataWithKey:", - "mangledName": "$s13ApptentiveKit0A0C22removeCustomDeviceData7withKeyySS_tF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "removeCustomDeviceDataWithKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomDeviceData", - "printedName": "addCustomDeviceData(_:withKey:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataString:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySS_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomDeviceDataString:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomDeviceData", - "printedName": "addCustomDeviceData(_:withKey:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataNumber:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySo8NSNumberC_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomDeviceDataNumber:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomDeviceData", - "printedName": "addCustomDeviceData(_:withKey:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "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@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataBool:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySb_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomDeviceDataBool:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomPersonData", - "printedName": "addCustomPersonData(_:withKey:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataString:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySS_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomPersonDataString:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomPersonData", - "printedName": "addCustomPersonData(_:withKey:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataNumber:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySo8NSNumberC_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomPersonDataNumber:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomPersonData", - "printedName": "addCustomPersonData(_:withKey:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "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@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataBool:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySb_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomPersonDataBool:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "styleSheet", - "printedName": "styleSheet", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)styleSheet", - "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)styleSheet", - "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO33unsupportedBackendStateTransitionyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO33unsupportedBackendStateTransitionyA2CmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "emptyEventName", + "printedName": "emptyEventName", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setStyleSheet:", - "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" - } - ] - }, - { - "kind": "Function", - "name": "checkSDKConfiguration", - "printedName": "checkSDKConfiguration()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)checkSDKConfiguration", - "mangledName": "$s13ApptentiveKit0A0C21checkSDKConfigurationyyF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO14emptyEventNameyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO14emptyEventNameyA2CmF", + "moduleName": "ApptentiveKit" }, { - "kind": "Function", - "name": "logIn", - "printedName": "logIn(withToken:completion:)", + "kind": "Var", + "name": "notLoggedIn", + "printedName": "notLoggedIn", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Swift.Bool, (any Swift.Error)?) -> ()", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Bool, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } ] } ] } ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logInWithToken:completion:", - "mangledName": "$s13ApptentiveKit0A0C5logIn9withToken10completionySS_ySb_s5Error_pSgtctF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "logInWithToken:completion:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "logOut", - "printedName": "logOut()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logOut", - "mangledName": "$s13ApptentiveKit0A0C6logOutyyF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO11notLoggedInyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO11notLoggedInyA2CmF", + "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "authenticationFailureCallback", - "printedName": "authenticationFailureCallback", + "name": "alreadyLoggedIn", + "printedName": "alreadyLoggedIn", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (Swift.String, Swift.String) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", + "printedName": "(Swift.String, Swift.String) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", "name": "Tuple", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", + "printedName": "(subject: Swift.String, id: Swift.String)", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveAuthenticationFailureReason", - "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", - "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" + "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" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)authenticationFailureCallback", - "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveAuthenticationFailureReason", - "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", - "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)authenticationFailureCallback", - "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO15alreadyLoggedInyACSS_SStcACmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO15alreadyLoggedInyACSS_SStcACmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "loginCalledBeforeRegister", + "printedName": "loginCalledBeforeRegister", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveAuthenticationFailureReason", - "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", - "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAuthenticationFailureCallback:", - "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO25loginCalledBeforeRegisteryA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO25loginCalledBeforeRegisteryA2CmF", + "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "preInteractionCallback", - "printedName": "preInteractionCallback", + "name": "activeConversationPending", + "printedName": "activeConversationPending", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool", + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ] + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)preInteractionCallback", - "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO25activeConversationPendingyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO25activeConversationPendingyA2CmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "missingSubClaim", + "printedName": "missingSubClaim", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)preInteractionCallback", - "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO15missingSubClaimyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO15missingSubClaimyA2CmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "mismatchedSubClaim", + "printedName": "mismatchedSubClaim", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setPreInteractionCallback:", - "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO18mismatchedSubClaimyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO18mismatchedSubClaimyA2CmF", + "moduleName": "ApptentiveKit" }, { - "kind": "Function", - "name": "updateToken", - "printedName": "updateToken(_:completion:)", + "kind": "Var", + "name": "invalidEncryptionKey", + "printedName": "invalidEncryptionKey", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Bool) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)updateToken:completion:", - "mangledName": "$s13ApptentiveKit0A0C11updateToken_10completionySS_ySbcSgtF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO20invalidEncryptionKeyyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO20invalidEncryptionKeyyA2CmF", + "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "logLevel", - "printedName": "logLevel", + "name": "invalidAppCredentials", + "printedName": "invalidAppCredentials", "children": [ { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)logLevel", - "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logLevel", - "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setLogLevel:", - "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" + ] } - ] - } - ], - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive", - "mangledName": "$s13ApptentiveKit0A0C", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": 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" + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO21invalidAppCredentialsyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO21invalidAppCredentialsyA2CmF", + "moduleName": "ApptentiveKit" }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ApptentiveError", - "printedName": "ApptentiveError", - "children": [ { "kind": "Var", - "name": "internalInconsistency", - "printedName": "internalInconsistency", + "name": "noActiveConversation", + "printedName": "noActiveConversation", "children": [ { "kind": "TypeFunc", @@ -10048,24 +8224,24 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF", + "usr": "s:13ApptentiveKit0A5ErrorO20noActiveConversationyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO20noActiveConversationyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "invalidCustomDataType", - "printedName": "invalidCustomDataType", + "name": "authenticationFailed", + "printedName": "authenticationFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (Any?) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (ApptentiveKit.AuthenticationFailureReason?, Swift.String?) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Any?) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason?, Swift.String?) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", @@ -10075,16 +8251,38 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Tuple", + "printedName": "(reason: ApptentiveKit.AuthenticationFailureReason?, responseString: Swift.String?)", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "ApptentiveKit.AuthenticationFailureReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ] }, @@ -10105,14 +8303,14 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyACypSgcACmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyACypSgcACmF", + "usr": "s:13ApptentiveKit0A5ErrorO20authenticationFailedyAcA27AuthenticationFailureReasonOSg_SSSgtcACmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO20authenticationFailedyAcA27AuthenticationFailureReasonOSg_SSSgtcACmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "fileExistsAtContainerDirectoryPath", - "printedName": "fileExistsAtContainerDirectoryPath", + "name": "resourceNotDecodableAsImage", + "printedName": "resourceNotDecodableAsImage", "children": [ { "kind": "TypeFunc", @@ -10142,25 +8340,51 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF", + "usr": "s:13ApptentiveKit0A5ErrorO27resourceNotDecodableAsImageyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO27resourceNotDecodableAsImageyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "unsupportedBackendStateTransition", - "printedName": "unsupportedBackendStateTransition", + "name": "interactionExceededRateLimit", + "printedName": "interactionExceededRateLimit", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (Swift.Int, Swift.Int) -> ApptentiveKit.ApptentiveError", "children": [ { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int, Swift.Int) -> ApptentiveKit.ApptentiveError", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(count: Swift.Int, limit: Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] }, { "kind": "TypeNominal", @@ -10179,73 +8403,190 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO33unsupportedBackendStateTransitionyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO33unsupportedBackendStateTransitionyA2CmF", + "usr": "s:13ApptentiveKit0A5ErrorO28interactionExceededRateLimityACSi_SitcACmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO28interactionExceededRateLimityACSi_SitcACmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "emptyEventName", - "printedName": "emptyEventName", + "name": "errorDescription", + "printedName": "errorDescription", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvp", + "mangledName": "$s13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvg", + "mangledName": "$s13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvg", + "moduleName": "ApptentiveKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO14emptyEventNameyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO14emptyEventNameyA2CmF", - "moduleName": "ApptentiveKit" + "declKind": "Func", + "usr": "s:13ApptentiveKit0A5ErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s13ApptentiveKit0A5ErrorO2eeoiySbAC_ACtFZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13ApptentiveKit0A5ErrorO", + "mangledName": "$s13ApptentiveKit0A5ErrorO", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationFailureReason", + "printedName": "AuthenticationFailureReason", + "children": [ { "kind": "Var", - "name": "notLoggedIn", - "printedName": "notLoggedIn", + "name": "invalidAlgorithm", + "printedName": "invalidAlgorithm", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" } ] } @@ -10253,62 +8594,36 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO11notLoggedInyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO11notLoggedInyA2CmF", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO16invalidAlgorithmyA2CmF", + "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO16invalidAlgorithmyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "alreadyLoggedIn", - "printedName": "alreadyLoggedIn", + "name": "malformedToken", + "printedName": "malformedToken", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (Swift.String, Swift.String) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Swift.String) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(subject: Swift.String, id: 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": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" } ] } @@ -10316,36 +8631,36 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO15alreadyLoggedInyACSS_SStcACmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO15alreadyLoggedInyACSS_SStcACmF", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO14malformedTokenyA2CmF", + "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO14malformedTokenyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "loginCalledBeforeRegister", - "printedName": "loginCalledBeforeRegister", + "name": "invalidToken", + "printedName": "invalidToken", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" } ] } @@ -10353,36 +8668,36 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO25loginCalledBeforeRegisteryA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO25loginCalledBeforeRegisteryA2CmF", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO12invalidTokenyA2CmF", + "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO12invalidTokenyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "activeConversationPending", - "printedName": "activeConversationPending", + "name": "missingSubClaim", + "printedName": "missingSubClaim", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" } ] } @@ -10390,542 +8705,36 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO25activeConversationPendingyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO25activeConversationPendingyA2CmF", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO15missingSubClaimyA2CmF", + "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO15missingSubClaimyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "missingSubClaim", - "printedName": "missingSubClaim", + "name": "mismatchedSubClaim", + "printedName": "mismatchedSubClaim", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO15missingSubClaimyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO15missingSubClaimyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "mismatchedSubClaim", - "printedName": "mismatchedSubClaim", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO18mismatchedSubClaimyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO18mismatchedSubClaimyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "invalidEncryptionKey", - "printedName": "invalidEncryptionKey", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO20invalidEncryptionKeyyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO20invalidEncryptionKeyyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "noActiveConversation", - "printedName": "noActiveConversation", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO20noActiveConversationyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO20noActiveConversationyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "authenticationFailed", - "printedName": "authenticationFailed", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (ApptentiveKit.AuthenticationFailureReason?, Swift.String?) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason?, Swift.String?) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(reason: ApptentiveKit.AuthenticationFailureReason?, responseString: Swift.String?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.AuthenticationFailureReason?", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO20authenticationFailedyAcA27AuthenticationFailureReasonOSg_SSSgtcACmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO20authenticationFailedyAcA27AuthenticationFailureReasonOSg_SSSgtcACmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "resourceNotDecodableAsImage", - "printedName": "resourceNotDecodableAsImage", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO27resourceNotDecodableAsImageyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO27resourceNotDecodableAsImageyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "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:13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvp", - "mangledName": "$s13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvp", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvg", - "mangledName": "$s13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvg", - "moduleName": "ApptentiveKit", - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit0A5ErrorO", - "mangledName": "$s13ApptentiveKit0A5ErrorO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "AuthenticationFailureReason", - "printedName": "AuthenticationFailureReason", - "children": [ - { - "kind": "Var", - "name": "invalidAlgorithm", - "printedName": "invalidAlgorithm", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO16invalidAlgorithmyA2CmF", - "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO16invalidAlgorithmyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "malformedToken", - "printedName": "malformedToken", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO14malformedTokenyA2CmF", - "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO14malformedTokenyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "invalidToken", - "printedName": "invalidToken", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO12invalidTokenyA2CmF", - "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO12invalidTokenyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "missingSubClaim", - "printedName": "missingSubClaim", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO15missingSubClaimyA2CmF", - "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO15missingSubClaimyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "mismatchedSubClaim", - "printedName": "mismatchedSubClaim", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" } ] } @@ -11241,6 +9050,20 @@ ], "enumRawTypeName": "String", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -11290,9 +9113,23 @@ "printedName": "Encodable", "usr": "s:SE", "mangledName": "$sSE" - } - ] - }, + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, { "kind": "Var", "name": "apptentiveAssertionHandler", @@ -11359,6 +9196,7 @@ "HasInitialValue", "HasStorage", "AccessControl", + "Nonisolated", "RawDocComment" ], "hasStorage": true, @@ -11545,6 +9383,23 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -11700,6 +9555,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -11725,9 +9587,41 @@ "usr": "s:13ApptentiveKit20CustomDataCompatibleP", "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP", "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0 : Swift.Sendable>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } ] }, { @@ -12030,6 +9924,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -12050,6 +9958,20 @@ "printedName": "Encodable", "usr": "s:SE", "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, @@ -12103,6 +10025,7 @@ "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ + "Custom", "RawDocComment" ], "reqNewWitnessTableEntry": true, @@ -12133,6 +10056,7 @@ "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ + "Custom", "RawDocComment" ], "reqNewWitnessTableEntry": true, @@ -12163,6 +10087,7 @@ "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ + "Custom", "RawDocComment" ], "reqNewWitnessTableEntry": true, @@ -12193,6 +10118,7 @@ "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ + "Custom", "RawDocComment" ], "reqNewWitnessTableEntry": true, @@ -12223,6 +10149,7 @@ "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ + "Custom", "RawDocComment" ], "reqNewWitnessTableEntry": true, @@ -12237,7 +10164,24 @@ "sugared_genericSig": "", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + } ] }, { @@ -12271,6 +10215,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12328,6 +10273,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12377,6 +10323,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12415,17 +10362,18 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessage10Foundation16AttributedStringVvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessage10Foundation16AttributedStringVvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12440,14 +10388,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessage10Foundation16AttributedStringVvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessage10Foundation16AttributedStringVvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -12465,23 +10413,24 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC14disclaimerText10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerText10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12494,21 +10443,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC14disclaimerText10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerText10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "accessorKind": "get" } @@ -12525,6 +10474,22 @@ "declAttributes": [ "AccessControl", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } ] }, { @@ -12553,6 +10518,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12603,6 +10569,22 @@ "declAttributes": [ "AccessControl", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } ] }, { @@ -12623,6 +10605,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12671,6 +10654,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "ReferenceOwnership", "AccessControl", @@ -12775,6 +10759,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC11currentPageAC0G0Cvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12824,6 +10809,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC9questionsSayAC8QuestionCGvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12873,6 +10859,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC17isMarkedAsInvalidSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12905,23 +10892,24 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessage10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessage10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12934,21 +10922,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessage10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessage10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "accessorKind": "get" } @@ -12962,23 +10950,24 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC12introductionSSSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introductionSSSgvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC12introduction10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introduction10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12991,21 +10980,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC12introductionSSSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introductionSSSgvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC12introduction10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introduction10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "accessorKind": "get" } @@ -13028,6 +11017,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC17advanceButtonTextSSvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13069,6 +11059,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC22invalidQuestionIndexes10Foundation8IndexSetVvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13111,6 +11102,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -13198,6 +11190,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -13303,6 +11296,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8setValue_3forySSSg_10Foundation9IndexPathVtF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13330,6 +11324,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC20selectValueFromRange2aty10Foundation9IndexPathV_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13351,6 +11346,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC22openTermsAndConditionsyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13368,10 +11364,11 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit15SurveyViewModelC7advanceyyF", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC7advanceyyF", + "usr": "s:13ApptentiveKit15SurveyViewModelC7advanceyyYaF", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC7advanceyyYaF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13394,6 +11391,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC7isValidSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13609,6 +11607,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -13642,6 +11654,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC11displayModeAC07DisplayG0Ovp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13683,6 +11696,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC19shouldConfirmCancelSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13732,6 +11746,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC27currentSelectedSegmentIndexSiSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13764,6 +11779,90 @@ } ] }, + { + "kind": "Var", + "name": "isIntroPage", + "printedName": "isIntroPage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit15SurveyViewModelC11isIntroPageSbvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC11isIntroPageSbvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit15SurveyViewModelC11isIntroPageSbvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC11isIntroPageSbvg", + "moduleName": "ApptentiveKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSuccessPage", + "printedName": "isSuccessPage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit15SurveyViewModelC13isSuccessPageSbvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC13isSuccessPageSbvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit15SurveyViewModelC13isSuccessPageSbvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC13isSuccessPageSbvg", + "moduleName": "ApptentiveKit", + "accessorKind": "get" + } + ] + }, { "kind": "Function", "name": "launch", @@ -13780,6 +11879,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC6launchyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13801,6 +11901,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC15continuePartialyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13828,6 +11929,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC6cancel7partialySb_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13856,6 +11958,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -13905,6 +12008,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -13962,6 +12066,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14027,6 +12132,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14092,6 +12198,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "SetterAccess", "AccessControl", @@ -14153,6 +12260,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC5valueSiSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14210,6 +12318,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC12choiceLabelsSaySSGvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14264,6 +12373,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC11selectValue2atySi_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14286,6 +12396,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC27accessibilityHintForSegmentSSvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14316,6 +12427,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14325,6 +12437,22 @@ "inheritsConvenienceInitializers": true, "superclassNames": [ "ApptentiveKit.SurveyViewModel.Question" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } ] }, { @@ -14358,6 +12486,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14419,6 +12548,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC06toggleF02atySi_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14441,6 +12571,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14selectionStyleAE09SelectionI0Ovp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14656,6 +12787,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -14684,17 +12829,18 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5label10Foundation16AttributedStringVvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5label10Foundation16AttributedStringVvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14709,14 +12855,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5label10Foundation16AttributedStringVvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5label10Foundation16AttributedStringVvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -14726,117 +12872,6 @@ } ] }, - { - "kind": "Var", - "name": "htmlLabel", - "printedName": "htmlLabel", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSAttributedString?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSAttributedString", - "printedName": "Foundation.NSAttributedString", - "usr": "c:objc(cs)NSAttributedString" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSAttributedString?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSAttributedString", - "printedName": "Foundation.NSAttributedString", - "usr": "c:objc(cs)NSAttributedString" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSAttributedString?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSAttributedString", - "printedName": "Foundation.NSAttributedString", - "usr": "c:objc(cs)NSAttributedString" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvs", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvM", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, { "kind": "Var", "name": "placeholderText", @@ -14863,6 +12898,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14920,6 +12956,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14968,6 +13005,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C10isSelectedSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "SetterAccess", "AccessControl", @@ -15013,6 +13051,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C17isMarkedAsInvalidSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "SetterAccess", "AccessControl", @@ -15067,6 +13106,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15158,10 +13198,34 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] } ], "declKind": "Class", @@ -15169,6 +13233,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -15178,6 +13243,36 @@ "inheritsConvenienceInitializers": true, "superclassNames": [ "ApptentiveKit.SurveyViewModel.Question" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } ] }, { @@ -15203,6 +13298,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15242,24 +13338,25 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC11description10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11description10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15275,21 +13372,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC11description10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11description10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -15307,24 +13404,25 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC10disclaimerSSSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC10disclaimerSSSgvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC10disclaimer10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC10disclaimer10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15340,21 +13438,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC10disclaimerSSSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC10disclaimerSSSgvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC10disclaimer10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC10disclaimer10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -15390,6 +13488,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15447,6 +13546,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15504,6 +13604,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15550,10 +13651,34 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" ], "isFromExtension": true, - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { "kind": "TypeDecl", @@ -15567,16 +13692,17 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4text10Foundation16AttributedStringVvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4text10Foundation16AttributedStringVvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "Final", "AccessControl", @@ -15592,14 +13718,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4text10Foundation16AttributedStringVvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4text10Foundation16AttributedStringVvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -15626,6 +13752,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC10isRequiredSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "Final", "AccessControl", @@ -15683,6 +13810,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12requiredTextSSSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "Final", "AccessControl", @@ -15740,6 +13868,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12errorMessageSSvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "Final", "AccessControl", @@ -15797,6 +13926,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12instructionsSSSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "Final", "AccessControl", @@ -15855,6 +13985,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15941,6 +14072,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC18accessibilityLabelSSvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -15972,10 +14104,34 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" ], "isFromExtension": true, - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { "kind": "TypeDecl", @@ -16008,6 +14164,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -16065,6 +14222,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -16122,6 +14280,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -16213,6 +14372,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -16222,6 +14382,36 @@ "inheritsConvenienceInitializers": true, "superclassNames": [ "ApptentiveKit.SurveyViewModel.Question" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } ] } ], @@ -16231,9 +14421,33 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { "kind": "Import", @@ -16277,14 +14491,21 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "SwiftUI", + "printedName": "SwiftUI", "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment" ] }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -16305,6 +14526,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -16345,6 +14573,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "UIKit", @@ -16381,6 +14616,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16414,6 +14652,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16447,6 +14688,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16488,6 +14732,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16529,6 +14776,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16570,6 +14820,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16597,6 +14850,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16624,6 +14880,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16651,234 +14910,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:didFailToRemoveAttachmentAt:with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27didFailToRemoveAttachmentAt4withyAA0cdeF0C_Sis5Error_ptF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27didFailToRemoveAttachmentAt4withyAA0cdeF0C_Sis5Error_ptF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:didFailToAddAttachmentWith:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_26didFailToAddAttachmentWithyAA0cdeF0C_s5Error_ptF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_26didFailToAddAttachmentWithyAA0cdeF0C_s5Error_ptF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:didFailToSendMessageWith:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_013didFailToSendC4WithyAA0cdeF0C_s5Error_ptF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_013didFailToSendC4WithyAA0cdeF0C_s5Error_ptF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:attachmentDownloadDidFinishAt:inMessageAt:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "IndexPath", - "printedName": "Foundation.IndexPath", - "usr": "s:10Foundation9IndexPathV" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_29attachmentDownloadDidFinishAt02incM0yAA0cdeF0C_Si10Foundation9IndexPathVtF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_29attachmentDownloadDidFinishAt02incM0yAA0cdeF0C_Si10Foundation9IndexPathVtF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:attachmentDownloadDidFailAt:inMessageAt:with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "IndexPath", - "printedName": "Foundation.IndexPath", - "usr": "s:10Foundation9IndexPathV" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27attachmentDownloadDidFailAt02incM04withyAA0cdeF0C_Si10Foundation9IndexPathVs5Error_ptF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27attachmentDownloadDidFailAt02incM04withyAA0cdeF0C_Si10Foundation9IndexPathVs5Error_ptF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:profilePhoto:didDownloadFor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - }, - { - "kind": "TypeNominal", - "name": "IndexPath", - "printedName": "Foundation.IndexPath", - "usr": "s:10Foundation9IndexPathV" - } + "declAttributes": [ + "Custom" ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_12profilePhoto14didDownloadForyAA0cdeF0C_So7UIImageC10Foundation9IndexPathVtF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_12profilePhoto14didDownloadForyAA0cdeF0C_So7UIImageC10Foundation9IndexPathVtF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" } @@ -16891,7 +14925,24 @@ "sugared_genericSig": "", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + } ] }, { @@ -16917,6 +14968,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -16974,6 +15026,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17031,6 +15084,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17080,6 +15134,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17129,6 +15184,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17178,6 +15234,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17227,6 +15284,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17276,6 +15334,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17325,6 +15384,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17374,6 +15434,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17423,6 +15484,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17472,6 +15534,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17529,6 +15592,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17601,6 +15665,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17719,6 +15784,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17806,6 +15872,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17893,6 +15960,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17942,6 +16010,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17991,6 +16060,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18040,6 +16110,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18089,6 +16160,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18138,6 +16210,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18187,6 +16260,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18236,6 +16310,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18285,6 +16360,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18334,6 +16410,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18383,6 +16460,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18432,6 +16510,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18481,6 +16560,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18530,6 +16610,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18579,6 +16660,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18628,6 +16710,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18677,6 +16760,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18726,6 +16810,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18775,6 +16860,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18824,6 +16910,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18873,6 +16960,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18922,6 +17010,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18971,6 +17060,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19020,6 +17110,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19069,6 +17160,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19126,6 +17218,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19237,6 +17330,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19339,6 +17433,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19425,6 +17520,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19511,6 +17607,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC22shouldAllowProfileEditSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19802,6 +17899,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -19843,6 +17954,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC012oldestUnreadC9IndexPath10Foundation0iJ0VSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -19900,6 +18012,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC06newestC9IndexPath10Foundation0hI0VSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -19948,6 +18061,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18commitProfileEditsyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -19969,6 +18083,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18cancelProfileEditsyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -19990,6 +18105,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC6launchyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20011,6 +18127,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC6cancelyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20033,6 +18150,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC08numberOfC6GroupsSivp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20079,6 +18197,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC04markC6AsRead2aty10Foundation9IndexPathV_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20107,6 +18226,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23numberOfMessagesInGroup2atS2i_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20143,6 +18263,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28dateStringForMessagesInGroup2atSSSgSi_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20171,6 +18292,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC7message2atAC0C0C10Foundation9IndexPathV_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20200,13 +18322,15 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -20226,6 +18350,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC0AC0C0Cvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "SetterAccess", "AccessControl", @@ -20279,6 +18404,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20385,6 +18511,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16draftAttachmentsSayAC0C0C10AttachmentCGvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20449,13 +18576,15 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -20476,13 +18605,15 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -20503,13 +18634,15 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -20529,6 +18662,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC24remainingAttachmentSlotsSivp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20570,6 +18704,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16canAddAttachmentSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20611,6 +18746,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC07canSendC0Sbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20647,51 +18783,38 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC04sendC0yyF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC04sendC0yyF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC04sendC0yyYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC04sendC0yyYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", "name": "getGreetingImage", - "printedName": "getGreetingImage(completion:)", + "printedName": "getGreetingImage()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIImage) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ] + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC16getGreetingImage10completionyySo7UIImageCc_tF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16getGreetingImage10completionyySo7UIImageCc_tF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC16getGreetingImageSo7UIImageCyYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16getGreetingImageSo7UIImageCyYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -20701,8 +18824,17 @@ "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", @@ -20712,12 +18844,14 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC15getProfilePhoto3fory10Foundation9IndexPathV_tF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15getProfilePhoto3fory10Foundation9IndexPathV_tF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC15getProfilePhoto3forSo7UIImageCSg10Foundation9IndexPathV_tYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15getProfilePhoto3forSo7UIImageCSg10Foundation9IndexPathV_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -21524,6 +19658,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -21895,6 +20043,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Hashable", @@ -22131,6 +20293,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Decodable", @@ -22201,6 +20377,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -22929,6 +21119,20 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -22992,6 +21196,20 @@ "isFromExtension": true, "hasMissingDesignatedInitializers": true, "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -23008,9 +21226,40 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] }, { "kind": "TypeDecl", @@ -23196,6 +21445,20 @@ "AccessControl" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -23223,6 +21486,13 @@ "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, @@ -23267,13 +21537,121 @@ ] }, { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "kind": "TypeDecl", + "name": "GlassDialogButton", + "printedName": "GlassDialogButton", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)GlassDialogButton", + "mangledName": "$s13ApptentiveKit17GlassDialogButtonC", "moduleName": "ApptentiveKit", + "intro_iOS": "26", "declAttributes": [ - "RawDocComment" + "Preconcurrency", + "Custom", + "AccessControl", + "Available", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UIView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } ] }, { @@ -23288,8 +21666,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ @@ -23316,6 +21694,60 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", "name": "Event", @@ -23503,6 +21935,46 @@ "accessorKind": "get" } ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit5EventV11descriptionSSvp", + "mangledName": "$s13ApptentiveKit5EventV11descriptionSSvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit5EventV11descriptionSSvg", + "mangledName": "$s13ApptentiveKit5EventV11descriptionSSvg", + "moduleName": "ApptentiveKit", + "accessorKind": "get" + } + ] } ], "declKind": "Struct", @@ -23514,6 +21986,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "ExpressibleByStringLiteral", @@ -23543,6 +22029,20 @@ "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": "Conformance", "name": "ExpressibleByExtendedGraphemeClusterLiteral", @@ -23565,6 +22065,13 @@ "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, { "kind": "Conformance", "name": "ExpressibleByUnicodeScalarLiteral", @@ -23631,6 +22138,7 @@ "mangledName": "$s13ApptentiveKit20InteractionPresenterCACycfc", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23654,11 +22162,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tKF", - "mangledName": "$s13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tKF", + "usr": "s:13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tYaKF", + "mangledName": "$s13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tYaKF", "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23683,11 +22192,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tKF", - "mangledName": "$s13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tKF", + "usr": "s:13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tYaKF", + "mangledName": "$s13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tYaKF", "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23712,11 +22222,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tKF", - "mangledName": "$s13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tKF", + "usr": "s:13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tYaKF", + "mangledName": "$s13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tYaKF", "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23726,7 +22237,7 @@ { "kind": "Function", "name": "presentTextModal", - "printedName": "presentTextModal(with:completion:)", + "printedName": "presentTextModal(with:)", "children": [ { "kind": "TypeNominal", @@ -23738,54 +22249,25 @@ "name": "DialogViewModel", "printedName": "ApptentiveKit.DialogViewModel", "usr": "s:13ApptentiveKit15DialogViewModelC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result<(), any Swift.Error>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] } ], "declKind": "Func", - "usr": "s:13ApptentiveKit20InteractionPresenterC16presentTextModal4with10completionyAA15DialogViewModelC_ys6ResultOyyts5Error_pGctF", - "mangledName": "$s13ApptentiveKit20InteractionPresenterC16presentTextModal4with10completionyAA15DialogViewModelC_ys6ResultOyyts5Error_pGctF", + "usr": "s:13ApptentiveKit20InteractionPresenterC16presentTextModal4withyAA15DialogViewModelC_tYaKF", + "mangledName": "$s13ApptentiveKit20InteractionPresenterC16presentTextModal4withyAA15DialogViewModelC_tYaKF", "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", "name": "presentViewController", - "printedName": "presentViewController(_:completion:)", + "printedName": "presentViewController(_:)", "children": [ { "kind": "TypeNominal", @@ -23797,40 +22279,15 @@ "name": "UIViewController", "printedName": "UIKit.UIViewController", "usr": "c:objc(cs)UIViewController" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit20InteractionPresenterC21presentViewController_10completionySo06UIViewG0C_yycSgtKF", - "mangledName": "$s13ApptentiveKit20InteractionPresenterC21presentViewController_10completionySo06UIViewG0C_yycSgtKF", + "usr": "s:13ApptentiveKit20InteractionPresenterC21presentViewControlleryySo06UIViewG0CYaKF", + "mangledName": "$s13ApptentiveKit20InteractionPresenterC21presentViewControlleryySo06UIViewG0CYaKF", "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23862,6 +22319,7 @@ "mangledName": "$s13ApptentiveKit20InteractionPresenterC33validatedPresentingViewControllerSo06UIViewH0CSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23911,6 +22369,7 @@ "mangledName": "$s13ApptentiveKit20InteractionPresenterC31messageCenterCurrentlyPresentedSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23958,6 +22417,7 @@ "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -23970,7 +22430,31 @@ "isOpen": true, "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } ] }, { @@ -24140,6 +22624,38 @@ "usr": "s:13ApptentiveKit25InteractionPresenterErrorO26noPresentingViewControlleryA2CmF", "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO26noPresentingViewControlleryA2CmF", "moduleName": "ApptentiveKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InteractionPresenterError", + "printedName": "ApptentiveKit.InteractionPresenterError", + "usr": "s:13ApptentiveKit25InteractionPresenterErrorO" + }, + { + "kind": "TypeNominal", + "name": "InteractionPresenterError", + "printedName": "ApptentiveKit.InteractionPresenterError", + "usr": "s:13ApptentiveKit25InteractionPresenterErrorO" + } + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit25InteractionPresenterErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO2eeoiySbAC_ACtFZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" } ], "declKind": "Enum", @@ -24151,6 +22667,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Error", @@ -24158,12 +22688,26 @@ "usr": "s:s5ErrorP", "mangledName": "$ss5ErrorP" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, { "kind": "Conformance", "name": "Sendable", "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, @@ -24177,16 +22721,6 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "Import", "name": "UIKit", @@ -24257,6 +22791,16 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "PhotosUI", @@ -24264,7 +22808,7 @@ "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ - "RawDocComment" + "Preconcurrency" ] }, { @@ -24301,6 +22845,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -24313,8 +22864,8 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "OSLog", + "printedName": "OSLog", "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ @@ -24326,11 +22877,25 @@ "name": "UIKit", "printedName": "UIKit", "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment" ] }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "TypeDecl", "name": "DialogViewModelDelegate", @@ -24366,6 +22931,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.DialogViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -24387,6 +22955,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.DialogViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" } @@ -24399,7 +22970,24 @@ "sugared_genericSig": "", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + } ] }, { @@ -24415,24 +23003,25 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15DialogViewModelC5titleSSSgvp", - "mangledName": "$s13ApptentiveKit15DialogViewModelC5titleSSSgvp", + "usr": "s:13ApptentiveKit15DialogViewModelC5title10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15DialogViewModelC5title10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24448,21 +23037,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15DialogViewModelC5titleSSSgvg", - "mangledName": "$s13ApptentiveKit15DialogViewModelC5titleSSSgvg", + "usr": "s:13ApptentiveKit15DialogViewModelC5title10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15DialogViewModelC5title10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -24480,24 +23069,25 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15DialogViewModelC7messageSSSgvp", - "mangledName": "$s13ApptentiveKit15DialogViewModelC7messageSSSgvp", + "usr": "s:13ApptentiveKit15DialogViewModelC7message10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15DialogViewModelC7message10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24513,21 +23103,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15DialogViewModelC7messageSSSgvg", - "mangledName": "$s13ApptentiveKit15DialogViewModelC7messageSSSgvg", + "usr": "s:13ApptentiveKit15DialogViewModelC7message10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15DialogViewModelC7message10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -24555,6 +23145,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24612,6 +23203,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24669,6 +23261,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24755,6 +23348,7 @@ "mangledName": "$s13ApptentiveKit15DialogViewModelC5imageAC5ImageOvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24842,6 +23436,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24928,6 +23523,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "ReferenceOwnership", "AccessControl", @@ -25037,6 +23633,7 @@ "mangledName": "$s13ApptentiveKit15DialogViewModelC14buttonSelected2atySi_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -25058,6 +23655,7 @@ "mangledName": "$s13ApptentiveKit15DialogViewModelC6launchyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -25079,6 +23677,7 @@ "mangledName": "$s13ApptentiveKit15DialogViewModelC6cancelyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -25275,6 +23874,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -25404,12 +24017,12 @@ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.DialogViewModel.Image.Type) -> (UIKit.UIImage, Swift.String, ApptentiveKit.DialogViewModel.Image.Layout, CoreGraphics.CGFloat) -> ApptentiveKit.DialogViewModel.Image", + "printedName": "(ApptentiveKit.DialogViewModel.Image.Type) -> (UIKit.UIImage, Swift.String, ApptentiveKit.DialogViewModel.Image.Layout) -> ApptentiveKit.DialogViewModel.Image", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(UIKit.UIImage, Swift.String, ApptentiveKit.DialogViewModel.Image.Layout, CoreGraphics.CGFloat) -> ApptentiveKit.DialogViewModel.Image", + "printedName": "(UIKit.UIImage, Swift.String, ApptentiveKit.DialogViewModel.Image.Layout) -> ApptentiveKit.DialogViewModel.Image", "children": [ { "kind": "TypeNominal", @@ -25420,7 +24033,7 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout, maxHeight: CoreGraphics.CGFloat)", + "printedName": "(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout)", "children": [ { "kind": "TypeNominal", @@ -25439,12 +24052,6 @@ "name": "Layout", "printedName": "ApptentiveKit.DialogViewModel.Image.Layout", "usr": "s:13ApptentiveKit15DialogViewModelC5ImageO6LayoutO" - }, - { - "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" } ] } @@ -25467,8 +24074,8 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit15DialogViewModelC5ImageO6loadedyAESo7UIImageC_SSAE6LayoutO14CoreFoundation7CGFloatVtcAEmF", - "mangledName": "$s13ApptentiveKit15DialogViewModelC5ImageO6loadedyAESo7UIImageC_SSAE6LayoutO12CoreGraphics7CGFloatVtcAEmF", + "usr": "s:13ApptentiveKit15DialogViewModelC5ImageO6loadedyAESo7UIImageC_SSAE6LayoutOtcAEmF", + "mangledName": "$s13ApptentiveKit15DialogViewModelC5ImageO6loadedyAESo7UIImageC_SSAE6LayoutOtcAEmF", "moduleName": "ApptentiveKit" }, { @@ -25707,6 +24314,20 @@ ], "enumRawTypeName": "String", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -25787,6 +24408,20 @@ ], "isFromExtension": true, "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -25923,8 +24558,8 @@ } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvp", - "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvp", + "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyyYbScMYccvp", + "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyyYbScMYccvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", @@ -25959,8 +24594,8 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvg", - "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvg", + "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyyYbScMYccvg", + "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyyYbScMYccvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -26205,6 +24840,20 @@ ], "enumRawTypeName": "String", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -26253,7 +24902,23 @@ "RawDocComment" ], "isFromExtension": true, - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } + ] } ], "declKind": "Class", @@ -26262,9 +24927,33 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { "kind": "Import", @@ -26309,8 +24998,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26389,8 +25079,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26469,8 +25160,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26549,8 +25241,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26637,8 +25330,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26733,8 +25427,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26813,8 +25508,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26893,8 +25589,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26973,8 +25670,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -27053,8 +25751,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -27133,8 +25832,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -27215,6 +25915,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override", "AccessControl", @@ -27242,45 +25943,13 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override", "AccessControl", "RawDocComment" ], "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(frame:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DialogView", - "printedName": "ApptentiveKit.DialogView", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogView" - }, - { - "kind": "TypeNominal", - "name": "CGRect", - "printedName": "CoreFoundation.CGRect", - "usr": "c:@S@CGRect" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)initWithFrame:", - "mangledName": "$s13ApptentiveKit10DialogViewC5frameACSo6CGRectV_tcfc", - "moduleName": "ApptentiveKit", - "overriding": true, - "implicit": true, - "objc_name": "initWithFrame:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override" - ], - "init_kind": "Designated" } ], "declKind": "Class", @@ -27288,6 +25957,7 @@ "mangledName": "$s13ApptentiveKit10DialogViewC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Preconcurrency", "Custom", "AccessControl", "RawDocComment", @@ -27295,12 +25965,27 @@ ], "superclassUsr": "c:objc(cs)UIView", "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, "superclassNames": [ "UIKit.UIView", "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -27370,6 +26055,13 @@ "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, @@ -27450,6 +26142,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "UIKit", @@ -27540,6 +26239,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "TypeDecl", "name": "ApptentiveAuthenticationFailureReason", @@ -28134,6 +26840,20 @@ ], "enumRawTypeName": "Int", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -28373,6 +27093,7 @@ "deprecated": true, "implicit": true, "declAttributes": [ + "Available", "Available" ], "accessorKind": "_modify" @@ -28473,6 +27194,7 @@ "deprecated": true, "implicit": true, "declAttributes": [ + "Available", "Available" ], "accessorKind": "_modify" @@ -28481,8 +27203,8 @@ }, { "kind": "Var", - "name": "baseURL", - "printedName": "baseURL", + "name": "overrideBaseURL", + "printedName": "overrideBaseURL", "children": [ { "kind": "TypeNominal", @@ -28500,16 +27222,14 @@ } ], "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)baseURL", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvp", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)overrideBaseURL", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC15overrideBaseURL10Foundation0F0VSgvp", "moduleName": "ApptentiveKit", - "deprecated": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", "ObjC", - "Available", "RawDocComment" ], "hasStorage": true, @@ -28535,8 +27255,8 @@ } ], "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)baseURL", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvg", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)overrideBaseURL", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC15overrideBaseURL10Foundation0F0VSgvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -28570,8 +27290,130 @@ } ], "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setBaseURL:", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvs", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setOverrideBaseURL:", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC15overrideBaseURL10Foundation0F0VSgvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A13ConfigurationC15overrideBaseURL10Foundation0F0VSgvM", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC15overrideBaseURL10Foundation0F0VSgvM", + "moduleName": "ApptentiveKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "region", + "printedName": "region", + "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)region", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC6regionSSSgvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)region", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC6regionSSSgvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setRegion:", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC6regionSSSgvs", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -28591,8 +27433,8 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvM", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvM", + "usr": "s:13ApptentiveKit0A13ConfigurationC6regionSSSgvM", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC6regionSSSgvM", "moduleName": "ApptentiveKit", "deprecated": true, "implicit": true, @@ -28851,354 +27693,6 @@ } ] }, - { - "kind": "Var", - "name": "appID", - "printedName": "appID", - "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)appID", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "ObjC", - "Available", - "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)appID", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setAppID:", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A13ConfigurationC5appIDSSSgvM", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "showInfoButton", - "printedName": "showInfoButton", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)showInfoButton", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "ObjC", - "Available", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)showInfoButton", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setShowInfoButton:", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvM", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "surveyTermsAndConditions", - "printedName": "surveyTermsAndConditions", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", - "children": [ - { - "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)surveyTermsAndConditions", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "ObjC", - "Available", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", - "children": [ - { - "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)surveyTermsAndConditions", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", - "children": [ - { - "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setSurveyTermsAndConditions:", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvM", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" - } - ] - }, { "kind": "Constructor", "name": "init", @@ -29323,6 +27817,20 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -29376,35 +27884,35 @@ }, { "kind": "TypeDecl", - "name": "ApptentivePushProvider", - "printedName": "ApptentivePushProvider", + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveLogLevel", "children": [ { "kind": "Var", - "name": "apptentive", - "printedName": "apptentive", + "name": "undefined", + "printedName": "undefined", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider", + "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentivePushProvider.Type", + "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ] } @@ -29412,8 +27920,8 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderApptentive", - "mangledName": "$s13ApptentiveKit0A12PushProviderO10apptentiveyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelUndefined", + "mangledName": "$s13ApptentiveKit0A8LogLevelO9undefinedyA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", @@ -29423,30 +27931,30 @@ }, { "kind": "Var", - "name": "urbanAirship", - "printedName": "urbanAirship", + "name": "crit", + "printedName": "crit", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider", + "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentivePushProvider.Type", + "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ] } @@ -29454,8 +27962,8 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderUrbanAirship", - "mangledName": "$s13ApptentiveKit0A12PushProviderO12urbanAirshipyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelCrit", + "mangledName": "$s13ApptentiveKit0A8LogLevelO4crityA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", @@ -29465,30 +27973,30 @@ }, { "kind": "Var", - "name": "amazonSNS", - "printedName": "amazonSNS", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider", + "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentivePushProvider.Type", + "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ] } @@ -29496,8 +28004,8 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderAmazonSNS", - "mangledName": "$s13ApptentiveKit0A12PushProviderO9amazonSNSyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelError", + "mangledName": "$s13ApptentiveKit0A8LogLevelO5erroryA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", @@ -29507,30 +28015,30 @@ }, { "kind": "Var", - "name": "parse", - "printedName": "parse", + "name": "warn", + "printedName": "warn", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider", + "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentivePushProvider.Type", + "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ] } @@ -29538,8 +28046,8 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderParse", - "mangledName": "$s13ApptentiveKit0A12PushProviderO5parseyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelWarn", + "mangledName": "$s13ApptentiveKit0A8LogLevelO4warnyA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", @@ -29547,138 +28055,10 @@ ], "fixedbinaryorder": 3 }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.ApptentivePushProvider?", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A12PushProviderO8rawValueACSgSi_tcfc", - "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueACSgSi_tcfc", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit0A12PushProviderO8rawValueSivp", - "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueSivp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A12PushProviderO8rawValueSivg", - "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueSivg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider", - "mangledName": "$s13ApptentiveKit0A12PushProviderO", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "ObjC", - "Available" - ], - "enumRawTypeName": "Int", - "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": "TypeDecl", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveLogLevel", - "children": [ { "kind": "Var", - "name": "undefined", - "printedName": "undefined", + "name": "info", + "printedName": "info", "children": [ { "kind": "TypeFunc", @@ -29708,19 +28088,19 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelUndefined", - "mangledName": "$s13ApptentiveKit0A8LogLevelO9undefinedyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelInfo", + "mangledName": "$s13ApptentiveKit0A8LogLevelO4infoyA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", "ObjC" ], - "fixedbinaryorder": 0 + "fixedbinaryorder": 4 }, { "kind": "Var", - "name": "crit", - "printedName": "crit", + "name": "debug", + "printedName": "debug", "children": [ { "kind": "TypeFunc", @@ -29750,19 +28130,19 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelCrit", - "mangledName": "$s13ApptentiveKit0A8LogLevelO4crityA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelDebug", + "mangledName": "$s13ApptentiveKit0A8LogLevelO5debugyA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", "ObjC" ], - "fixedbinaryorder": 1 + "fixedbinaryorder": 5 }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "verbose", + "printedName": "verbose", "children": [ { "kind": "TypeFunc", @@ -29792,176 +28172,8 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelError", - "mangledName": "$s13ApptentiveKit0A8LogLevelO5erroryA2CmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 2 - }, - { - "kind": "Var", - "name": "warn", - "printedName": "warn", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelWarn", - "mangledName": "$s13ApptentiveKit0A8LogLevelO4warnyA2CmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 3 - }, - { - "kind": "Var", - "name": "info", - "printedName": "info", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelInfo", - "mangledName": "$s13ApptentiveKit0A8LogLevelO4infoyA2CmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 4 - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelDebug", - "mangledName": "$s13ApptentiveKit0A8LogLevelO5debugyA2CmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 5 - }, - { - "kind": "Var", - "name": "verbose", - "printedName": "verbose", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelVerbose", - "mangledName": "$s13ApptentiveKit0A8LogLevelO7verboseyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelVerbose", + "mangledName": "$s13ApptentiveKit0A8LogLevelO7verboseyA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", @@ -30054,6 +28266,20 @@ ], "enumRawTypeName": "UInt", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -30092,106 +28318,331 @@ } ] }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "CoreTelephony", + "printedName": "CoreTelephony", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "TermsAndConditions", - "printedName": "TermsAndConditions", + "name": "DialogButton", + "printedName": "DialogButton", "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(bodyText:linkText:linkURL:)", + "kind": "Var", + "name": "titleFont", + "printedName": "titleFont", "children": [ { "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - }, + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" + } + ], + "declKind": "Var", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)titleFont", + "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "HasInitialValue", + "Preconcurrency", + "Custom", + "HasStorage", + "Dynamic", + "AccessControl", + "ObjC", + "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": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)titleFont", + "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setTitleFont:", + "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit18TermsAndConditionsC8bodyText04linkG00H3URLACSSSg_AG10Foundation0I0VSgtcfc", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyText04linkG00H3URLACSSSg_AG10Foundation0I0VSgtcfc", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "bodyText", - "printedName": "bodyText", + "name": "cornerRadius", + "printedName": "cornerRadius", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvp", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvp", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)cornerRadius", + "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvp", "moduleName": "ApptentiveKit", "declAttributes": [ - "Final", + "HasInitialValue", + "Preconcurrency", + "Custom", "HasStorage", - "AccessControl" + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -30201,61 +28652,78 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvg", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvg", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)cornerRadius", + "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setCornerRadius:", + "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } ] }, { "kind": "Var", - "name": "linkText", - "printedName": "linkText", + "name": "borderWidth", + "printedName": "borderWidth", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvp", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvp", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderWidth", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvp", "moduleName": "ApptentiveKit", "declAttributes": [ - "Final", + "HasInitialValue", + "Preconcurrency", + "Custom", "HasStorage", - "AccessControl" + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -30265,62 +28733,160 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvg", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvg", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderWidth", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderWidth:", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } ] }, { "kind": "Var", - "name": "linkURL", - "printedName": "linkURL", + "name": "borderColor", + "printedName": "borderColor", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Var", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderColor", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "HasInitialValue", + "Preconcurrency", + "Custom", + "HasStorage", + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderColor", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderColor:", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "intrinsicContentSize", + "printedName": "intrinsicContentSize", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvp", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvp", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)intrinsicContentSize", + "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvp", "moduleName": "ApptentiveKit", + "overriding": true, + "objc_name": "intrinsicContentSize", "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "AccessControl", + "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -30329,73 +28895,118 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvg", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvg", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)intrinsicContentSize", + "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvg", "moduleName": "ApptentiveKit", - "implicit": true, + "overriding": true, + "objc_name": "intrinsicContentSize", "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", "children": [ { "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions(im)init", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsCACycfc", + "declKind": "Func", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)layoutSubviews", + "mangledName": "$s13ApptentiveKit12DialogButtonC14layoutSubviewsyyF", "moduleName": "ApptentiveKit", "overriding": true, - "implicit": true, - "objc_name": "init", + "objc_name": "layoutSubviews", "declAttributes": [ "Dynamic", "ObjC", - "Override" + "Preconcurrency", + "Custom", + "Override", + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didMoveToWindow", + "printedName": "didMoveToWindow()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)didMoveToWindow", + "mangledName": "$s13ApptentiveKit12DialogButtonC15didMoveToWindowyyF", + "moduleName": "ApptentiveKit", + "overriding": true, + "objc_name": "didMoveToWindow", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton", + "mangledName": "$s13ApptentiveKit12DialogButtonC", "moduleName": "ApptentiveKit", - "deprecated": true, "declAttributes": [ + "Preconcurrency", + "Custom", "AccessControl", - "Available", + "RawDocComment", "ObjC" ], - "superclassUsr": "c:objc(cs)NSObject", + "superclassUsr": "c:objc(cs)UIButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, "superclassNames": [ + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -30444,1052 +29055,1116 @@ "printedName": "CustomDebugStringConvertible", "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ApptentiveStyle", - "printedName": "ApptentiveStyle", - "children": [ + }, { - "kind": "Function", - "name": "font", - "printedName": "font(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A5StyleP4font3forSo6UIFontCAA0aC10IdentifierO_tF", - "mangledName": "$s13ApptentiveKit0A5StyleP4font3forSo6UIFontCAA0aC10IdentifierO_tF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveStyle>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { - "kind": "Function", - "name": "color", - "printedName": "color(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A5StyleP5color3forSo7UIColorCAA0aC10IdentifierO_tF", - "mangledName": "$s13ApptentiveKit0A5StyleP5color3forSo7UIColorCAA0aC10IdentifierO_tF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveStyle>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } - ], - "declKind": "Protocol", - "usr": "s:13ApptentiveKit0A5StyleP", - "mangledName": "$s13ApptentiveKit0A5StyleP", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" ] }, { "kind": "TypeDecl", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveStyleIdentifier", - "children": [ + "name": "DismissButton", + "printedName": "DismissButton", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)DismissButton", + "mangledName": "$s13ApptentiveKit13DismissButtonC", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ApptentiveKit.DialogButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ { - "kind": "Var", - "name": "body", - "printedName": "body", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO4bodyyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO4bodyyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { - "kind": "Var", - "name": "headerTitle", - "printedName": "headerTitle", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO11headerTitleyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO11headerTitleyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { - "kind": "Var", - "name": "headerMessage", - "printedName": "headerMessage", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO13headerMessageyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13headerMessageyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "messageDate", - "printedName": "messageDate", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO11messageDateyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO11messageDateyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "Var", - "name": "messageSender", - "printedName": "messageSender", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO13messageSenderyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13messageSenderyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { - "kind": "Var", - "name": "messageStatus", - "printedName": "messageStatus", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO13messageStatusyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13messageStatusyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" }, { - "kind": "Var", - "name": "messageCenterStatus", - "printedName": "messageCenterStatus", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO19messageCenterStatusyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO19messageCenterStatusyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" }, { - "kind": "Var", - "name": "surveyInstructions", - "printedName": "surveyInstructions", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO18surveyInstructionsyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO18surveyInstructionsyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { - "kind": "Var", - "name": "doneButton", - "printedName": "doneButton", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO10doneButtonyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO10doneButtonyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { - "kind": "Var", - "name": "button", - "printedName": "button", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO6buttonyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO6buttonyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { - "kind": "Var", - "name": "submitButton", - "printedName": "submitButton", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO12submitButtonyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO12submitButtonyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" }, { - "kind": "Var", - "name": "textInput", - "printedName": "textInput", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO9textInputyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9textInputyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { - "kind": "Var", - "name": "headerBackground", - "printedName": "headerBackground", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO16headerBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO16headerBackgroundyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "InteractionButton", + "printedName": "InteractionButton", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)InteractionButton", + "mangledName": "$s13ApptentiveKit17InteractionButtonC", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ApptentiveKit.DialogButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { - "kind": "Var", - "name": "footerBackground", - "printedName": "footerBackground", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO16footerBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO16footerBackgroundyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "YesButton", + "printedName": "YesButton", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)YesButton", + "mangledName": "$s13ApptentiveKit9YesButtonC", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ApptentiveKit.DialogButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoButton", + "printedName": "NoButton", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)NoButton", + "mangledName": "$s13ApptentiveKit8NoButtonC", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ApptentiveKit.DialogButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "Var", - "name": "failure", - "printedName": "failure", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO7failureyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO7failureyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { - "kind": "Var", - "name": "separator", - "printedName": "separator", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO9separatoryA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9separatoryA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "Import", + "name": "CryptoKit", + "printedName": "CryptoKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "MobileCoreServices", + "printedName": "MobileCoreServices", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "QuickLookThumbnailing", + "printedName": "QuickLookThumbnailing", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UniformTypeIdentifiers", + "printedName": "UniformTypeIdentifiers", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "CoreTelephony", + "printedName": "CoreTelephony", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "TypeDecl", + "name": "ApptentiveNavigationController", + "printedName": "ApptentiveNavigationController", + "children": [ { "kind": "Var", - "name": "background", - "printedName": "background", + "name": "preferredStatusBarStyle", + "printedName": "preferredStatusBarStyle", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "UIStatusBarStyle", + "printedName": "UIKit.UIStatusBarStyle", + "usr": "c:@E@UIStatusBarStyle" } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO10backgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO10backgroundyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "collectionBackground", - "printedName": "collectionBackground", - "children": [ + "declKind": "Var", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(py)preferredStatusBarStyle", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvp", + "moduleName": "ApptentiveKit", + "overriding": true, + "objc_name": "preferredStatusBarStyle", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] + "name": "UIStatusBarStyle", + "printedName": "UIKit.UIStatusBarStyle", + "usr": "c:@E@UIStatusBarStyle" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)preferredStatusBarStyle", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvg", + "moduleName": "ApptentiveKit", + "overriding": true, + "objc_name": "preferredStatusBarStyle", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO20collectionBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO20collectionBackgroundyA2CmF", - "moduleName": "ApptentiveKit" + ] }, { "kind": "Var", - "name": "textInputBackground", - "printedName": "textInputBackground", + "name": "prefersLargeHeader", + "printedName": "prefersLargeHeader", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO19textInputBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO19textInputBackgroundyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "textInputPlaceholder", - "printedName": "textInputPlaceholder", - "children": [ + "declKind": "Var", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cpy)prefersLargeHeader", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO20textInputPlaceholderyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO20textInputPlaceholderyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "messageBackground", - "printedName": "messageBackground", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)prefersLargeHeader", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO17messageBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO17messageBackgroundyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "replyBackground", - "printedName": "replyBackground", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)setPrefersLargeHeader:", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO15replyBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO15replyBackgroundyA2CmF", - "moduleName": "ApptentiveKit" + ] }, { - "kind": "Var", - "name": "contextBackground", - "printedName": "contextBackground", + "kind": "Constructor", + "name": "init", + "printedName": "init(navigationBarClass:toolbarClass:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", + "kind": "TypeNominal", + "name": "ApptentiveNavigationController", + "printedName": "ApptentiveKit.ApptentiveNavigationController", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any AnyObject.Type)?", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, + "name": "ExistentialMetatype", + "printedName": "any AnyObject.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any AnyObject.Type)?", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", + "name": "ExistentialMetatype", + "printedName": "any AnyObject.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" + "name": "ProtocolComposition", + "printedName": "AnyObject" } ] } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO17contextBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO17contextBackgroundyA2CmF", - "moduleName": "ApptentiveKit" + "declKind": "Constructor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNavigationBarClass:toolbarClass:", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18navigationBarClass07toolbarG0ACyXlXpSg_AFtcfc", + "moduleName": "ApptentiveKit", + "overriding": true, + "implicit": true, + "intro_iOS": "5.0", + "objc_name": "initWithNavigationBarClass:toolbarClass:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "Available" + ], + "init_kind": "Designated" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(rootViewController:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" + "name": "ApptentiveNavigationController", + "printedName": "ApptentiveKit.ApptentiveNavigationController", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" }, { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO2eeoiySbAC_ACtFZ", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO2eeoiySbAC_ACtFZ", + "declKind": "Constructor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithRootViewController:", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC08rootViewD0ACSo06UIViewD0C_tcfc", "moduleName": "ApptentiveKit", - "static": true, + "overriding": true, "implicit": true, - "funcSelfKind": "NonMutating" + "objc_name": "initWithRootViewController:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "Constructor", + "name": "init", + "printedName": "init(nibName:bundle:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO9hashValueSivp", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9hashValueSivp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ + "name": "ApptentiveNavigationController", + "printedName": "ApptentiveKit.ApptentiveNavigationController", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO9hashValueSivg", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9hashValueSivg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" + "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" } - ] + ], + "declKind": "Constructor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNibName:bundle:", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", + "moduleName": "ApptentiveKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithNibName:bundle:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override" + ], + "init_kind": "Designated" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ApptentiveKit.ApptentiveNavigationController?", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveNavigationController", + "printedName": "ApptentiveKit.ApptentiveNavigationController", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO4hash4intoys6HasherVz_tF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO4hash4intoys6HasherVz_tF", + "declKind": "Constructor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithCoder:", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC5coderACSgSo7NSCoderC_tcfc", "moduleName": "ApptentiveKit", + "overriding": true, "implicit": true, - "funcSelfKind": "NonMutating" + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Required" + ], + "init_kind": "Designated" } ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC", "moduleName": "ApptentiveKit", - "deprecated": true, "declAttributes": [ + "Preconcurrency", + "Custom", "AccessControl", - "Available" + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UINavigationController", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UINavigationController", + "UIKit.UIViewController", + "UIKit.UIResponder", + "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -31503,232 +30178,227 @@ "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": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "SwiftUI", + "printedName": "SwiftUI", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "DeveloperToolsSupport", + "printedName": "DeveloperToolsSupport", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "TypeDecl", - "name": "ApptentiveStyleSheet", - "printedName": "ApptentiveStyleSheet", - "children": [ + "name": "URLSession", + "printedName": "URLSession", + "declKind": "Class", + "usr": "c:objc(cs)NSURLSession", + "moduleName": "Foundation", + "isOpen": true, + "intro_iOS": "7.0", + "objc_name": "NSURLSession", + "declAttributes": [ + "Available", + "ObjC", + "SynthesizedProtocol", + "NonSendable", + "Sendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ { - "kind": "Function", - "name": "font", - "printedName": "font(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A10StyleSheetC4font3forSo6UIFontCAA0aC10IdentifierO_tF", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC4font3forSo6UIFontCAA0aC10IdentifierO_tF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { - "kind": "Function", - "name": "color", - "printedName": "color(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A10StyleSheetC5color3forSo7UIColorCAA0aC10IdentifierO_tF", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC5color3forSo7UIColorCAA0aC10IdentifierO_tF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(contentsOf:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.ApptentiveStyleSheet?", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleSheet", - "printedName": "ApptentiveKit.ApptentiveStyleSheet", - "usr": "s:13ApptentiveKit0A10StyleSheetC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A10StyleSheetC10contentsOfACSg10Foundation3URLV_tcfc", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC10contentsOfACSg10Foundation3URLV_tcfc", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Convenience", - "AccessControl", - "Available" - ], - "init_kind": "Convenience" + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { - "kind": "Var", - "name": "fontFamily", - "printedName": "fontFamily", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasStorage", - "AccessControl", - "Available" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvg", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit0A10StyleSheetC10fontFamilySSvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" - } - ] + "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": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Logger", + "printedName": "Logger", + "children": [ { "kind": "Var", - "name": "lightFaceAttribute", - "printedName": "lightFaceAttribute", + "name": "default", + "printedName": "default", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvp", + "usr": "s:2os6LoggerV13ApptentiveKitE7defaultACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7defaultACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -31738,113 +30408,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvg", + "usr": "s:2os6LoggerV13ApptentiveKitE7defaultACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7defaultACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": 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:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "regularFaceAttribute", - "printedName": "regularFaceAttribute", + "name": "engagement", + "printedName": "engagement", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvp", + "usr": "s:2os6LoggerV13ApptentiveKitE10engagementACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE10engagementACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -31854,113 +30458,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvg", + "usr": "s:2os6LoggerV13ApptentiveKitE10engagementACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE10engagementACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": 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:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "mediumFaceAttribute", - "printedName": "mediumFaceAttribute", + "name": "interaction", + "printedName": "interaction", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvp", + "usr": "s:2os6LoggerV13ApptentiveKitE11interactionACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE11interactionACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -31970,113 +30508,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvg", + "usr": "s:2os6LoggerV13ApptentiveKitE11interactionACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE11interactionACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": 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:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "boldFaceAttribute", - "printedName": "boldFaceAttribute", + "name": "network", + "printedName": "network", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvp", + "usr": "s:2os6LoggerV13ApptentiveKitE7networkACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7networkACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32086,104 +30558,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvg", + "usr": "s:2os6LoggerV13ApptentiveKitE7networkACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7networkACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": 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:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "primaryColor", - "printedName": "primaryColor", + "name": "payload", + "printedName": "payload", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvp", + "usr": "s:2os6LoggerV13ApptentiveKitE7payloadACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7payloadACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32193,88 +30608,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvg", + "usr": "s:2os6LoggerV13ApptentiveKitE7payloadACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7payloadACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondaryColor", - "printedName": "secondaryColor", + "name": "targeting", + "printedName": "targeting", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvp", + "usr": "s:2os6LoggerV13ApptentiveKitE9targetingACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE9targetingACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32284,88 +30658,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvg", + "usr": "s:2os6LoggerV13ApptentiveKitE9targetingACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE9targetingACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "failureColor", - "printedName": "failureColor", + "name": "messages", + "printedName": "messages", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvp", + "usr": "s:2os6LoggerV13ApptentiveKitE8messagesACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE8messagesACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32375,88 +30708,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvM", + "usr": "s:2os6LoggerV13ApptentiveKitE8messagesACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE8messagesACvgZ", "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "backgroundColor", - "printedName": "backgroundColor", + "name": "attachments", + "printedName": "attachments", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvp", + "usr": "s:2os6LoggerV13ApptentiveKitE11attachmentsACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE11attachmentsACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32466,88 +30758,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvg", + "usr": "s:2os6LoggerV13ApptentiveKitE11attachmentsACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE11attachmentsACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "separatorColor", - "printedName": "separatorColor", + "name": "resources", + "printedName": "resources", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvp", + "usr": "s:2os6LoggerV13ApptentiveKitE9resourcesACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE9resourcesACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32557,1077 +30808,1288 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvg", + "usr": "s:2os6LoggerV13ApptentiveKitE9resourcesACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE9resourcesACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Struct", + "usr": "s:2os6LoggerV", + "mangledName": "$s2os6LoggerV", + "moduleName": "os", + "intro_Macosx": "11.0", + "intro_iOS": "14.0", + "intro_tvOS": "14.0", + "intro_watchOS": "7.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "CustomDataCompatible", + "printedName": "CustomDataCompatible", + "usr": "s:13ApptentiveKit20CustomDataCompatibleP", + "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" + }, + { + "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": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" }, { - "kind": "Var", - "name": "collectionBackgroundColor", - "printedName": "collectionBackgroundColor", + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", "children": [ { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] } ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasStorage", - "AccessControl", - "Available" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "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": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:SK", + "mangledName": "$sSK" }, { - "kind": "Var", - "name": "placeholderColor", - "printedName": "placeholderColor", + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", "children": [ { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasStorage", - "AccessControl", - "Available" - ], - "hasStorage": true, - "accessors": [ + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:ST", + "mangledName": "$sST" }, { - "kind": "Var", - "name": "sizeAdjustment", - "printedName": "sizeAdjustment", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", "children": [ { - "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasStorage", - "AccessControl", - "Available" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:Sy", + "mangledName": "$sSy" }, { - "kind": "Function", - "name": "setFontDescriptor", - "printedName": "setFontDescriptor(_:forStyle:)", + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIFontDescriptor", - "printedName": "UIKit.UIFontDescriptor", - "usr": "c:objc(cs)UIFontDescriptor" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A10StyleSheetC17setFontDescriptor_03forC0ySo06UIFontG0C_SStF", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC17setFontDescriptor_03forC0ySo06UIFontG0C_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" }, { - "kind": "Function", - "name": "setColor", - "printedName": "setColor(_:forStyle:)", + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A10StyleSheetC8setColor_03forC0ySo7UIColorC_SStF", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC8setColor_03forC0ySo7UIColorC_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:13ApptentiveKit0A10StyleSheetC", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, { "kind": "Conformance", - "name": "ApptentiveStyle", - "printedName": "ApptentiveStyle", - "usr": "s:13ApptentiveKit0A5StyleP", - "mangledName": "$s13ApptentiveKit0A5StyleP" - } - ] - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "CoreTelephony", - "printedName": "CoreTelephony", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Transferable", + "printedName": "Transferable", + "children": [ + { + "kind": "TypeWitness", + "name": "Representation", + "printedName": "Representation", + "children": [ + { + "kind": "TypeNominal", + "name": "OpaqueTypeArchetype", + "printedName": "some CoreTransferable.TransferRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "TransferRepresentation", + "printedName": "CoreTransferable.TransferRepresentation", + "usr": "s:16CoreTransferable22TransferRepresentationP" + } + ] + } + ] + } + ], + "usr": "s:16CoreTransferable0B0P", + "mangledName": "$s16CoreTransferable0B0P" + } ] }, { "kind": "TypeDecl", - "name": "DialogButton", - "printedName": "DialogButton", - "children": [ + "name": "Double", + "printedName": "Double", + "declKind": "Struct", + "usr": "s:Sd", + "mangledName": "$sSd", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ { - "kind": "Var", - "name": "titleFont", - "printedName": "titleFont", + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "CustomDataCompatible", + "printedName": "CustomDataCompatible", + "usr": "s:13ApptentiveKit20CustomDataCompatibleP", + "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" + }, + { + "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": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "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": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", "children": [ { - "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)titleFont", - "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "Dynamic", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", "children": [ { "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)titleFont", - "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setTitleFont:", - "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "set" + ] } - ] + ], + "usr": "s:SB", + "mangledName": "$sSB" }, { - "kind": "Var", - "name": "cornerRadius", - "printedName": "cornerRadius", + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", "children": [ { - "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] } ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)cornerRadius", - "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "Dynamic", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)cornerRadius", - "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - }, + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setCornerRadius:", - "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "set" + ] } - ] + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" }, { - "kind": "Var", - "name": "borderWidth", - "printedName": "borderWidth", + "kind": "Conformance", + "name": "_ExpressibleByBuiltinFloatLiteral", + "printedName": "_ExpressibleByBuiltinFloatLiteral", + "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", + "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" + }, + { + "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": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", "children": [ { - "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] } ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderWidth", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "Dynamic", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderWidth", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Double.SIMD2Storage", + "usr": "s:Sd12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Double.SIMD4Storage", + "usr": "s:Sd12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Double.SIMD8Storage", + "usr": "s:Sd12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Double.SIMD16Storage", + "usr": "s:Sd13SIMD16StorageV" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "SIMD32Storage", + "printedName": "Swift.Double.SIMD32Storage", + "usr": "s:Sd13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "SIMD64Storage", + "printedName": "Swift.Double.SIMD64Storage", + "usr": "s:Sd13SIMD64StorageV" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderWidth:", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "set" + ] } - ] + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" }, { - "kind": "Var", - "name": "borderColor", - "printedName": "borderColor", + "kind": "Conformance", + "name": "BitwiseCopyable", + "printedName": "BitwiseCopyable", + "usr": "s:s15BitwiseCopyableP", + "mangledName": "$ss15BitwiseCopyableP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", "children": [ { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderColor", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "Dynamic", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderColor", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - }, + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderColor:", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "set" + ] } - ] + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { - "kind": "Var", - "name": "intrinsicContentSize", - "printedName": "intrinsicContentSize", + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", "children": [ { - "kind": "TypeNominal", - "name": "CGSize", - "printedName": "CoreFoundation.CGSize", - "usr": "c:@S@CGSize" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)intrinsicContentSize", - "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvp", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "intrinsicContentSize", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "CGSize", - "printedName": "CoreFoundation.CGSize", - "usr": "c:@S@CGSize" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)intrinsicContentSize", - "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvg", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "intrinsicContentSize", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" + ] } - ] + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" }, { - "kind": "Function", - "name": "layoutSubviews", - "printedName": "layoutSubviews()", + "kind": "Conformance", + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" + }, + { + "kind": "Conformance", + "name": "Animatable", + "printedName": "Animatable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "AnimatableData", + "printedName": "AnimatableData", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] } ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)layoutSubviews", - "mangledName": "$s13ApptentiveKit12DialogButtonC14layoutSubviewsyyF", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "layoutSubviews", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "usr": "s:7SwiftUI10AnimatableP", + "mangledName": "$s7SwiftUI10AnimatableP" }, { - "kind": "Function", - "name": "didMoveToWindow", - "printedName": "didMoveToWindow()", + "kind": "Conformance", + "name": "AtomicRepresentable", + "printedName": "AtomicRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "AtomicRepresentation", + "printedName": "AtomicRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "_Atomic64BitStorage", + "printedName": "Synchronization._Atomic64BitStorage", + "usr": "s:15Synchronization19_Atomic64BitStorageV" + } + ] } ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)didMoveToWindow", - "mangledName": "$s13ApptentiveKit12DialogButtonC15didMoveToWindowyyF", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "didMoveToWindow", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "usr": "s:15Synchronization19AtomicRepresentableP", + "mangledName": "$s15Synchronization19AtomicRepresentableP" } - ], - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton", - "mangledName": "$s13ApptentiveKit12DialogButtonC", - "moduleName": "ApptentiveKit", + ] + }, + { + "kind": "TypeDecl", + "name": "Float", + "printedName": "Float", + "declKind": "Struct", + "usr": "s:Sf", + "mangledName": "$sSf", + "moduleName": "Swift", "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)UIButton", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIButton", - "UIKit.UIControl", - "UIKit.UIView", - "UIKit.UIResponder", - "ObjectiveC.NSObject" + "Frozen" ], + "isExternal": true, "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "CustomDataCompatible", + "printedName": "CustomDataCompatible", + "usr": "s:13ApptentiveKit20CustomDataCompatibleP", + "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" + }, + { + "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": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" }, { "kind": "Conformance", @@ -33638,17 +32100,10 @@ }, { "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" + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" }, { "kind": "Conformance", @@ -33666,115 +32121,182 @@ }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" }, { "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "usr": "s:SB", + "mangledName": "$sSB" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DismissButton", - "printedName": "DismissButton", - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)DismissButton", - "mangledName": "$s13ApptentiveKit13DismissButtonC", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ApptentiveKit.DialogButton", - "UIKit.UIButton", - "UIKit.UIControl", - "UIKit.UIView", - "UIKit.UIResponder", - "ObjectiveC.NSObject" - ], - "conformances": [ + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "_ExpressibleByBuiltinFloatLiteral", + "printedName": "_ExpressibleByBuiltinFloatLiteral", + "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", + "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" }, { "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" }, { "kind": "Conformance", @@ -33782,167 +32304,316 @@ "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "InteractionButton", - "printedName": "InteractionButton", - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)InteractionButton", - "mangledName": "$s13ApptentiveKit17InteractionButtonC", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ApptentiveKit.DialogButton", - "UIKit.UIButton", - "UIKit.UIControl", - "UIKit.UIView", - "UIKit.UIResponder", - "ObjectiveC.NSObject" - ], - "conformances": [ + }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Float.SIMD2Storage", + "usr": "s:Sf12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Float.SIMD4Storage", + "usr": "s:Sf12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Float.SIMD8Storage", + "usr": "s:Sf12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Float.SIMD16Storage", + "usr": "s:Sf13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Float.SIMD32Storage", + "usr": "s:Sf13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Float.SIMD64Storage", + "usr": "s:Sf13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + "name": "BitwiseCopyable", + "printedName": "BitwiseCopyable", + "usr": "s:s15BitwiseCopyableP", + "mangledName": "$ss15BitwiseCopyableP" }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, { "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" }, { "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "AtomicRepresentable", + "printedName": "AtomicRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "AtomicRepresentation", + "printedName": "AtomicRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "_Atomic32BitStorage", + "printedName": "Synchronization._Atomic32BitStorage", + "usr": "s:15Synchronization19_Atomic32BitStorageV" + } + ] + } + ], + "usr": "s:15Synchronization19AtomicRepresentableP", + "mangledName": "$s15Synchronization19AtomicRepresentableP" } ] }, { "kind": "TypeDecl", - "name": "YesButton", - "printedName": "YesButton", - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)YesButton", - "mangledName": "$s13ApptentiveKit9YesButtonC", - "moduleName": "ApptentiveKit", + "name": "Int", + "printedName": "Int", + "declKind": "Struct", + "usr": "s:Si", + "mangledName": "$sSi", + "moduleName": "Swift", "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ApptentiveKit.DialogButton", - "UIKit.UIButton", - "UIKit.UIControl", - "UIKit.UIView", - "UIKit.UIResponder", - "ObjectiveC.NSObject" + "Frozen" ], + "isExternal": true, "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "SignedInteger", + "printedName": "SignedInteger", + "usr": "s:SZ", + "mangledName": "$sSZ" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ + { + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", + "children": [ + { + "kind": "TypeNominal", + "name": "Words", + "printedName": "Swift.Int.Words", + "usr": "s:Si5WordsV" + } + ] + } + ], + "usr": "s:Sz", + "mangledName": "$sSz" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" }, { "kind": "Conformance", @@ -33953,122 +32624,174 @@ }, { "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "CustomDataCompatible", + "printedName": "CustomDataCompatible", + "usr": "s:13ApptentiveKit20CustomDataCompatibleP", + "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "NoButton", - "printedName": "NoButton", - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)NoButton", - "mangledName": "$s13ApptentiveKit8NoButtonC", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ApptentiveKit.DialogButton", - "UIKit.UIButton", - "UIKit.UIControl", - "UIKit.UIView", - "UIKit.UIResponder", - "ObjectiveC.NSObject" - ], - "conformances": [ + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" }, { "kind": "Conformance", @@ -34076,1417 +32799,705 @@ "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "MobileCoreServices", - "printedName": "MobileCoreServices", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "QuickLookThumbnailing", - "printedName": "QuickLookThumbnailing", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Sysctl", - "printedName": "Sysctl", - "children": [ + }, { - "kind": "TypeDecl", - "name": "Error", - "printedName": "Error", - "children": [ - { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Sysctl.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO7unknownyA2EmF", - "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO7unknownyA2EmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "malformedUTF8", - "printedName": "malformedUTF8", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Sysctl.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO13malformedUTF8yA2EmF", - "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO13malformedUTF8yA2EmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "invalidSize", - "printedName": "invalidSize", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Sysctl.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO11invalidSizeyA2EmF", - "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO11invalidSizeyA2EmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "posixError", - "printedName": "posixError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> (Darwin.POSIXErrorCode) -> ApptentiveKit.Sysctl.Error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Darwin.POSIXErrorCode) -> ApptentiveKit.Sysctl.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "POSIXErrorCode", - "printedName": "Darwin.POSIXErrorCode", - "usr": "c:@M@Darwin@E@POSIXErrorCode" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Sysctl.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO05posixD0yAE6Darwin14POSIXErrorCodeOcAEmF", - "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO05posixD0yAE6Darwin14POSIXErrorCodeOcAEmF", - "moduleName": "ApptentiveKit" - } - ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO", - "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "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": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" }, { - "kind": "Function", - "name": "data", - "printedName": "data(for:)", + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int8]", + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "usr": "s:Sa" + ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV4data3forSays4Int8VGSays5Int32VG_tKFZ", - "mangledName": "$s13ApptentiveKit6SysctlV4data3forSays4Int8VGSays5Int32VG_tKFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "keys", - "printedName": "keys(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "SIMD2Storage", + "printedName": "Swift.Int.SIMD2Storage", + "usr": "s:Si12SIMD2StorageV" } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV4keys3forSays5Int32VGSS_tKFZ", - "mangledName": "$s13ApptentiveKit6SysctlV4keys3forSays5Int32VGSS_tKFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(ofType:forKeys:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + ] }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.Type", + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD4Storage", + "printedName": "Swift.Int.SIMD4Storage", + "usr": "s:Si12SIMD4StorageV" } ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "SIMD8Storage", + "printedName": "Swift.Int.SIMD8Storage", + "usr": "s:Si12SIMD8StorageV" } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_Says5Int32VGtKlFZ", - "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_Says5Int32VGtKlFZ", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(ofType:forKeys:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + ] }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.Type", + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD16Storage", + "printedName": "Swift.Int.SIMD16Storage", + "usr": "s:Si13SIMD16StorageV" } ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "SIMD32Storage", + "printedName": "Swift.Int.SIMD32Storage", + "usr": "s:Si13SIMD32StorageV" } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_s5Int32VdtKlFZ", - "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_s5Int32VdtKlFZ", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(ofType:forName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + ] }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.Type", + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD64Storage", + "printedName": "Swift.Int.SIMD64Storage", + "usr": "s:Si13SIMD64StorageV" } ] - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forNamexxm_SStKlFZ", - "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forNamexxm_SStKlFZ", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" }, { - "kind": "Function", - "name": "string", - "printedName": "string(for:)", + "kind": "Conformance", + "name": "BitwiseCopyable", + "printedName": "BitwiseCopyable", + "usr": "s:s15BitwiseCopyableP", + "mangledName": "$ss15BitwiseCopyableP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV6string3forSSSays5Int32VG_tKFZ", - "mangledName": "$s13ApptentiveKit6SysctlV6string3forSSSays5Int32VG_tKFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, { - "kind": "Function", - "name": "string", - "printedName": "string(for:)", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV6string3forSSs5Int32Vd_tKFZ", - "mangledName": "$s13ApptentiveKit6SysctlV6string3forSSs5Int32Vd_tKFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "string", - "printedName": "string(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV6string3forS2S_tKFZ", - "mangledName": "$s13ApptentiveKit6SysctlV6string3forS2S_tKFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { - "kind": "Var", - "name": "hostName", - "printedName": "hostName", + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV8hostNameSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV8hostNameSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV8hostNameSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV8hostNameSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" }, { - "kind": "Var", - "name": "machine", - "printedName": "machine", + "kind": "Conformance", + "name": "AtomicRepresentable", + "printedName": "AtomicRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV7machineSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV7machineSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "AtomicRepresentation", + "printedName": "AtomicRepresentation", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "_Atomic64BitStorage", + "printedName": "Synchronization._Atomic64BitStorage", + "usr": "s:15Synchronization19_Atomic64BitStorageV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV7machineSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV7machineSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:15Synchronization19AtomicRepresentableP", + "mangledName": "$s15Synchronization19AtomicRepresentableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Bool", + "printedName": "Bool", + "declKind": "Struct", + "usr": "s:Sb", + "mangledName": "$sSb", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { - "kind": "Var", - "name": "model", - "printedName": "model", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV5modelSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV5modelSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV5modelSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV5modelSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" - } - ] + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" }, { - "kind": "Var", - "name": "activeCPUs", - "printedName": "activeCPUs", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV10activeCPUss5Int32VvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV10activeCPUss5Int32VvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV10activeCPUss5Int32VvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV10activeCPUss5Int32VvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" - } - ] + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { - "kind": "Var", - "name": "osRelease", - "printedName": "osRelease", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV9osReleaseSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV9osReleaseSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV9osReleaseSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV9osReleaseSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" - } - ] + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { - "kind": "Var", - "name": "osType", - "printedName": "osType", + "kind": "Conformance", + "name": "CustomDataCompatible", + "printedName": "CustomDataCompatible", + "usr": "s:13ApptentiveKit20CustomDataCompatibleP", + "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinBooleanLiteral", + "printedName": "_ExpressibleByBuiltinBooleanLiteral", + "usr": "s:s35_ExpressibleByBuiltinBooleanLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinBooleanLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByBooleanLiteral", + "printedName": "ExpressibleByBooleanLiteral", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV6osTypeSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV6osTypeSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "BooleanLiteralType", + "printedName": "BooleanLiteralType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV6osTypeSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV6osTypeSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:s27ExpressibleByBooleanLiteralP", + "mangledName": "$ss27ExpressibleByBooleanLiteralP" }, { - "kind": "Var", - "name": "osVersion", - "printedName": "osVersion", + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "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": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "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": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "BitwiseCopyable", + "printedName": "BitwiseCopyable", + "usr": "s:s15BitwiseCopyableP", + "mangledName": "$ss15BitwiseCopyableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV9osVersionSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV9osVersionSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV9osVersionSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV9osVersionSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { - "kind": "Var", - "name": "version", - "printedName": "version", + "kind": "Conformance", + "name": "AtomicRepresentable", + "printedName": "AtomicRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV7versionSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV7versionSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "AtomicRepresentation", + "printedName": "AtomicRepresentation", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "_Atomic8BitStorage", + "printedName": "Synchronization._Atomic8BitStorage", + "usr": "s:15Synchronization18_Atomic8BitStorageV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV7versionSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV7versionSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:15Synchronization19AtomicRepresentableP", + "mangledName": "$s15Synchronization19AtomicRepresentableP" } - ], - "declKind": "Struct", - "usr": "s:13ApptentiveKit6SysctlV", - "mangledName": "$s13ApptentiveKit6SysctlV", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "TypeDecl", - "name": "ApptentiveNavigationController", - "printedName": "ApptentiveNavigationController", - "children": [ + "name": "Date", + "printedName": "Date", + "declKind": "Struct", + "usr": "s:10Foundation4DateV", + "mangledName": "$s10Foundation4DateV", + "moduleName": "Foundation", + "intro_Macosx": "10.10", + "intro_iOS": "8.0", + "intro_tvOS": "9.0", + "intro_watchOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ { - "kind": "Var", - "name": "preferredStatusBarStyle", - "printedName": "preferredStatusBarStyle", + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "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": "ReferenceConvertible", + "printedName": "ReferenceConvertible", "children": [ { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(py)preferredStatusBarStyle", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvp", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "preferredStatusBarStyle", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", "children": [ { "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" + "name": "NSDate", + "printedName": "Foundation.NSDate", + "usr": "c:objc(cs)NSDate" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)preferredStatusBarStyle", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvg", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "preferredStatusBarStyle", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" + ] } - ] + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" }, { - "kind": "Var", - "name": "prefersLargeHeader", - "printedName": "prefersLargeHeader", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cpy)prefersLargeHeader", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "Custom", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)prefersLargeHeader", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)setPrefersLargeHeader:", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvsZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "NSDate", + "printedName": "Foundation.NSDate", + "usr": "c:objc(cs)NSDate" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(navigationBarClass:toolbarClass:)", + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", "children": [ { - "kind": "TypeNominal", - "name": "ApptentiveNavigationController", - "printedName": "ApptentiveKit.ApptentiveNavigationController", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any AnyObject.Type)?", - "children": [ - { - "kind": "TypeNominal", - "name": "ExistentialMetatype", - "printedName": "any AnyObject.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ] - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any AnyObject.Type)?", + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", "children": [ { "kind": "TypeNominal", - "name": "ExistentialMetatype", - "printedName": "any AnyObject.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ] + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNavigationBarClass:toolbarClass:", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18navigationBarClass07toolbarG0ACyXlXpSg_AFtcfc", - "moduleName": "ApptentiveKit", - "overriding": true, - "implicit": true, - "intro_iOS": "5.0", - "objc_name": "initWithNavigationBarClass:toolbarClass:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "Available" - ], - "init_kind": "Designated" - }, + "usr": "s:Sx", + "mangledName": "$sSx" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIViewController", + "printedName": "UIViewController", + "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(rootViewController:)", + "kind": "Var", + "name": "apptentiveModalPresentationStyle", + "printedName": "apptentiveModalPresentationStyle", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveNavigationController", - "printedName": "ApptentiveKit.ApptentiveNavigationController", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" + "name": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" } ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithRootViewController:", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC08rootViewD0ACSo06UIViewD0C_tcfc", + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(py)apptentiveModalPresentationStyle", + "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvp", "moduleName": "ApptentiveKit", - "overriding": true, - "implicit": true, - "objc_name": "initWithRootViewController:", + "deprecated": true, "declAttributes": [ "Dynamic", - "ObjC", + "Preconcurrency", "Custom", - "Override" + "AccessControl", + "ObjC", + "Available" ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nibName:bundle:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveNavigationController", - "printedName": "ApptentiveKit.ApptentiveNavigationController", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, + "isFromExtension": 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": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" } ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNibName:bundle:", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", - "moduleName": "ApptentiveKit", - "overriding": true, - "implicit": true, - "objc_name": "initWithNibName:bundle:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)apptentiveModalPresentationStyle", + "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvg", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.ApptentiveNavigationController?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveNavigationController", - "printedName": "ApptentiveKit.ApptentiveNavigationController", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)setApptentiveModalPresentationStyle:", + "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvs", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "set" } - ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithCoder:", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "ApptentiveKit", - "overriding": true, - "implicit": true, - "objc_name": "initWithCoder:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Required" - ], - "init_kind": "Designated" + ] } ], "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC", - "moduleName": "ApptentiveKit", + "usr": "c:objc(cs)UIViewController", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIViewController", "declAttributes": [ + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", "Custom", - "AccessControl", - "RawDocComment", - "ObjC" + "Dynamic" ], - "superclassUsr": "c:objc(cs)UINavigationController", + "superclassUsr": "c:objc(cs)UIResponder", + "isExternal": true, "inheritsConvenienceInitializers": true, "superclassNames": [ - "UIKit.UINavigationController", - "UIKit.UIViewController", "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -35543,6 +33554,13 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, { "kind": "Conformance", "name": "UITraitChangeObservable", @@ -35552,255 +33570,255 @@ } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "DeveloperToolsSupport", - "printedName": "DeveloperToolsSupport", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, { "kind": "TypeDecl", - "name": "String", - "printedName": "String", + "name": "Name", + "printedName": "Name", "children": [ { - "kind": "Function", - "name": "attributedString", - "printedName": "attributedString(withFont:alignment:)", + "kind": "Var", + "name": "apptentiveEventEngaged", + "printedName": "apptentiveEventEngaged", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableAttributedString?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSMutableAttributedString", - "printedName": "Foundation.NSMutableAttributedString", - "usr": "c:objc(cs)NSMutableAttributedString" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" - }, - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" } ], - "declKind": "Func", - "usr": "s:SS13ApptentiveKitE16attributedString8withFont9alignmentSo019NSMutableAttributedD0CSgSo6UIFontC_AA17HTMLTextAlignmentOtF", - "mangledName": "$sSS13ApptentiveKitE16attributedString8withFont9alignmentSo019NSMutableAttributedD0CSgSo6UIFontC_AA17HTMLTextAlignmentOtF", + "declKind": "Var", + "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ", + "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ", "moduleName": "ApptentiveKit", + "static": true, "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ", + "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", "declAttributes": [ - "EagerMove", - "Frozen" + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" ], + "isFromExtension": true, "isExternal": true, "conformances": [ { "kind": "Conformance", - "name": "CustomDataCompatible", - "printedName": "CustomDataCompatible", - "usr": "s:13ApptentiveKit20CustomDataCompatibleP", - "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" }, { "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + "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": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FileManager", + "printedName": "FileManager", + "declKind": "Class", + "usr": "c:objc(cs)NSFileManager", + "moduleName": "Foundation", + "isOpen": true, + "objc_name": "NSFileManager", + "declAttributes": [ + "ObjC", + "NonSendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" }, { "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" }, { "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { "kind": "Conformance", @@ -35811,427 +33829,636 @@ }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIButton", + "printedName": "UIButton", + "children": [ + { + "kind": "Var", + "name": "apptentivePillRadius", + "printedName": "apptentivePillRadius", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentivePillRadius", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentivePillRadius", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "apptentiveCornerRadius", + "printedName": "apptentiveCornerRadius", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentiveCornerRadius", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentiveCornerRadius", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)setApptentiveCornerRadius:", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE22apptentiveCornerRadius14CoreFoundation7CGFloatVvMZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:SK", - "mangledName": "$sSK" + ] }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Var", + "name": "apptentiveClose", + "printedName": "apptentiveClose", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIButton?", "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" + "name": "UIButton", + "printedName": "UIKit.UIButton", + "usr": "c:objc(cs)UIButton" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" + "name": "Optional", + "printedName": "UIKit.UIButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIButton", + "printedName": "UIKit.UIButton", + "usr": "c:objc(cs)UIButton" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", + "name": "Optional", + "printedName": "UIKit.UIButton?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UIButton", + "printedName": "UIKit.UIButton", + "usr": "c:objc(cs)UIButton" } ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" + ] }, { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", + "kind": "TypeDecl", + "name": "ApptentiveButtonStyle", + "printedName": "ApptentiveButtonStyle", "children": [ { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", + "kind": "Var", + "name": "pill", + "printedName": "pill", "children": [ { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> UIKit.UIButton.ApptentiveButtonStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + } + ] + } + ] } + ], + "declKind": "EnumElement", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" ] }, { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", + "kind": "Var", + "name": "radius", + "printedName": "radius", "children": [ { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> (CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + } + ] + } + ] } + ], + "declKind": "EnumElement", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE14CoreFoundation7CGFloatVcAEmF", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE12CoreGraphics7CGFloatVcAEmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" ] }, { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + }, + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" } - ] + ], + "declKind": "Func", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO2eeoiySbAE_AEtFZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO2eeoiySbAE_AEtFZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" } ], - "usr": "s:Sy", - "mangledName": "$sSy" + "declKind": "Enum", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] }, { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", + "kind": "Var", + "name": "apptentiveStyle", + "printedName": "apptentiveStyle", "children": [ { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" } ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ + "declKind": "Var", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "Transferable", - "printedName": "Transferable", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "Representation", - "printedName": "Representation", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "OpaqueTypeArchetype", - "printedName": "some CoreTransferable.TransferRepresentation", - "children": [ - { - "kind": "TypeNominal", - "name": "TransferRepresentation", - "printedName": "CoreTransferable.TransferRepresentation", - "usr": "s:16CoreTransferable22TransferRepresentationP" - }, - { - "kind": "TypeNominal", - "name": "Sendable", - "printedName": "Swift.Sendable", - "usr": "s:s8SendableP" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:16CoreTransferable0B0P", - "mangledName": "$s16CoreTransferable0B0P" + ] } - ] - }, - { - "kind": "TypeDecl", - "name": "URLSession", - "printedName": "URLSession", + ], "declKind": "Class", - "usr": "c:objc(cs)NSURLSession", - "moduleName": "Foundation", + "usr": "c:objc(cs)UIButton", + "moduleName": "UIKit", "isOpen": true, - "intro_iOS": "7.0", - "objc_name": "NSURLSession", + "intro_iOS": "2.0", + "objc_name": "UIButton", "declAttributes": [ + "Preconcurrency", "Available", "ObjC", - "SynthesizedProtocol", "NonSendable", - "Sendable", + "Custom", "Dynamic" ], - "superclassUsr": "c:objc(cs)NSObject", + "superclassUsr": "c:objc(cs)UIControl", "isExternal": true, "inheritsConvenienceInitializers": true, "superclassNames": [ + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", @@ -36281,572 +34508,312 @@ "printedName": "CustomDebugStringConvertible", "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Double", - "printedName": "Double", - "declKind": "Struct", - "usr": "s:Sd", - "mangledName": "$sSd", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "CustomDataCompatible", - "printedName": "CustomDataCompatible", - "usr": "s:13ApptentiveKit20CustomDataCompatibleP", - "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" - }, - { - "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": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" - }, - { - "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "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": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SF", - "mangledName": "$sSF" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" }, { "kind": "Conformance", "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Double.SIMD2Storage", - "usr": "s:Sd12SIMD2StorageV" - } - ] - }, + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UITableView", + "printedName": "UITableView", + "children": [ + { + "kind": "Var", + "name": "apptentiveStyle", + "printedName": "apptentiveStyle", + "children": [ { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Double.SIMD4Storage", - "usr": "s:Sd12SIMD4StorageV" - } - ] - }, + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cpy)apptentiveStyle", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivpZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Double.SIMD8Storage", - "usr": "s:Sd12SIMD8StorageV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cm)apptentiveStyle", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivgZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Double.SIMD16Storage", - "usr": "s:Sd13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Double.SIMD32Storage", - "usr": "s:Sd13SIMD32StorageV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cm)setApptentiveStyle:", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivsZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Double.SIMD64Storage", - "usr": "s:Sd13SIMD64StorageV" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + ] }, { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "kind": "Var", + "name": "apptentiveQuestionSeparatorHeight", + "printedName": "apptentiveQuestionSeparatorHeight", "children": [ { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + "declKind": "Var", + "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvpZ", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "VectorArithmetic", - "printedName": "VectorArithmetic", - "usr": "s:7SwiftUI16VectorArithmeticP", - "mangledName": "$s7SwiftUI16VectorArithmeticP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvgZ", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } - ] - } - ], - "usr": "s:7SwiftUI18_FormatSpecifiableP", - "mangledName": "$s7SwiftUI18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "Animatable", - "printedName": "Animatable", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvsZ", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "AnimatableData", - "printedName": "AnimatableData", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvMZ", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:7SwiftUI10AnimatableP", - "mangledName": "$s7SwiftUI10AnimatableP" + ] } - ] - }, - { - "kind": "TypeDecl", - "name": "Float", - "printedName": "Float", - "declKind": "Struct", - "usr": "s:Sf", - "mangledName": "$sSf", - "moduleName": "Swift", + ], + "declKind": "Class", + "usr": "c:objc(cs)UITableView", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UITableView", "declAttributes": [ - "Frozen" + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" ], + "superclassUsr": "c:objc(cs)UIScrollView", "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIScrollView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], "conformances": [ { "kind": "Conformance", - "name": "CustomDataCompatible", - "printedName": "CustomDataCompatible", - "usr": "s:13ApptentiveKit20CustomDataCompatibleP", - "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" - }, - { - "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": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", @@ -36857,10 +34824,17 @@ }, { "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" + "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", @@ -36878,77 +34852,175 @@ }, { "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Style", + "printedName": "Style", + "children": [ + { + "kind": "Var", + "name": "apptentive", + "printedName": "apptentive", "children": [ { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", + "kind": "TypeNominal", + "name": "Style", + "printedName": "UIKit.UITableView.Style", + "usr": "c:@E@UITableViewStyle" + } + ], + "declKind": "Var", + "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ", + "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Style", + "printedName": "UIKit.UITableView.Style", + "usr": "c:@E@UITableViewStyle" } - ] + ], + "declKind": "Accessor", + "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ", + "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Style", + "printedName": "UIKit.UITableView.Style", + "usr": "c:@E@UITableViewStyle" } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ", + "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ", + "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" + ] + } + ], + "declKind": "Enum", + "usr": "c:@E@UITableViewStyle", + "moduleName": "UIKit", + "objc_name": "UITableViewStyle", + "declAttributes": [ + "SynthesizedProtocol", + "ObjC", + "SynthesizedProtocol", + "Sendable", + "NonSendable", + "Dynamic" + ], + "isFromExtension": true, + "enumRawTypeName": "Int", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", @@ -36959,87 +35031,198 @@ ] } ], - "usr": "s:SF", - "mangledName": "$sSF" + "usr": "s:SY", + "mangledName": "$sSY" }, { "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIModalPresentationStyle", + "printedName": "UIModalPresentationStyle", + "children": [ + { + "kind": "Var", + "name": "apptentive", + "printedName": "apptentive", "children": [ { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "kind": "TypeNominal", + "name": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" + } + ], + "declKind": "Var", + "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ", + "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" } - ] + ], + "declKind": "Accessor", + "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ", + "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" + } + ], + "declKind": "Accessor", + "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ", + "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ", + "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, + ] + } + ], + "declKind": "Enum", + "usr": "c:@E@UIModalPresentationStyle", + "moduleName": "UIKit", + "objc_name": "UIModalPresentationStyle", + "declAttributes": [ + "SynthesizedProtocol", + "ObjC", + "SynthesizedProtocol", + "Sendable", + "NonSendable", + "Dynamic" + ], + "enumRawTypeName": "Int", + "isExternal": true, + "conformances": [ { "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ] } ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" + "usr": "s:SY", + "mangledName": "$sSY" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", @@ -37050,291 +35233,429 @@ }, { "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIBarButtonItem", + "printedName": "UIBarButtonItem", + "children": [ { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", + "kind": "Var", + "name": "apptentiveClose", + "printedName": "apptentiveClose", "children": [ { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveClose", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveClose", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Float.SIMD2Storage", - "usr": "s:Sf12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Float.SIMD4Storage", - "usr": "s:Sf12SIMD4StorageV" + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveClose:", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Float.SIMD8Storage", - "usr": "s:Sf12SIMD8StorageV" + "name": "Void", + "printedName": "()" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:So15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appentiveRefresh", + "printedName": "appentiveRefresh", + "children": [ { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)appentiveRefresh", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE16appentiveRefreshABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Float.SIMD16Storage", - "usr": "s:Sf13SIMD16StorageV" + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)appentiveRefresh", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE16appentiveRefreshABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Float.SIMD32Storage", - "usr": "s:Sf13SIMD32StorageV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setAppentiveRefresh:", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE16appentiveRefreshABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Float.SIMD64Storage", - "usr": "s:Sf13SIMD64StorageV" + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So15UIBarButtonItemC13ApptentiveKitE16appentiveRefreshABvMZ", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE16appentiveRefreshABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + ] }, { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "kind": "Var", + "name": "apptentiveProfileEdit", + "printedName": "apptentiveProfileEdit", "children": [ { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveProfileEdit", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveProfileEdit", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "VectorArithmetic", - "printedName": "VectorArithmetic", - "usr": "s:7SwiftUI16VectorArithmeticP", - "mangledName": "$s7SwiftUI16VectorArithmeticP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveProfileEdit:", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:7SwiftUI18_FormatSpecifiableP", - "mangledName": "$s7SwiftUI18_FormatSpecifiableP" + ] } - ] - }, - { - "kind": "TypeDecl", - "name": "Int", - "printedName": "Int", - "declKind": "Struct", - "usr": "s:Si", - "mangledName": "$sSi", - "moduleName": "Swift", + ], + "declKind": "Class", + "usr": "c:objc(cs)UIBarButtonItem", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIBarButtonItem", "declAttributes": [ - "Frozen" + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" ], + "superclassUsr": "c:objc(cs)UIBarItem", "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIBarItem", + "ObjectiveC.NSObject" + ], "conformances": [ { "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "SignedInteger", - "printedName": "SignedInteger", - "usr": "s:SZ", - "mangledName": "$sSZ" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", - "children": [ - { - "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", - "children": [ - { - "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.Int.Words", - "usr": "s:Si5WordsV" - } - ] - } - ], - "usr": "s:Sz", - "mangledName": "$sSz" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" + "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", @@ -37345,509 +35666,459 @@ }, { "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIImage", + "printedName": "UIImage", + "children": [ + { + "kind": "Var", + "name": "apptentiveMessageAttachmentButton", + "printedName": "apptentiveMessageAttachmentButton", "children": [ { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageAttachmentButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageAttachmentButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "CustomDataCompatible", - "printedName": "CustomDataCompatible", - "usr": "s:13ApptentiveKit20CustomDataCompatibleP", - "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" - }, - { - "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": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "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": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageAttachmentButton:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Int.SIMD2Storage", - "usr": "s:Si12SIMD2StorageV" + "name": "Void", + "printedName": "()" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "apptentiveMessageSendButton", + "printedName": "apptentiveMessageSendButton", + "children": [ { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Int.SIMD4Storage", - "usr": "s:Si12SIMD4StorageV" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageSendButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Int.SIMD8Storage", - "usr": "s:Si12SIMD8StorageV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageSendButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Int.SIMD16Storage", - "usr": "s:Si13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Int.SIMD32Storage", - "usr": "s:Si13SIMD32StorageV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageSendButton:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Int.SIMD64Storage", - "usr": "s:Si13SIMD64StorageV" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + ] }, { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "kind": "Var", + "name": "apptentiveSentMessageBubble", + "printedName": "apptentiveSentMessageBubble", "children": [ { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveSentMessageBubble", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveSentMessageBubble", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] - } - ], - "usr": "s:7SwiftUI18_FormatSpecifiableP", - "mangledName": "$s7SwiftUI18_FormatSpecifiableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Bool", - "printedName": "Bool", - "declKind": "Struct", - "usr": "s:Sb", - "mangledName": "$sSb", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomDataCompatible", - "printedName": "CustomDataCompatible", - "usr": "s:13ApptentiveKit20CustomDataCompatibleP", - "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinBooleanLiteral", - "printedName": "_ExpressibleByBuiltinBooleanLiteral", - "usr": "s:s35_ExpressibleByBuiltinBooleanLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinBooleanLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByBooleanLiteral", - "printedName": "ExpressibleByBooleanLiteral", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveSentMessageBubble:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "BooleanLiteralType", - "printedName": "BooleanLiteralType", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s27ExpressibleByBooleanLiteralP", - "mangledName": "$ss27ExpressibleByBooleanLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "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": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "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": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + ] }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "Var", + "name": "apptentiveReceivedMessageBubble", + "printedName": "apptentiveReceivedMessageBubble", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIViewController", - "printedName": "UIViewController", - "children": [ - { - "kind": "Var", - "name": "apptentiveModalPresentationStyle", - "printedName": "apptentiveModalPresentationStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(py)apptentiveModalPresentationStyle", - "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvp", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveReceivedMessageBubble", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ - "Dynamic", + "HasInitialValue", + "Final", + "HasStorage", "Custom", "AccessControl", "ObjC", - "Available" + "RawDocComment" ], "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -37856,18 +36127,28 @@ "children": [ { "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)apptentiveModalPresentationStyle", - "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvg", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveReceivedMessageBubble", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvgZ", "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "get" @@ -37884,141 +36165,94 @@ }, { "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)setApptentiveModalPresentationStyle:", - "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvs", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveReceivedMessageBubble:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvsZ", "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIViewController", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIViewController", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIResponder", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "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": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ { "kind": "Var", - "name": "apptentiveEventEngaged", - "printedName": "apptentiveEventEngaged", + "name": "apptentiveAttachmentPlaceholder", + "printedName": "apptentiveAttachmentPlaceholder", "children": [ { "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ", - "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentPlaceholder", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", + "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -38028,214 +36262,122 @@ "children": [ { "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ", - "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentPlaceholder", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], "isFromExtension": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "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": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentPlaceholder:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "FileManager", - "printedName": "FileManager", - "declKind": "Class", - "usr": "c:objc(cs)NSFileManager", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSFileManager", - "declAttributes": [ - "ObjC", - "NonSendable", - "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" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIButton", - "printedName": "UIButton", - "children": [ { "kind": "Var", - "name": "apptentivePillRadius", - "printedName": "apptentivePillRadius", + "name": "apptentiveAttachmentRemoveButton", + "printedName": "apptentiveAttachmentRemoveButton", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentivePillRadius", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentRemoveButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ "HasInitialValue", "Final", @@ -38243,65 +36385,145 @@ "Custom", "AccessControl", "ObjC", - "Available" + "RawDocComment" ], "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentRemoveButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentRemoveButton:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentivePillRadius", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvgZ", + "usr": "s:So7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "intro_iOS": "2.0", "declAttributes": [ - "ObjC", + "Available", "Final" ], "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "apptentiveCornerRadius", - "printedName": "apptentiveCornerRadius", + "name": "apptentiveHeaderLogo", + "printedName": "apptentiveHeaderLogo", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentiveCornerRadius", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveHeaderLogo", + "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "Custom", "AccessControl", "ObjC", - "Available" + "RawDocComment" ], "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -38310,16 +36532,25 @@ "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentiveCornerRadius", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveHeaderLogo", + "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvgZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -38339,16 +36570,25 @@ }, { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)setApptentiveCornerRadius:", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveHeaderLogo:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvsZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -38368,15 +36608,13 @@ } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE22apptentiveCornerRadius14CoreFoundation7CGFloatVvMZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvMZ", + "usr": "s:So7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -38387,27 +36625,27 @@ }, { "kind": "Var", - "name": "apptentiveClose", - "printedName": "apptentiveClose", + "name": "apptentiveRadioButton", + "printedName": "apptentiveRadioButton", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIButton?", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "UIButton", - "printedName": "UIKit.UIButton", - "usr": "c:objc(cs)UIButton" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ @@ -38416,6 +36654,7 @@ "HasStorage", "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -38429,25 +36668,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIButton?", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "UIButton", - "printedName": "UIKit.UIButton", - "usr": "c:objc(cs)UIButton" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -38466,25 +36706,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIButton?", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "UIButton", - "printedName": "UIKit.UIButton", - "usr": "c:objc(cs)UIButton" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButton:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -38502,8 +36743,8 @@ } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ", + "usr": "s:So7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -38518,129 +36759,28 @@ ] }, { - "kind": "TypeDecl", - "name": "ApptentiveButtonStyle", - "printedName": "ApptentiveButtonStyle", + "kind": "Var", + "name": "apptentiveCheckbox", + "printedName": "apptentiveCheckbox", "children": [ { - "kind": "Var", - "name": "pill", - "printedName": "pill", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> UIKit.UIButton.ApptentiveButtonStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "radius", - "printedName": "radius", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> (CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" - }, - { - "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], - "declKind": "EnumElement", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE14CoreFoundation7CGFloatVcAEmF", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE12CoreGraphics7CGFloatVcAEmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - } - ], - "declKind": "Enum", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true - }, - { - "kind": "Var", - "name": "apptentiveStyle", - "printedName": "apptentiveStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckbox", + "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ @@ -38649,6 +36789,7 @@ "HasStorage", "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -38661,18 +36802,27 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckbox", + "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -38690,18 +36840,27 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckbox:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -38719,8 +36878,8 @@ } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ", + "usr": "s:So7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -38733,134 +36892,178 @@ "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIButton", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIButton", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIControl", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIControl", - "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": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "kind": "Var", + "name": "apptentiveRadioButtonSelected", + "printedName": "apptentiveRadioButtonSelected", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButtonSelected", + "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButtonSelected", + "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButtonSelected:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UITableView", - "printedName": "UITableView", - "children": [ { "kind": "Var", - "name": "apptentiveStyle", - "printedName": "apptentiveStyle", + "name": "apptentiveCheckboxSelected", + "printedName": "apptentiveCheckboxSelected", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cpy)apptentiveStyle", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckboxSelected", + "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "Custom", "AccessControl", "ObjC", - "Available" + "RawDocComment" ], "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -38869,16 +37072,25 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cm)apptentiveStyle", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckboxSelected", + "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvgZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -38898,16 +37110,25 @@ }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cm)setApptentiveStyle:", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckboxSelected:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvsZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -38927,15 +37148,13 @@ } ], "declKind": "Accessor", - "usr": "s:So11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ", + "usr": "s:So7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -38946,19 +37165,27 @@ }, { "kind": "Var", - "name": "apptentiveQuestionSeparatorHeight", - "printedName": "apptentiveQuestionSeparatorHeight", + "name": "apptentiveDialogHeader", + "printedName": "apptentiveDialogHeader", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvpZ", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveDialogHeader", + "mangledName": "$sSo7UIImageC13ApptentiveKitE22apptentiveDialogHeaderABSgvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ @@ -38967,7 +37194,7 @@ "HasStorage", "Custom", "AccessControl", - "RawDocComment" + "ObjC" ], "isFromExtension": true, "hasStorage": true, @@ -38979,18 +37206,27 @@ "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvgZ", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveDialogHeader", + "mangledName": "$sSo7UIImageC13ApptentiveKitE22apptentiveDialogHeaderABSgvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -39008,18 +37244,27 @@ }, { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvsZ", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveDialogHeader:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE22apptentiveDialogHeaderABSgvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -39037,8 +37282,8 @@ } ], "declKind": "Accessor", - "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvMZ", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvMZ", + "usr": "s:So7UIImageC13ApptentiveKitE22apptentiveDialogHeaderABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE22apptentiveDialogHeaderABSgvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39054,28 +37299,47 @@ } ], "declKind": "Class", - "usr": "c:objc(cs)UITableView", + "usr": "c:objc(cs)UIImage", "moduleName": "UIKit", "isOpen": true, "intro_iOS": "2.0", - "objc_name": "UITableView", + "objc_name": "UIImage", "declAttributes": [ "Available", "ObjC", + "SynthesizedProtocol", "NonSendable", - "Custom", + "Sendable", "Dynamic" ], - "superclassUsr": "c:objc(cs)UIScrollView", + "superclassUsr": "c:objc(cs)NSObject", "isExternal": true, "inheritsConvenienceInitializers": true, "superclassNames": [ - "UIKit.UIScrollView", - "UIKit.UIView", - "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -39127,53 +37391,49 @@ }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" - }, - { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "_ExpressibleByImageLiteral", + "printedName": "_ExpressibleByImageLiteral", + "usr": "s:s26_ExpressibleByImageLiteralP", + "mangledName": "$ss26_ExpressibleByImageLiteralP" } ] }, { "kind": "TypeDecl", - "name": "Style", - "printedName": "Style", + "name": "UIColor", + "printedName": "UIColor", "children": [ { "kind": "Var", - "name": "apptentive", - "printedName": "apptentive", + "name": "apptentiveMessageCenterTextInputBackground", + "printedName": "apptentiveMessageCenterTextInputBackground", "children": [ { "kind": "TypeNominal", - "name": "Style", - "printedName": "UIKit.UITableView.Style", - "usr": "c:@E@UITableViewStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ", - "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", + "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -39186,17 +37446,21 @@ "children": [ { "kind": "TypeNominal", - "name": "Style", - "printedName": "UIKit.UITableView.Style", - "usr": "c:@E@UITableViewStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ", - "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], "isFromExtension": true, "accessorKind": "get" }, @@ -39212,17 +37476,21 @@ }, { "kind": "TypeNominal", - "name": "Style", - "printedName": "UIKit.UITableView.Style", - "usr": "c:@E@UITableViewStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ", - "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], "isFromExtension": true, "accessorKind": "set" }, @@ -39238,104 +37506,45 @@ } ], "declKind": "Accessor", - "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ", - "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], "isFromExtension": true, "accessorKind": "_modify" } ] - } - ], - "declKind": "Enum", - "usr": "c:@E@UITableViewStyle", - "moduleName": "UIKit", - "objc_name": "UITableViewStyle", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "SynthesizedProtocol", - "Sendable", - "NonSendable", - "Dynamic" - ], - "isFromExtension": true, - "enumRawTypeName": "Int", - "isExternal": true, - "conformances": [ - { - "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": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIModalPresentationStyle", - "printedName": "UIModalPresentationStyle", - "children": [ { "kind": "Var", - "name": "apptentive", - "printedName": "apptentive", + "name": "apptentiveMessageCenterTextInputPlaceholder", + "printedName": "apptentiveMessageCenterTextInputPlaceholder", "children": [ { "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ", - "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", + "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -39348,17 +37557,21 @@ "children": [ { "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ", - "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], "isFromExtension": true, "accessorKind": "get" }, @@ -39374,17 +37587,21 @@ }, { "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ", - "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputPlaceholder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], "isFromExtension": true, "accessorKind": "set" }, @@ -39400,97 +37617,146 @@ } ], "declKind": "Accessor", - "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ", - "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], "isFromExtension": true, "accessorKind": "_modify" } ] - } - ], - "declKind": "Enum", - "usr": "c:@E@UIModalPresentationStyle", - "moduleName": "UIKit", - "objc_name": "UIModalPresentationStyle", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "SynthesizedProtocol", - "Sendable", - "NonSendable", - "Dynamic" - ], - "enumRawTypeName": "Int", - "isExternal": true, - "conformances": [ + }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Var", + "name": "apptentiveMessageTextViewPlaceholder", + "printedName": "apptentiveMessageTextViewPlaceholder", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextViewPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextViewPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextViewPlaceholder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + ] }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIBarButtonItem", - "printedName": "UIBarButtonItem", - "children": [ { "kind": "Var", - "name": "apptentiveClose", - "printedName": "apptentiveClose", + "name": "apptentiveMessageCenterTextInput", + "printedName": "apptentiveMessageCenterTextInput", "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveClose", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInput", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ @@ -39512,14 +37778,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveClose", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInput", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39542,14 +37808,14 @@ }, { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveClose:", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInput:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39572,8 +37838,8 @@ } ], "declKind": "Accessor", - "usr": "s:So15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39589,19 +37855,19 @@ }, { "kind": "Var", - "name": "apptentiveProfileEdit", - "printedName": "apptentiveProfileEdit", + "name": "apptentivetextInputTint", + "printedName": "apptentivetextInputTint", "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveProfileEdit", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentivetextInputTint", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ @@ -39623,14 +37889,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveProfileEdit", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentivetextInputTint", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39653,14 +37919,14 @@ }, { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveProfileEdit:", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentivetextInputTint:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39683,8 +37949,8 @@ } ], "declKind": "Accessor", - "usr": "s:So15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39697,114 +37963,29 @@ "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIBarButtonItem", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIBarButtonItem", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIBarItem", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIBarItem", - "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": "UIImage", - "printedName": "UIImage", - "children": [ { "kind": "Var", - "name": "apptentiveMessageAttachmentButton", - "printedName": "apptentiveMessageAttachmentButton", + "name": "apptentiveMessageCenterTextInputBorder", + "printedName": "apptentiveMessageCenterTextInputBorder", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageAttachmentButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -39819,22 +38000,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageAttachmentButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39857,22 +38030,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageAttachmentButton:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39895,8 +38060,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39912,39 +38077,31 @@ }, { "kind": "Var", - "name": "apptentiveMessageSendButton", - "printedName": "apptentiveMessageSendButton", + "name": "apptentiveMessageCenterTextViewBorder", + "printedName": "apptentiveMessageCenterTextViewBorder", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageSendButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextViewBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", + "Custom", "AccessControl", "ObjC", + "Available", "RawDocComment" ], "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -39953,25 +38110,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageSendButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextViewBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -39991,25 +38139,16 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageSendButton:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextViewBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -40029,13 +38168,15 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ + "Available", "Available", "Final" ], @@ -40046,33 +38187,26 @@ }, { "kind": "Var", - "name": "apptentiveSentMessageBubble", - "printedName": "apptentiveSentMessageBubble", + "name": "apptentiveMessageCenterAttachmentButton", + "printedName": "apptentiveMessageCenterAttachmentButton", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveSentMessageBubble", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40087,22 +38221,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveSentMessageBubble", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40125,22 +38251,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveSentMessageBubble:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentButton:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40163,8 +38281,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40180,33 +38298,26 @@ }, { "kind": "Var", - "name": "apptentiveReceivedMessageBubble", - "printedName": "apptentiveReceivedMessageBubble", + "name": "apptentiveMessageTextInputPlaceholder", + "printedName": "apptentiveMessageTextInputPlaceholder", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveReceivedMessageBubble", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40221,22 +38332,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveReceivedMessageBubble", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40259,22 +38362,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveReceivedMessageBubble:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextInputPlaceholder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40297,8 +38392,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40314,33 +38409,26 @@ }, { "kind": "Var", - "name": "apptentiveAttachmentPlaceholder", - "printedName": "apptentiveAttachmentPlaceholder", + "name": "apptentiveMessageCenterStatus", + "printedName": "apptentiveMessageCenterStatus", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentPlaceholder", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterStatus", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40355,22 +38443,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentPlaceholder", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterStatus", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40393,22 +38473,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentPlaceholder:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterStatus:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40431,8 +38503,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40448,33 +38520,26 @@ }, { "kind": "Var", - "name": "apptentiveAttachmentRemoveButton", - "printedName": "apptentiveAttachmentRemoveButton", + "name": "apptentiveMessageCenterGreetingBody", + "printedName": "apptentiveMessageCenterGreetingBody", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentRemoveButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingBody", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40489,22 +38554,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentRemoveButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingBody", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40527,22 +38584,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentRemoveButton:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingBody:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40565,8 +38614,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40582,33 +38631,26 @@ }, { "kind": "Var", - "name": "apptentiveHeaderLogo", - "printedName": "apptentiveHeaderLogo", + "name": "apptentiveMessageCenterGreetingTitle", + "printedName": "apptentiveMessageCenterGreetingTitle", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveHeaderLogo", - "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40623,22 +38665,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveHeaderLogo", - "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40661,22 +38695,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveHeaderLogo:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingTitle:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40699,8 +38725,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40716,33 +38742,26 @@ }, { "kind": "Var", - "name": "apptentiveRadioButton", - "printedName": "apptentiveRadioButton", + "name": "apptentiveMessageBubbleInbound", + "printedName": "apptentiveMessageBubbleInbound", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleInbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40757,22 +38776,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleInbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40795,22 +38806,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButton:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleInbound:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40833,8 +38836,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40850,33 +38853,26 @@ }, { "kind": "Var", - "name": "apptentiveCheckbox", - "printedName": "apptentiveCheckbox", + "name": "apptentiveMessageBubbleOutbound", + "printedName": "apptentiveMessageBubbleOutbound", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckbox", - "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleOutbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40891,22 +38887,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckbox", - "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleOutbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40929,22 +38917,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckbox:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleOutbound:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40967,8 +38947,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40984,33 +38964,26 @@ }, { "kind": "Var", - "name": "apptentiveRadioButtonSelected", - "printedName": "apptentiveRadioButtonSelected", + "name": "apptentiveMessageLabelInbound", + "printedName": "apptentiveMessageLabelInbound", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButtonSelected", - "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelInbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -41025,22 +38998,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButtonSelected", - "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelInbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41063,22 +39028,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButtonSelected:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelInbound:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41101,8 +39058,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41118,33 +39075,26 @@ }, { "kind": "Var", - "name": "apptentiveCheckboxSelected", - "printedName": "apptentiveCheckboxSelected", + "name": "apptentiveMessageLabelOutbound", + "printedName": "apptentiveMessageLabelOutbound", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckboxSelected", - "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelOutbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -41159,22 +39109,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckboxSelected", - "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelOutbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41197,22 +39139,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckboxSelected:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelOutbound:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41235,8 +39169,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41249,103 +39183,11 @@ "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIImage", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIImage", - "declAttributes": [ - "Available", - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "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": "_ExpressibleByImageLiteral", - "printedName": "_ExpressibleByImageLiteral", - "usr": "s:s26_ExpressibleByImageLiteralP", - "mangledName": "$ss26_ExpressibleByImageLiteralP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIColor", - "printedName": "UIColor", - "children": [ { "kind": "Var", - "name": "apptentiveMessageCenterTextInputBackground", - "printedName": "apptentiveMessageCenterTextInputBackground", + "name": "apptentiveQuestionLabel", + "printedName": "apptentiveQuestionLabel", "children": [ { "kind": "TypeNominal", @@ -41355,14 +39197,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -41383,8 +39226,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41413,8 +39256,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41437,8 +39280,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41454,8 +39297,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterTextInputPlaceholder", - "printedName": "apptentiveMessageCenterTextInputPlaceholder", + "name": "apptentiveInstructionsLabel", + "printedName": "apptentiveInstructionsLabel", "children": [ { "kind": "TypeNominal", @@ -41465,14 +39308,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveInstructionsLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -41493,8 +39337,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveInstructionsLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41523,118 +39367,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputPlaceholder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveInstructionsLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, - "intro_iOS": "2.0", - "declAttributes": [ - "Available", - "Final" - ], - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "apptentiveMessageTextViewPlaceholder", - "printedName": "apptentiveMessageTextViewPlaceholder", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextViewPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "deprecated": true, - "declAttributes": [ - "Final", - "AccessControl", - "ObjC", - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextViewPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextViewPlaceholder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvsZ", - "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ "ObjC", "Final" @@ -41654,15 +39391,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -41673,8 +39408,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterTextInput", - "printedName": "apptentiveMessageCenterTextInput", + "name": "apptentiveChoiceLabel", + "printedName": "apptentiveChoiceLabel", "children": [ { "kind": "TypeNominal", @@ -41684,14 +39419,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInput", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveChoiceLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -41712,8 +39448,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInput", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveChoiceLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41742,8 +39478,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInput:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveChoiceLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41766,8 +39502,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41783,8 +39519,8 @@ }, { "kind": "Var", - "name": "apptentivetextInputTint", - "printedName": "apptentivetextInputTint", + "name": "apptentiveError", + "printedName": "apptentiveError", "children": [ { "kind": "TypeNominal", @@ -41794,13 +39530,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentivetextInputTint", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveError", + "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -41822,8 +39559,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentivetextInputTint", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveError", + "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41852,8 +39589,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentivetextInputTint:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveError:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41876,8 +39613,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41893,8 +39630,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterTextInputBorder", - "printedName": "apptentiveMessageCenterTextInputBorder", + "name": "apptentiveTint", + "printedName": "apptentiveTint", "children": [ { "kind": "TypeNominal", @@ -41904,13 +39641,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTint", + "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -41932,8 +39670,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTint", + "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41962,8 +39700,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBorder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTint:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41986,8 +39724,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE14apptentiveTintABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42003,8 +39741,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterTextViewBorder", - "printedName": "apptentiveMessageCenterTextViewBorder", + "name": "apptentiveSecondaryLabel", + "printedName": "apptentiveSecondaryLabel", "children": [ { "kind": "TypeNominal", @@ -42014,19 +39752,21 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextViewBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ + "HasInitialValue", "Final", + "Custom", + "HasStorage", "AccessControl", "ObjC", - "Available", "RawDocComment" ], "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -42041,10 +39781,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextViewBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -42070,10 +39811,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextViewBorder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -42093,15 +39835,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -42112,8 +39852,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterAttachmentButton", - "printedName": "apptentiveMessageCenterAttachmentButton", + "name": "apptentiveRangeControlBorder", + "printedName": "apptentiveRangeControlBorder", "children": [ { "kind": "TypeNominal", @@ -42123,14 +39863,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveRangeControlBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -42151,8 +39892,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveRangeControlBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42181,8 +39922,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentButton:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveRangeControlBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42205,8 +39946,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42222,8 +39963,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageTextInputPlaceholder", - "printedName": "apptentiveMessageTextInputPlaceholder", + "name": "apptentiveSurveyIntroduction", + "printedName": "apptentiveSurveyIntroduction", "children": [ { "kind": "TypeNominal", @@ -42233,14 +39974,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSurveyIntroduction", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -42261,8 +40003,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSurveyIntroduction", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42291,8 +40033,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextInputPlaceholder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSurveyIntroduction:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42315,8 +40057,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42332,8 +40074,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterStatus", - "printedName": "apptentiveMessageCenterStatus", + "name": "apptentiveSurveyTextInputBackground", + "printedName": "apptentiveSurveyTextInputBackground", "children": [ { "kind": "TypeNominal", @@ -42343,14 +40085,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterStatus", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSurveyTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveSurveyTextInputBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -42371,8 +40114,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterStatus", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSurveyTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveSurveyTextInputBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42401,8 +40144,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterStatus:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSurveyTextInputBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveSurveyTextInputBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42425,8 +40168,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE35apptentiveSurveyTextInputBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveSurveyTextInputBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42442,8 +40185,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterGreetingBody", - "printedName": "apptentiveMessageCenterGreetingBody", + "name": "apptentiveTextInputBorder", + "printedName": "apptentiveTextInputBorder", "children": [ { "kind": "TypeNominal", @@ -42453,13 +40196,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingBody", - "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -42481,8 +40225,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingBody", - "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42511,8 +40255,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingBody:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42535,8 +40279,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42552,8 +40296,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterGreetingTitle", - "printedName": "apptentiveMessageCenterGreetingTitle", + "name": "apptentiveOtherTextInputBorder", + "printedName": "apptentiveOtherTextInputBorder", "children": [ { "kind": "TypeNominal", @@ -42563,13 +40307,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingTitle", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveOtherTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveOtherTextInputBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -42591,8 +40336,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingTitle", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveOtherTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveOtherTextInputBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42621,8 +40366,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingTitle:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveOtherTextInputBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveOtherTextInputBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42645,8 +40390,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveOtherTextInputBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveOtherTextInputBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42662,8 +40407,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageBubbleInbound", - "printedName": "apptentiveMessageBubbleInbound", + "name": "apptentiveOtherTextInputBackground", + "printedName": "apptentiveOtherTextInputBackground", "children": [ { "kind": "TypeNominal", @@ -42673,14 +40418,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleInbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveOtherTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE34apptentiveOtherTextInputBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -42701,8 +40447,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleInbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveOtherTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE34apptentiveOtherTextInputBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42731,8 +40477,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleInbound:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveOtherTextInputBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE34apptentiveOtherTextInputBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42755,8 +40501,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE34apptentiveOtherTextInputBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE34apptentiveOtherTextInputBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42772,8 +40518,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageBubbleOutbound", - "printedName": "apptentiveMessageBubbleOutbound", + "name": "apptentiveTextInputBackground", + "printedName": "apptentiveTextInputBackground", "children": [ { "kind": "TypeNominal", @@ -42783,13 +40529,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleOutbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -42811,8 +40558,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleOutbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42841,8 +40588,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleOutbound:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42865,8 +40612,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42882,8 +40629,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageLabelInbound", - "printedName": "apptentiveMessageLabelInbound", + "name": "apptentiveTextInput", + "printedName": "apptentiveTextInput", "children": [ { "kind": "TypeNominal", @@ -42893,13 +40640,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelInbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInput", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -42921,8 +40669,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelInbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInput", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42951,8 +40699,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelInbound:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInput:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42975,8 +40723,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42992,8 +40740,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageLabelOutbound", - "printedName": "apptentiveMessageLabelOutbound", + "name": "apptentiveTextInputPlaceholder", + "printedName": "apptentiveTextInputPlaceholder", "children": [ { "kind": "TypeNominal", @@ -43003,13 +40751,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelOutbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -43031,8 +40780,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelOutbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43061,8 +40810,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelOutbound:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputPlaceholder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43085,8 +40834,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43102,8 +40851,8 @@ }, { "kind": "Var", - "name": "apptentiveQuestionLabel", - "printedName": "apptentiveQuestionLabel", + "name": "apptentiveMinMaxLabel", + "printedName": "apptentiveMinMaxLabel", "children": [ { "kind": "TypeNominal", @@ -43113,14 +40862,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMinMaxLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43141,8 +40891,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMinMaxLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43171,8 +40921,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMinMaxLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43195,8 +40945,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43212,8 +40962,8 @@ }, { "kind": "Var", - "name": "apptentiveInstructionsLabel", - "printedName": "apptentiveInstructionsLabel", + "name": "apptentiveGroupedBackground", + "printedName": "apptentiveGroupedBackground", "children": [ { "kind": "TypeNominal", @@ -43223,14 +40973,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveInstructionsLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveGroupedBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43251,8 +41002,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveInstructionsLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveGroupedBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43281,8 +41032,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveInstructionsLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveGroupedBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43305,8 +41056,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43322,8 +41073,8 @@ }, { "kind": "Var", - "name": "apptentiveChoiceLabel", - "printedName": "apptentiveChoiceLabel", + "name": "apptentiveSecondaryGroupedBackground", + "printedName": "apptentiveSecondaryGroupedBackground", "children": [ { "kind": "TypeNominal", @@ -43333,14 +41084,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveChoiceLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryGroupedBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43361,8 +41113,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveChoiceLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryGroupedBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43391,8 +41143,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveChoiceLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryGroupedBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43415,8 +41167,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43432,8 +41184,8 @@ }, { "kind": "Var", - "name": "apptentiveError", - "printedName": "apptentiveError", + "name": "apptentiveSeparator", + "printedName": "apptentiveSeparator", "children": [ { "kind": "TypeNominal", @@ -43443,14 +41195,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveError", - "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43471,8 +41224,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveError", - "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43501,8 +41254,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveError:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSeparator:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43525,8 +41278,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43542,8 +41295,8 @@ }, { "kind": "Var", - "name": "apptentiveTint", - "printedName": "apptentiveTint", + "name": "apptentiveImageSelected", + "printedName": "apptentiveImageSelected", "children": [ { "kind": "TypeNominal", @@ -43553,14 +41306,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTint", - "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43581,8 +41335,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTint", - "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43611,8 +41365,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTint:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageSelected:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43635,8 +41389,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE14apptentiveTintABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43652,8 +41406,8 @@ }, { "kind": "Var", - "name": "apptentiveSecondaryLabel", - "printedName": "apptentiveSecondaryLabel", + "name": "apptentiveImageNotSelected", + "printedName": "apptentiveImageNotSelected", "children": [ { "kind": "TypeNominal", @@ -43663,14 +41417,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageNotSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43691,8 +41446,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageNotSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43721,8 +41476,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageNotSelected:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43745,8 +41500,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43762,8 +41517,8 @@ }, { "kind": "Var", - "name": "apptentiveRangeControlBorder", - "printedName": "apptentiveRangeControlBorder", + "name": "apptentiveSubmitButton", + "printedName": "apptentiveSubmitButton", "children": [ { "kind": "TypeNominal", @@ -43773,14 +41528,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveRangeControlBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43801,8 +41557,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveRangeControlBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43831,8 +41587,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveRangeControlBorder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButton:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43855,8 +41611,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43872,8 +41628,8 @@ }, { "kind": "Var", - "name": "apptentiveSurveyIntroduction", - "printedName": "apptentiveSurveyIntroduction", + "name": "apptentiveBranchedSurveyFooter", + "printedName": "apptentiveBranchedSurveyFooter", "children": [ { "kind": "TypeNominal", @@ -43883,14 +41639,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSurveyIntroduction", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveBranchedSurveyFooter", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43911,8 +41668,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSurveyIntroduction", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveBranchedSurveyFooter", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43941,8 +41698,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSurveyIntroduction:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveBranchedSurveyFooter:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43965,8 +41722,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43982,8 +41739,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInputBorder", - "printedName": "apptentiveTextInputBorder", + "name": "apptentiveSubmitLabel", + "printedName": "apptentiveSubmitLabel", "children": [ { "kind": "TypeNominal", @@ -43993,20 +41750,19 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvpZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", + "Custom", "AccessControl", - "ObjC", + "Available", "RawDocComment" ], "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -44021,13 +41777,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvgZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44051,13 +41805,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvsZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44075,13 +41827,15 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ + "Available", "Available", "Final" ], @@ -44092,8 +41846,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInputBackground", - "printedName": "apptentiveTextInputBackground", + "name": "apptentiveSubmitStatusLabel", + "printedName": "apptentiveSubmitStatusLabel", "children": [ { "kind": "TypeNominal", @@ -44103,13 +41857,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitStatusLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -44131,8 +41886,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitStatusLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44161,8 +41916,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitStatusLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44185,8 +41940,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44202,8 +41957,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInput", - "printedName": "apptentiveTextInput", + "name": "apptentiveTermsOfServiceLabel", + "printedName": "apptentiveTermsOfServiceLabel", "children": [ { "kind": "TypeNominal", @@ -44213,14 +41968,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInput", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTermsOfServiceLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -44241,8 +41997,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInput", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTermsOfServiceLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44271,8 +42027,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInput:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTermsOfServiceLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44295,8 +42051,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44312,8 +42068,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInputPlaceholder", - "printedName": "apptentiveTextInputPlaceholder", + "name": "apptentiveSubmitButtonTitle", + "printedName": "apptentiveSubmitButtonTitle", "children": [ { "kind": "TypeNominal", @@ -44323,14 +42079,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -44351,8 +42108,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44381,8 +42138,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputPlaceholder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonTitle:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44405,8 +42162,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44422,8 +42179,8 @@ }, { "kind": "Var", - "name": "apptentiveMinMaxLabel", - "printedName": "apptentiveMinMaxLabel", + "name": "apptentiveSubmitButtonBorder", + "printedName": "apptentiveSubmitButtonBorder", "children": [ { "kind": "TypeNominal", @@ -44433,14 +42190,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMinMaxLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -44461,8 +42219,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMinMaxLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44491,8 +42249,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMinMaxLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44515,8 +42273,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44532,8 +42290,8 @@ }, { "kind": "Var", - "name": "apptentiveGroupedBackground", - "printedName": "apptentiveGroupedBackground", + "name": "apptentiveQuestionSeparator", + "printedName": "apptentiveQuestionSeparator", "children": [ { "kind": "TypeNominal", @@ -44543,14 +42301,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveGroupedBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -44571,8 +42330,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveGroupedBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44601,8 +42360,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveGroupedBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionSeparator:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44625,8 +42384,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44642,8 +42401,8 @@ }, { "kind": "Var", - "name": "apptentiveSecondaryGroupedBackground", - "printedName": "apptentiveSecondaryGroupedBackground", + "name": "apptentiveUnselectedSurveyIndicatorSegment", + "printedName": "apptentiveUnselectedSurveyIndicatorSegment", "children": [ { "kind": "TypeNominal", @@ -44653,16 +42412,16 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryGroupedBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvpZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", - "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -44681,13 +42440,12 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryGroupedBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvgZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44711,13 +42469,12 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryGroupedBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvsZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44735,8 +42492,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44752,8 +42509,8 @@ }, { "kind": "Var", - "name": "apptentiveSeparator", - "printedName": "apptentiveSeparator", + "name": "apptentiveSelectedSurveyIndicatorSegment", + "printedName": "apptentiveSelectedSurveyIndicatorSegment", "children": [ { "kind": "TypeNominal", @@ -44763,16 +42520,16 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvpZ", + "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", - "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -44791,13 +42548,12 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvgZ", + "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44821,13 +42577,12 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSeparator:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvsZ", + "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44845,8 +42600,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44862,8 +42617,8 @@ }, { "kind": "Var", - "name": "apptentiveImageSelected", - "printedName": "apptentiveImageSelected", + "name": "apptentiveMessageCenterBackground", + "printedName": "apptentiveMessageCenterBackground", "children": [ { "kind": "TypeNominal", @@ -44873,14 +42628,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -44901,8 +42657,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44931,8 +42687,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageSelected:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44955,8 +42711,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44972,8 +42728,8 @@ }, { "kind": "Var", - "name": "apptentiveImageNotSelected", - "printedName": "apptentiveImageNotSelected", + "name": "apptentiveMessageCenterAttachmentDeleteButton", + "printedName": "apptentiveMessageCenterAttachmentDeleteButton", "children": [ { "kind": "TypeNominal", @@ -44983,20 +42739,20 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageNotSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentDeleteButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvpZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", + "Custom", "AccessControl", "ObjC", + "Available", "RawDocComment" ], "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -45011,11 +42767,10 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageNotSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentDeleteButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvgZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -45041,11 +42796,10 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageNotSelected:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentDeleteButton:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvsZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -45065,13 +42819,15 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ + "Available", "Available", "Final" ], @@ -45082,8 +42838,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitButton", - "printedName": "apptentiveSubmitButton", + "name": "apptentiveAttachmentRemoveButton", + "printedName": "apptentiveAttachmentRemoveButton", "children": [ { "kind": "TypeNominal", @@ -45093,14 +42849,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveAttachmentRemoveButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -45121,8 +42878,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveAttachmentRemoveButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45151,8 +42908,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButton:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveAttachmentRemoveButton:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45175,8 +42932,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45192,8 +42949,8 @@ }, { "kind": "Var", - "name": "apptentiveBranchedSurveyFooter", - "printedName": "apptentiveBranchedSurveyFooter", + "name": "apptentiveMessageCenterComposeBoxBackground", + "printedName": "apptentiveMessageCenterComposeBoxBackground", "children": [ { "kind": "TypeNominal", @@ -45203,14 +42960,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveBranchedSurveyFooter", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -45231,8 +42989,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveBranchedSurveyFooter", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45261,8 +43019,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveBranchedSurveyFooter:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45285,8 +43043,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45302,8 +43060,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitLabel", - "printedName": "apptentiveSubmitLabel", + "name": "apptentiveMessageCenterComposeBoxSeparator", + "printedName": "apptentiveMessageCenterComposeBoxSeparator", "children": [ { "kind": "TypeNominal", @@ -45313,17 +43071,17 @@ } ], "declKind": "Var", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", - "Available", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -45342,12 +43100,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -45371,12 +43130,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxSeparator:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -45394,15 +43154,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -45413,8 +43171,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitStatusLabel", - "printedName": "apptentiveSubmitStatusLabel", + "name": "apptentiveTextInputBorderSelected", + "printedName": "apptentiveTextInputBorderSelected", "children": [ { "kind": "TypeNominal", @@ -45424,14 +43182,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitStatusLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorderSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -45452,8 +43211,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitStatusLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorderSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45482,8 +43241,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitStatusLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorderSelected:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45506,8 +43265,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45523,8 +43282,8 @@ }, { "kind": "Var", - "name": "apptentiveTermsOfServiceLabel", - "printedName": "apptentiveTermsOfServiceLabel", + "name": "apptentiveDisclaimerLabel", + "printedName": "apptentiveDisclaimerLabel", "children": [ { "kind": "TypeNominal", @@ -45534,14 +43293,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTermsOfServiceLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDisclaimerLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -45562,8 +43322,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTermsOfServiceLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDisclaimerLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45592,8 +43352,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTermsOfServiceLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDisclaimerLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45616,8 +43376,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45633,67 +43393,14 @@ }, { "kind": "Var", - "name": "apptentiveSubmitButtonTitle", - "printedName": "apptentiveSubmitButtonTitle", + "name": "apptentiveDialogBackground", + "printedName": "apptentiveDialogBackground", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonTitle", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "isFromExtension": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonTitle", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Optional", + "printedName": "UIKit.UIColor?", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "UIColor", @@ -45701,67 +43408,19 @@ "usr": "c:objc(cs)UIColor" } ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonTitle:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "intro_iOS": "2.0", - "declAttributes": [ - "Available", - "Final" - ], - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "apptentiveSubmitButtonBorder", - "printedName": "apptentiveSubmitButtonBorder", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveDialogBackgroundABSgvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -45776,14 +43435,22 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.UIColor?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveDialogBackgroundABSgvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45806,14 +43473,22 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.UIColor?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonBorder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveDialogBackgroundABSgvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45836,8 +43511,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE26apptentiveDialogBackgroundABSgvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveDialogBackgroundABSgvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45853,8 +43528,8 @@ }, { "kind": "Var", - "name": "apptentiveQuestionSeparator", - "printedName": "apptentiveQuestionSeparator", + "name": "apptentiveDialogTitle", + "printedName": "apptentiveDialogTitle", "children": [ { "kind": "TypeNominal", @@ -45864,13 +43539,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveDialogTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -45892,8 +43568,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveDialogTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45922,8 +43598,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionSeparator:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogTitle:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveDialogTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45946,8 +43622,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveDialogTitleABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveDialogTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45963,8 +43639,8 @@ }, { "kind": "Var", - "name": "apptentiveUnselectedSurveyIndicatorSegment", - "printedName": "apptentiveUnselectedSurveyIndicatorSegment", + "name": "apptentiveDialogMessage", + "printedName": "apptentiveDialogMessage", "children": [ { "kind": "TypeNominal", @@ -45974,15 +43650,17 @@ } ], "declKind": "Var", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogMessage", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveDialogMessageABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -46001,12 +43679,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogMessage", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveDialogMessageABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -46030,12 +43709,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogMessage:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveDialogMessageABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -46053,8 +43733,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveDialogMessageABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveDialogMessageABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46070,8 +43750,8 @@ }, { "kind": "Var", - "name": "apptentiveSelectedSurveyIndicatorSegment", - "printedName": "apptentiveSelectedSurveyIndicatorSegment", + "name": "apptentiveDialogButtonBackground", + "printedName": "apptentiveDialogButtonBackground", "children": [ { "kind": "TypeNominal", @@ -46081,15 +43761,17 @@ } ], "declKind": "Var", - "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogButtonBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveDialogButtonBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -46108,12 +43790,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogButtonBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveDialogButtonBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -46137,12 +43820,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogButtonBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveDialogButtonBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -46160,8 +43844,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveDialogButtonBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveDialogButtonBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46177,8 +43861,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterBackground", - "printedName": "apptentiveMessageCenterBackground", + "name": "apptentiveDialogButtonLabel", + "printedName": "apptentiveDialogButtonLabel", "children": [ { "kind": "TypeNominal", @@ -46188,14 +43872,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogButtonLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveDialogButtonLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -46216,8 +43901,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogButtonLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveDialogButtonLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46246,8 +43931,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogButtonLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveDialogButtonLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46270,8 +43955,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveDialogButtonLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveDialogButtonLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46287,8 +43972,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterAttachmentDeleteButton", - "printedName": "apptentiveMessageCenterAttachmentDeleteButton", + "name": "apptentiveButtonBorder", + "printedName": "apptentiveButtonBorder", "children": [ { "kind": "TypeNominal", @@ -46298,18 +43983,17 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentDeleteButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveButtonBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveButtonBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", - "Available", "RawDocComment" ], "isFromExtension": true, @@ -46328,8 +44012,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentDeleteButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveButtonBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveButtonBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46358,8 +44042,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentDeleteButton:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveButtonBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveButtonBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46382,15 +44066,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE22apptentiveButtonBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveButtonBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -46401,8 +44083,8 @@ }, { "kind": "Var", - "name": "apptentiveAttachmentRemoveButton", - "printedName": "apptentiveAttachmentRemoveButton", + "name": "apptentiveDialogSeparator", + "printedName": "apptentiveDialogSeparator", "children": [ { "kind": "TypeNominal", @@ -46412,13 +44094,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveAttachmentRemoveButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDialogSeparatorABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -46440,8 +44123,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveAttachmentRemoveButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDialogSeparatorABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46470,8 +44153,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveAttachmentRemoveButton:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogSeparator:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDialogSeparatorABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46494,8 +44177,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveDialogSeparatorABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDialogSeparatorABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46508,27 +44191,141 @@ "accessorKind": "_modify" } ] + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UIColor", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIColor", + "declAttributes": [ + "Available", + "ObjC", + "SynthesizedProtocol", + "NonSendable", + "Sendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByColorLiteral", + "printedName": "_ExpressibleByColorLiteral", + "usr": "s:s26_ExpressibleByColorLiteralP", + "mangledName": "$ss26_ExpressibleByColorLiteralP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIFont", + "printedName": "UIFont", + "children": [ { "kind": "Var", - "name": "apptentiveMessageCenterComposeBoxBackground", - "printedName": "apptentiveMessageCenterComposeBoxBackground", + "name": "apptentiveMessageCenterTextInputPlaceholder", + "printedName": "apptentiveMessageCenterTextInputPlaceholder", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInputPlaceholder", + "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -46544,14 +44341,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInputPlaceholder", + "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46574,14 +44371,14 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInputPlaceholder:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46604,8 +44401,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46621,24 +44418,25 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterComposeBoxSeparator", - "printedName": "apptentiveMessageCenterComposeBoxSeparator", + "name": "apptentiveMessageCenterTextInput", + "printedName": "apptentiveMessageCenterTextInput", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInput", + "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -46654,14 +44452,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInput", + "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46684,14 +44482,14 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxSeparator:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInput:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46714,8 +44512,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46731,24 +44529,25 @@ }, { "kind": "Var", - "name": "apptentiveTextInputBorderSelected", - "printedName": "apptentiveTextInputBorderSelected", + "name": "apptentiveTextInputPlaceholder", + "printedName": "apptentiveTextInputPlaceholder", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorderSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInputPlaceholder", + "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -46764,14 +44563,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorderSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInputPlaceholder", + "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46794,14 +44593,14 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorderSelected:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInputPlaceholder:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46824,8 +44623,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46841,24 +44640,25 @@ }, { "kind": "Var", - "name": "apptentiveDisclaimerLabel", - "printedName": "apptentiveDisclaimerLabel", + "name": "apptentiveMessageCenterStatus", + "printedName": "apptentiveMessageCenterStatus", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDisclaimerLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterStatus", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -46874,14 +44674,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDisclaimerLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterStatus", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46904,14 +44704,14 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDisclaimerLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterStatus:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46934,8 +44734,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46948,103 +44748,11 @@ "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIColor", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIColor", - "declAttributes": [ - "Available", - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "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": "_ExpressibleByColorLiteral", - "printedName": "_ExpressibleByColorLiteral", - "usr": "s:s26_ExpressibleByColorLiteralP", - "mangledName": "$ss26_ExpressibleByColorLiteralP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIFont", - "printedName": "UIFont", - "children": [ { "kind": "Var", - "name": "apptentiveMessageCenterTextInputPlaceholder", - "printedName": "apptentiveMessageCenterTextInputPlaceholder", + "name": "apptentiveMessageCenterGreetingTitle", + "printedName": "apptentiveMessageCenterGreetingTitle", "children": [ { "kind": "TypeNominal", @@ -47054,13 +44762,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInputPlaceholder", - "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47082,8 +44791,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInputPlaceholder", - "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47112,8 +44821,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInputPlaceholder:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingTitle:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47136,8 +44845,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47153,8 +44862,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterTextInput", - "printedName": "apptentiveMessageCenterTextInput", + "name": "apptentiveMessageCenterGreetingBody", + "printedName": "apptentiveMessageCenterGreetingBody", "children": [ { "kind": "TypeNominal", @@ -47164,13 +44873,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInput", - "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingBody", + "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47192,8 +44902,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInput", - "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingBody", + "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47222,8 +44932,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInput:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingBody:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47246,8 +44956,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47263,8 +44973,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInputPlaceholder", - "printedName": "apptentiveTextInputPlaceholder", + "name": "apptentiveMessageCenterAttachmentLabel", + "printedName": "apptentiveMessageCenterAttachmentLabel", "children": [ { "kind": "TypeNominal", @@ -47274,13 +44984,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInputPlaceholder", - "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterAttachmentLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47302,8 +45013,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInputPlaceholder", - "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterAttachmentLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47332,8 +45043,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInputPlaceholder:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterAttachmentLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47356,8 +45067,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47373,8 +45084,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterStatus", - "printedName": "apptentiveMessageCenterStatus", + "name": "apptentiveQuestionLabel", + "printedName": "apptentiveQuestionLabel", "children": [ { "kind": "TypeNominal", @@ -47384,13 +45095,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterStatus", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveQuestionLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47412,8 +45124,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterStatus", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveQuestionLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47442,8 +45154,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterStatus:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveQuestionLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47466,8 +45178,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47483,8 +45195,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterGreetingTitle", - "printedName": "apptentiveMessageCenterGreetingTitle", + "name": "apptentiveTermsOfServiceLabel", + "printedName": "apptentiveTermsOfServiceLabel", "children": [ { "kind": "TypeNominal", @@ -47494,13 +45206,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingTitle", - "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTermsOfServiceLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47522,8 +45235,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingTitle", - "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTermsOfServiceLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47552,8 +45265,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingTitle:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTermsOfServiceLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47576,8 +45289,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47593,8 +45306,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterGreetingBody", - "printedName": "apptentiveMessageCenterGreetingBody", + "name": "apptentiveChoiceLabel", + "printedName": "apptentiveChoiceLabel", "children": [ { "kind": "TypeNominal", @@ -47604,13 +45317,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingBody", - "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveChoiceLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47632,8 +45346,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingBody", - "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveChoiceLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47662,8 +45376,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingBody:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveChoiceLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47686,8 +45400,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47703,8 +45417,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterAttachmentLabel", - "printedName": "apptentiveMessageCenterAttachmentLabel", + "name": "apptentiveMessageLabel", + "printedName": "apptentiveMessageLabel", "children": [ { "kind": "TypeNominal", @@ -47714,13 +45428,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterAttachmentLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47742,8 +45457,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterAttachmentLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47772,8 +45487,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterAttachmentLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47796,8 +45511,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47813,8 +45528,8 @@ }, { "kind": "Var", - "name": "apptentiveQuestionLabel", - "printedName": "apptentiveQuestionLabel", + "name": "apptentiveMinMaxLabel", + "printedName": "apptentiveMinMaxLabel", "children": [ { "kind": "TypeNominal", @@ -47824,13 +45539,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveQuestionLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMinMaxLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47852,8 +45568,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveQuestionLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMinMaxLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47882,8 +45598,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveQuestionLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMinMaxLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47906,8 +45622,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47923,8 +45639,8 @@ }, { "kind": "Var", - "name": "apptentiveTermsOfServiceLabel", - "printedName": "apptentiveTermsOfServiceLabel", + "name": "apptentiveSenderLabel", + "printedName": "apptentiveSenderLabel", "children": [ { "kind": "TypeNominal", @@ -47934,13 +45650,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTermsOfServiceLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSenderLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47962,8 +45679,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTermsOfServiceLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSenderLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47992,8 +45709,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTermsOfServiceLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSenderLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48016,8 +45733,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48033,8 +45750,8 @@ }, { "kind": "Var", - "name": "apptentiveChoiceLabel", - "printedName": "apptentiveChoiceLabel", + "name": "apptentiveMessageDateLabel", + "printedName": "apptentiveMessageDateLabel", "children": [ { "kind": "TypeNominal", @@ -48044,13 +45761,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveChoiceLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageDateLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48072,8 +45790,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveChoiceLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageDateLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48102,8 +45820,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveChoiceLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageDateLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48126,8 +45844,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48143,8 +45861,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageLabel", - "printedName": "apptentiveMessageLabel", + "name": "apptentiveInstructionsLabel", + "printedName": "apptentiveInstructionsLabel", "children": [ { "kind": "TypeNominal", @@ -48154,13 +45872,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveInstructionsLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48182,8 +45901,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveInstructionsLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48212,8 +45931,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveInstructionsLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48236,8 +45955,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48253,8 +45972,8 @@ }, { "kind": "Var", - "name": "apptentiveMinMaxLabel", - "printedName": "apptentiveMinMaxLabel", + "name": "apptentiveSurveyIntroductionLabel", + "printedName": "apptentiveSurveyIntroductionLabel", "children": [ { "kind": "TypeNominal", @@ -48264,13 +45983,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMinMaxLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSurveyIntroductionLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48292,8 +46012,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMinMaxLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSurveyIntroductionLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48322,8 +46042,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMinMaxLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSurveyIntroductionLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48346,8 +46066,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48363,8 +46083,8 @@ }, { "kind": "Var", - "name": "apptentiveSenderLabel", - "printedName": "apptentiveSenderLabel", + "name": "apptentiveSubmitLabel", + "printedName": "apptentiveSubmitLabel", "children": [ { "kind": "TypeNominal", @@ -48374,20 +46094,19 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSenderLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvpZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", + "Custom", "AccessControl", - "ObjC", + "Available", "RawDocComment" ], "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -48402,13 +46121,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSenderLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvgZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -48432,13 +46149,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSenderLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvsZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -48456,13 +46171,15 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ + "Available", "Available", "Final" ], @@ -48473,8 +46190,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageDateLabel", - "printedName": "apptentiveMessageDateLabel", + "name": "apptentiveSubmitStatusLabel", + "printedName": "apptentiveSubmitStatusLabel", "children": [ { "kind": "TypeNominal", @@ -48484,13 +46201,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageDateLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitStatusLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48512,8 +46230,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageDateLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitStatusLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48542,8 +46260,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageDateLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitStatusLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48566,8 +46284,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48583,8 +46301,8 @@ }, { "kind": "Var", - "name": "apptentiveInstructionsLabel", - "printedName": "apptentiveInstructionsLabel", + "name": "apptentiveDisclaimerLabel", + "printedName": "apptentiveDisclaimerLabel", "children": [ { "kind": "TypeNominal", @@ -48594,13 +46312,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveInstructionsLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDisclaimerLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48622,8 +46341,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveInstructionsLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDisclaimerLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48652,8 +46371,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveInstructionsLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDisclaimerLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48676,8 +46395,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48693,8 +46412,8 @@ }, { "kind": "Var", - "name": "apptentiveSurveyIntroductionLabel", - "printedName": "apptentiveSurveyIntroductionLabel", + "name": "apptentiveSubmitButtonTitle", + "printedName": "apptentiveSubmitButtonTitle", "children": [ { "kind": "TypeNominal", @@ -48704,13 +46423,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSurveyIntroductionLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitButtonTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48732,8 +46452,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSurveyIntroductionLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitButtonTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48762,8 +46482,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSurveyIntroductionLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitButtonTitle:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48786,8 +46506,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48803,8 +46523,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitLabel", - "printedName": "apptentiveSubmitLabel", + "name": "apptentiveTextInput", + "printedName": "apptentiveTextInput", "children": [ { "kind": "TypeNominal", @@ -48814,17 +46534,17 @@ } ], "declKind": "Var", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInput", + "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", - "Available", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -48843,12 +46563,13 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInput", + "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -48872,12 +46593,13 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInput:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -48895,15 +46617,13 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -48914,8 +46634,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitStatusLabel", - "printedName": "apptentiveSubmitStatusLabel", + "name": "apptentiveDialogTitle", + "printedName": "apptentiveDialogTitle", "children": [ { "kind": "TypeNominal", @@ -48925,13 +46645,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitStatusLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDialogTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveDialogTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48953,8 +46674,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitStatusLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDialogTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveDialogTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48983,8 +46704,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitStatusLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDialogTitle:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveDialogTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49007,8 +46728,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveDialogTitleABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveDialogTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49024,8 +46745,8 @@ }, { "kind": "Var", - "name": "apptentiveDisclaimerLabel", - "printedName": "apptentiveDisclaimerLabel", + "name": "apptentiveDialogText", + "printedName": "apptentiveDialogText", "children": [ { "kind": "TypeNominal", @@ -49035,13 +46756,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDisclaimerLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDialogText", + "mangledName": "$sSo6UIFontC13ApptentiveKitE20apptentiveDialogTextABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -49063,8 +46785,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDisclaimerLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDialogText", + "mangledName": "$sSo6UIFontC13ApptentiveKitE20apptentiveDialogTextABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49093,8 +46815,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDisclaimerLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDialogText:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE20apptentiveDialogTextABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49117,8 +46839,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE20apptentiveDialogTextABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE20apptentiveDialogTextABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49134,8 +46856,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitButtonTitle", - "printedName": "apptentiveSubmitButtonTitle", + "name": "apptentiveDialogMessage", + "printedName": "apptentiveDialogMessage", "children": [ { "kind": "TypeNominal", @@ -49145,13 +46867,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitButtonTitle", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDialogMessage", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveDialogMessageABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -49173,8 +46896,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitButtonTitle", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDialogMessage", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveDialogMessageABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49203,8 +46926,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitButtonTitle:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDialogMessage:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveDialogMessageABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49227,8 +46950,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE23apptentiveDialogMessageABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveDialogMessageABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49244,8 +46967,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInput", - "printedName": "apptentiveTextInput", + "name": "apptentiveDialogButton", + "printedName": "apptentiveDialogButton", "children": [ { "kind": "TypeNominal", @@ -49255,13 +46978,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInput", - "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDialogButton", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveDialogButtonABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -49283,8 +47007,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInput", - "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDialogButton", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveDialogButtonABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49313,8 +47037,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInput:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDialogButton:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveDialogButtonABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49337,8 +47061,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE22apptentiveDialogButtonABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveDialogButtonABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49381,6 +47105,20 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -49429,6 +47167,13 @@ "printedName": "CustomDebugStringConvertible", "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, @@ -49611,6 +47356,20 @@ "isFromExtension": true, "enumRawTypeName": "Int", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -49753,117 +47512,352 @@ "intro_iOS": "2.0", "declAttributes": [ "Available", - "Final" + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UIToolbar", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIToolbar", + "declAttributes": [ + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UIView", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CGFloat", + "printedName": "CGFloat", + "children": [ + { + "kind": "Var", + "name": "apptentiveButtonBorderWidth", + "printedName": "apptentiveButtonBorderWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_Macosx": "10.0", + "intro_iOS": "2.0", + "intro_tvOS": "9.0", + "intro_watchOS": "1.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available", + "Available" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "apptentiveDialogCornerRadius", + "printedName": "apptentiveDialogCornerRadius", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvpZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvgZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvsZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvMZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_Macosx": "10.0", + "intro_iOS": "2.0", + "intro_tvOS": "9.0", + "intro_watchOS": "1.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available", + "Available" ], "isFromExtension": true, "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIToolbar", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIToolbar", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIView", - "isExternal": 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", - "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": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CGFloat", - "printedName": "CGFloat", - "children": [ { "kind": "Var", - "name": "apptentiveButtonBorderWidth", - "printedName": "apptentiveButtonBorderWidth", + "name": "apptentiveDialogButtonSpacing", + "printedName": "apptentiveDialogButtonSpacing", "children": [ { "kind": "TypeNominal", @@ -49873,13 +47867,14 @@ } ], "declKind": "Var", - "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ", - "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvpZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", + "Custom", "AccessControl", "RawDocComment" ], @@ -49899,8 +47894,8 @@ } ], "declKind": "Accessor", - "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ", - "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvgZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49925,8 +47920,8 @@ } ], "declKind": "Accessor", - "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ", - "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvsZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49945,8 +47940,8 @@ } ], "declKind": "Accessor", - "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ", - "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvMZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49990,6 +47985,20 @@ ], "isExternal": true, "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "SignedNumeric", @@ -50226,6 +48235,20 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "BitwiseCopyable", + "printedName": "BitwiseCopyable", + "usr": "s:s15BitwiseCopyableP", + "mangledName": "$ss15BitwiseCopyableP" + }, { "kind": "Conformance", "name": "_FormatSpecifiable", @@ -50270,13 +48293,6 @@ "usr": "s:s21_ObjectiveCBridgeableP", "mangledName": "$ss21_ObjectiveCBridgeableP" }, - { - "kind": "Conformance", - "name": "VectorArithmetic", - "printedName": "VectorArithmetic", - "usr": "s:7SwiftUI16VectorArithmeticP", - "mangledName": "$s7SwiftUI16VectorArithmeticP" - }, { "kind": "Conformance", "name": "_FormatSpecifiable", @@ -50299,6 +48315,13 @@ "usr": "s:7SwiftUI18_FormatSpecifiableP", "mangledName": "$s7SwiftUI18_FormatSpecifiableP" }, + { + "kind": "Conformance", + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" + }, { "kind": "Conformance", "name": "Animatable", @@ -50322,6702 +48345,5090 @@ "mangledName": "$s7SwiftUI10AnimatableP" } ] + }, + { + "kind": "TypeDecl", + "name": "CGSize", + "printedName": "CGSize", + "children": [ + { + "kind": "Var", + "name": "apptentiveThumbnail", + "printedName": "apptentiveThumbnail", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Var", + "usr": "s:So6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvpZ", + "mangledName": "$sSo6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Accessor", + "usr": "s:So6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvgZ", + "mangledName": "$sSo6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Accessor", + "usr": "s:So6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvsZ", + "mangledName": "$sSo6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:So6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvMZ", + "mangledName": "$sSo6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@S@CGSize", + "moduleName": "CoreFoundation", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSValue", + "printedName": "Foundation.NSValue", + "usr": "c:objc(cs)NSValue" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Animatable", + "printedName": "Animatable", + "children": [ + { + "kind": "TypeWitness", + "name": "AnimatableData", + "printedName": "AnimatableData", + "children": [ + { + "kind": "TypeNominal", + "name": "AnimatablePair", + "printedName": "SwiftUI.AnimatablePair", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "usr": "s:7SwiftUI14AnimatablePairV" + } + ] + } + ], + "usr": "s:7SwiftUI10AnimatableP", + "mangledName": "$s7SwiftUI10AnimatableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UICornerConfiguration", + "printedName": "UICornerConfiguration", + "children": [ + { + "kind": "Var", + "name": "apptentiveDialogButton", + "printedName": "apptentiveDialogButton", + "children": [ + { + "kind": "TypeNominal", + "name": "UICornerConfiguration", + "printedName": "UIKit.UICornerConfiguration", + "usr": "s:5UIKit21UICornerConfigurationV" + } + ], + "declKind": "Var", + "usr": "s:5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvpZ", + "mangledName": "$s5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UICornerConfiguration", + "printedName": "UIKit.UICornerConfiguration", + "usr": "s:5UIKit21UICornerConfigurationV" + } + ], + "declKind": "Accessor", + "usr": "s:5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvgZ", + "mangledName": "$s5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UICornerConfiguration", + "printedName": "UIKit.UICornerConfiguration", + "usr": "s:5UIKit21UICornerConfigurationV" + } + ], + "declKind": "Accessor", + "usr": "s:5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvsZ", + "mangledName": "$s5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvMZ", + "mangledName": "$s5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "26.0", + "intro_tvOS": "26.0", + "declAttributes": [ + "Available", + "Available", + "Available" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:5UIKit21UICornerConfigurationV", + "mangledName": "$s5UIKit21UICornerConfigurationV", + "moduleName": "UIKit", + "intro_iOS": "26.0", + "intro_tvOS": "26.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": 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": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } + ] } ], "json_format_version": 8 }, "ConstValues": [ { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift", "kind": "BooleanLiteral", - "offset": 448, + "offset": 465, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift", "kind": "IntegerLiteral", - "offset": 492, + "offset": 509, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "BooleanLiteral", - "offset": 2009, + "offset": 5693, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "BooleanLiteral", - "offset": 3658, - "length": 4, - "value": "true" + "offset": 8013, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", + "kind": "IntegerLiteral", + "offset": 8298, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", + "kind": "StringLiteral", + "offset": 9409, + "length": 13, + "value": "\"placeholder\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", + "kind": "Array", + "offset": 9436, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", + "kind": "BooleanLiteral", + "offset": 9489, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", + "kind": "BooleanLiteral", + "offset": 9522, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "BooleanLiteral", - "offset": 25379, + "offset": 9557, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "BooleanLiteral", - "offset": 25646, + "offset": 33026, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "IntegerLiteral", - "offset": 50519, + "offset": 61946, "length": 2, "value": "60" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "IntegerLiteral", - "offset": 50591, + "offset": 62018, "length": 3, "value": "600" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "BooleanLiteral", - "offset": 50666, + "offset": 62093, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 292, "length": 25, "value": "\"message_center_fallback\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 365, "length": 22, "value": "\"MC Unavailable Title\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 433, "length": 33, "value": "\"Message Center is not Available\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 477, "length": 41, "value": "\"Title for note saying MC is unavailable\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 568, "length": 24, "value": "\"MC Unavailable Message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 638, "length": 62, "value": "\"Make sure your device can access the internet and try again.\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 711, "length": 43, "value": "\"Message for note saying MC is unavailable\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 808, "length": 31, "value": "\"MC Unavailable Dismiss Button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 885, "length": 4, "value": "\"OK\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 900, "length": 56, "value": "\"Dismiss button title for note saying MC is unavailable\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", - "offset": 1086, + "offset": 1122, "length": 9, "value": "\"dismiss\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "Array", - "offset": 1160, + "offset": 1196, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", - "offset": 1303, + "offset": 1339, "length": 11, "value": "\"TextModal\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "Array", - "offset": 1451, + "offset": 1487, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "Array", - "offset": 1618, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/WebVewController.swift", - "kind": "StringLiteral", - "offset": 191, - "length": 17, - "value": "\"ApptentiveKit.WebViewController\"" + "offset": 1654, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", - "offset": 743, - "length": 8, - "value": "\"action\"" + "offset": 1673, + "length": 13, + "value": "\"placeholder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", - "kind": "StringLiteral", - "offset": 783, - "length": 9, - "value": "\"invokes\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "kind": "BooleanLiteral", + "offset": 1716, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", "kind": "StringLiteral", - "offset": 743, + "offset": 1601, "length": 8, "value": "\"action\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", "kind": "StringLiteral", - "offset": 783, + "offset": 1641, "length": 9, "value": "\"invokes\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", - "kind": "StringLiteral", - "offset": 1034, - "length": 10, - "value": "\"alt_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", "kind": "StringLiteral", - "offset": 1034, + "offset": 1892, "length": 10, "value": "\"alt_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", "kind": "IntegerLiteral", "offset": 390, "length": 3, "value": "270" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", "kind": "Array", "offset": 494, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", "kind": "BooleanLiteral", "offset": 534, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", - "kind": "StringLiteral", - "offset": 283, - "length": 20, - "value": "\"ApptentiveKit.DialogViewController\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 819, - "length": 14, - "value": "\"content_type\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 866, - "length": 15, - "value": "\"original_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 819, "length": 14, "value": "\"content_type\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 866, "length": 15, "value": "\"original_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1147, - "length": 15, - "value": "\"profile_photo\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1147, "length": 15, "value": "\"profile_photo\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1294, - "length": 9, - "value": "\"inbound\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1375, - "length": 8, - "value": "\"hidden\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1415, - "length": 11, - "value": "\"automated\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1455, - "length": 12, - "value": "\"created_at\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1294, "length": 9, "value": "\"inbound\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1375, "length": 8, "value": "\"hidden\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1415, "length": 11, "value": "\"automated\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1455, "length": 12, "value": "\"created_at\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1572, "length": 11, "value": "\"ends_with\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1607, "length": 10, "value": "\"has_more\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1572, - "length": 11, - "value": "\"ends_with\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/AttachmentView.swift", + "kind": "IntegerLiteral", + "offset": 595, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1607, - "length": 10, - "value": "\"has_more\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/AttachmentView.swift", + "kind": "IntegerLiteral", + "offset": 599, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", - "kind": "StringLiteral", - "offset": 485, + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/AttachmentView.swift", + "kind": "BooleanLiteral", + "offset": 438, "length": 5, - "value": "\"new\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", - "kind": "StringLiteral", - "offset": 519, - "length": 6, - "value": "\"self\"" + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", "kind": "StringLiteral", - "offset": 485, + "offset": 496, "length": 5, "value": "\"new\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", "kind": "StringLiteral", - "offset": 519, + "offset": 530, "length": 6, "value": "\"self\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", - "kind": "StringLiteral", - "offset": 624, - "length": 8, - "value": "\"target\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", "kind": "StringLiteral", - "offset": 624, + "offset": 635, "length": 8, "value": "\"target\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5383, - "length": 9, - "value": "\"os_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5418, - "length": 12, - "value": "\"os_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5454, - "length": 10, - "value": "\"os_build\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5543, - "length": 23, - "value": "\"content_size_category\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5592, - "length": 12, - "value": "\"locale_raw\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5638, - "length": 21, - "value": "\"locale_country_code\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5694, - "length": 22, - "value": "\"locale_language_code\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5757, - "length": 20, - "value": "\"integration_config\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5815, - "length": 15, - "value": "\"advertiser_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5857, - "length": 13, - "value": "\"custom_data\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5383, "length": 9, "value": "\"os_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5418, "length": 12, "value": "\"os_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5454, "length": 10, "value": "\"os_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5543, "length": 23, "value": "\"content_size_category\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5592, "length": 12, "value": "\"locale_raw\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5638, "length": 21, "value": "\"locale_country_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5694, "length": 22, "value": "\"locale_language_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5757, "length": 20, "value": "\"integration_config\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5815, "length": 15, "value": "\"advertiser_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5857, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 1580, - "length": 5, - "value": "\"alg\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 1610, - "length": 5, - "value": "\"typ\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 1580, "length": 5, "value": "\"alg\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 1610, "length": 5, "value": "\"typ\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 1690, - "length": 7, - "value": "\"HS256\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 1728, - "length": 7, - "value": "\"HS512\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 1690, "length": 7, "value": "\"HS256\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 1728, "length": 7, "value": "\"HS512\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 1800, - "length": 5, - "value": "\"JWT\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 1800, "length": 5, "value": "\"JWT\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4369, - "length": 5, - "value": "\"iss\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4401, - "length": 5, - "value": "\"exp\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4434, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4468, - "length": 5, - "value": "\"aud\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4503, - "length": 5, - "value": "\"nbf\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4537, - "length": 5, - "value": "\"iat\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4568, - "length": 5, - "value": "\"jti\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4369, "length": 5, "value": "\"iss\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4401, "length": 5, "value": "\"exp\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4434, "length": 5, "value": "\"sub\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4468, "length": 5, "value": "\"aud\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4503, "length": 5, "value": "\"nbf\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4537, "length": 5, "value": "\"iat\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4568, "length": 5, "value": "\"jti\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", - "kind": "StringLiteral", - "offset": 599, - "length": 12, - "value": "\"full_width\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", - "kind": "StringLiteral", - "offset": 639, - "length": 12, - "value": "\"align_left\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", "kind": "StringLiteral", - "offset": 680, - "length": 13, - "value": "\"align_right\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", - "kind": "StringLiteral", - "offset": 720, - "length": 8, - "value": "\"center\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", - "kind": "StringLiteral", - "offset": 599, + "offset": 579, "length": 12, "value": "\"full_width\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", "kind": "StringLiteral", - "offset": 639, + "offset": 619, "length": 12, "value": "\"align_left\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", "kind": "StringLiteral", - "offset": 680, + "offset": 660, "length": 13, "value": "\"align_right\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", "kind": "StringLiteral", - "offset": 720, + "offset": 700, "length": 8, "value": "\"center\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 384, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 407, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 428, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 870, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 1000, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 1126, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/ResourceManager.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Fresh Install\/FreshLoader.swift", "kind": "BooleanLiteral", - "offset": 2627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 8, - "value": "\"center\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 264, - "length": 6, - "value": "\"left\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 7, - "value": "\"right\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 8, - "value": "\"center\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 264, - "length": 6, - "value": "\"left\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 7, - "value": "\"right\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 353, - "length": 15, - "value": "\"-apple-system\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 383, - "length": 7, - "value": "\".SFUI\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 353, - "length": 15, - "value": "\"-apple-system\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 383, - "length": 7, - "value": "\".SFUI\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", - "kind": "StringLiteral", - "offset": 982, - "length": 11, - "value": "\"device_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", - "kind": "StringLiteral", - "offset": 1018, - "length": 11, - "value": "\"person_id\"" + "offset": 2446, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", - "kind": "StringLiteral", - "offset": 1059, - "length": 16, - "value": "\"encryption_key\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/ResourceManager.swift", + "kind": "BooleanLiteral", + "offset": 2319, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", "kind": "StringLiteral", "offset": 982, "length": 11, "value": "\"device_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", "kind": "StringLiteral", "offset": 1018, "length": 11, "value": "\"person_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", "kind": "StringLiteral", "offset": 1059, "length": 16, "value": "\"encryption_key\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 244, + "offset": 257, "length": 10, "value": "\"Roster.B\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 293, + "offset": 306, "length": 16, "value": "\"Conversation.B\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 352, + "offset": 365, "length": 16, "value": "\"PayloadQueue.B\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 403, + "offset": 416, "length": 15, "value": "\"MessageList.B\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 466, + "offset": 479, "length": 13, "value": "\"Resources.B\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 519, + "offset": 532, "length": 7, "value": "\"plist\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel+Message.swift", - "kind": "StringLiteral", - "offset": 4159, - "length": 10, - "value": "\"ApptentiveKit.Attachment\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Saver.swift", - "kind": "StringLiteral", - "offset": 2528, - "length": 26, - "value": "\"ApptentiveKit.EncryptedPropertyListSaver\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "kind": "IntegerLiteral", + "offset": 255, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 583, + "offset": 625, "length": 3, "value": "1.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 667, + "offset": 709, "length": 3, "value": "6.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 980, + "offset": 1022, "length": 3, "value": "1.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 991, + "offset": 1033, "length": 4, "value": "-5.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1005, + "offset": 1047, "length": 3, "value": "1.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1017, + "offset": 1059, "length": 4, "value": "-5.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1075, + "offset": 1117, "length": 4, "value": "16.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1132, + "offset": 1174, "length": 4, "value": "16.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1309, + "offset": 1351, "length": 3, "value": "6.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1320, + "offset": 1362, "length": 3, "value": "2.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1333, + "offset": 1375, "length": 3, "value": "6.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1345, + "offset": 1387, "length": 3, "value": "2.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1402, + "offset": 1444, "length": 4, "value": "14.5" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1459, + "offset": 1501, "length": 4, "value": "14.5" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift", "kind": "StringLiteral", - "offset": 5627, + "offset": 5485, "length": 30, "value": "\"Should have a view model set\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift", "kind": "StringLiteral", - "offset": 6119, + "offset": 5977, "length": 36, "value": "\"Should have a choice question set.\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", "kind": "BooleanLiteral", "offset": 277, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", "kind": "StringLiteral", "offset": 875, "length": 12, "value": "\"totalCount\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", "kind": "StringLiteral", "offset": 922, "length": 14, "value": "\"versionCount\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", "kind": "StringLiteral", "offset": 969, "length": 12, "value": "\"buildCount\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", "kind": "StringLiteral", "offset": 1015, "length": 13, "value": "\"lastInvoked\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", - "kind": "StringLiteral", - "offset": 199, - "length": 11, - "value": "\"ApptentiveKit.LegacyCount\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/ErrorResponse.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 12, - "value": "\"error_type\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/ErrorResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/ErrorResponse.swift", "kind": "StringLiteral", - "offset": 361, + "offset": 371, "length": 12, "value": "\"error_type\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 6638, + "offset": 283, "length": 16, "value": "\"com.apptentive\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 6658, + "offset": 303, "length": 13, "value": "\".apptentive\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 6957, - "length": 13, - "value": "\".engagement\"" + "offset": 471, + "length": 9, + "value": "\"default\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7104, - "length": 14, - "value": "\".interaction\"" + "offset": 612, + "length": 12, + "value": "\"engagement\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7244, - "length": 10, - "value": "\".network\"" + "offset": 757, + "length": 13, + "value": "\"interaction\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7379, - "length": 10, - "value": "\".payload\"" + "offset": 895, + "length": 9, + "value": "\"network\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7511, - "length": 12, - "value": "\".targeting\"" + "offset": 1028, + "length": 9, + "value": "\"payload\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7649, + "offset": 1158, "length": 11, - "value": "\".messages\"" + "value": "\"targeting\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7792, - "length": 14, - "value": "\".attachments\"" + "offset": 1294, + "length": 10, + "value": "\"messages\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7926, - "length": 12, - "value": "\".resources\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8708, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8722, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8738, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8755, - "length": 5, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8770, - "length": 8, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8788, - "length": 5, - "value": "6" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8708, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8722, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8738, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8755, - "length": 5, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8770, - "length": 8, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8788, - "length": 5, - "value": "6" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8708, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8722, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8738, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8755, - "length": 5, - "value": "4" + "offset": 1435, + "length": 13, + "value": "\"attachments\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8770, - "length": 8, - "value": "5" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", + "kind": "StringLiteral", + "offset": 1567, + "length": 11, + "value": "\"resources\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8788, + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", + "kind": "BooleanLiteral", + "offset": 1807, "length": 5, - "value": "6" + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "IntegerLiteral", - "offset": 4932, + "offset": 2690, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "IntegerLiteral", - "offset": 6843, + "offset": 3810, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "IntegerLiteral", - "offset": 6905, + "offset": 3841, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "IntegerLiteral", - "offset": 6843, + "offset": 3885, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "IntegerLiteral", - "offset": 6905, + "offset": 3947, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "BooleanLiteral", - "offset": 26940, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 515, - "length": 10, - "value": "\"ApptentiveKit.Apptentive\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31435, - "length": 19, - "value": "\"INVALID_ALGORITHM\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31481, - "length": 17, - "value": "\"MALFORMED_TOKEN\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31523, - "length": 15, - "value": "\"INVALID_TOKEN\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31566, - "length": 19, - "value": "\"MISSING_SUB_CLAIM\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31616, - "length": 22, - "value": "\"MISMATCHED_SUB_CLAIM\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31666, - "length": 19, - "value": "\"INVALID_SUB_CLAIM\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31710, - "length": 15, - "value": "\"EXPIRED_TOKEN\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31750, - "length": 15, - "value": "\"REVOKED_TOKEN\"" + "offset": 5868, + "length": 52, + "value": "\"https:\/\/\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31791, - "length": 17, - "value": "\"MISSING_APP_KEY\"" + "offset": 5883, + "length": 1, + "value": "\".api.digital.\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31840, - "length": 23, - "value": "\"MISSING_APP_SIGNATURE\"" + "offset": 5905, + "length": 1, + "value": "\".alchemer.com\/\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31899, - "length": 28, - "value": "\"INVALID_KEY_SIGNATURE_PAIR\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", + "kind": "BooleanLiteral", + "offset": 24961, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31435, + "offset": 31618, "length": 19, "value": "\"INVALID_ALGORITHM\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31481, + "offset": 31664, "length": 17, "value": "\"MALFORMED_TOKEN\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31523, + "offset": 31706, "length": 15, "value": "\"INVALID_TOKEN\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31566, + "offset": 31749, "length": 19, "value": "\"MISSING_SUB_CLAIM\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31616, + "offset": 31799, "length": 22, "value": "\"MISMATCHED_SUB_CLAIM\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31666, + "offset": 31849, "length": 19, "value": "\"INVALID_SUB_CLAIM\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31710, + "offset": 31893, "length": 15, "value": "\"EXPIRED_TOKEN\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31750, + "offset": 31933, "length": 15, "value": "\"REVOKED_TOKEN\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31791, + "offset": 31974, "length": 17, "value": "\"MISSING_APP_KEY\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31840, + "offset": 32023, "length": 23, "value": "\"MISSING_APP_SIGNATURE\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31899, + "offset": 32082, "length": 28, "value": "\"INVALID_KEY_SIGNATURE_PAIR\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", + "kind": "BooleanLiteral", + "offset": 418, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", "kind": "StringLiteral", "offset": 1144, "length": 6, "value": "\"name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", "kind": "StringLiteral", "offset": 1185, "length": 14, "value": "\"emailAddress\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", "kind": "StringLiteral", "offset": 1233, "length": 13, "value": "\"mParticleId\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", "kind": "StringLiteral", "offset": 1279, "length": 12, "value": "\"customData\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", - "kind": "StringLiteral", - "offset": 201, - "length": 12, - "value": "\"ApptentiveKit.LegacyPerson\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", "kind": "Array", "offset": 263, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", "kind": "IntegerLiteral", "offset": 306, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", "kind": "IntegerLiteral", "offset": 526, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", "kind": "Dictionary", "offset": 661, "length": 3, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "kind": "IntegerLiteral", + "offset": 6487, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "kind": "IntegerLiteral", + "offset": 6499, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", "kind": "IntegerLiteral", "offset": 6922, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "kind": "IntegerLiteral", + "offset": 7043, + "length": 3, + "value": "350" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "kind": "IntegerLiteral", + "offset": 7056, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", "kind": "FloatLiteral", "offset": 355, "length": 3, "value": "1.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", "kind": "FloatLiteral", "offset": 439, "length": 3, "value": "6.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "IntegerLiteral", + "offset": 987, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "IntegerLiteral", + "offset": 1039, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "IntegerLiteral", + "offset": 1140, + "length": 2, + "value": "52" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", "kind": "FloatLiteral", - "offset": 991, + "offset": 1198, + "length": 4, + "value": "21.0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "FloatLiteral", + "offset": 1259, + "length": 4, + "value": "21.0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "IntegerLiteral", + "offset": 1343, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "FloatLiteral", + "offset": 1401, "length": 4, "value": "16.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", "kind": "FloatLiteral", - "offset": 1048, + "offset": 1462, "length": 4, "value": "16.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", - "kind": "IntegerLiteral", - "offset": 1100, - "length": 1, - "value": "0" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria+Decodable.swift", + "kind": "StringLiteral", + "offset": 5617, + "length": 5, + "value": "\"sec\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", - "kind": "IntegerLiteral", - "offset": 1152, - "length": 1, - "value": "0" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria+Decodable.swift", + "kind": "StringLiteral", + "offset": 5656, + "length": 7, + "value": "\"_type\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", - "kind": "IntegerLiteral", - "offset": 1204, - "length": 2, - "value": "44" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "kind": "StringLiteral", + "offset": 1462, + "length": 31, + "value": "\"EEE, dd MMM yyyy HH:mm:ss zzz\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "kind": "StringLiteral", + "offset": 1544, + "length": 13, + "value": "\"en_US_POSIX\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "kind": "StringLiteral", + "offset": 1615, + "length": 5, + "value": "\"GMT\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "kind": "BooleanLiteral", + "offset": 9790, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14535, + "offset": 15861, "length": 16, "value": "\"APPTENTIVE-KEY\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14593, + "offset": 15919, "length": 22, "value": "\"APPTENTIVE-SIGNATURE\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14657, + "offset": 15983, "length": 22, "value": "\"APPTENTIVE-ENCRYPTED\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14712, + "offset": 16038, "length": 15, "value": "\"X-API-Version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14761, + "offset": 16087, "length": 14, "value": "\"Content-Type\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14811, + "offset": 16137, "length": 15, "value": "\"Authorization\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14862, + "offset": 16188, "length": 16, "value": "\"Accept-Charset\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14915, + "offset": 16241, "length": 17, "value": "\"Accept-Language\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14961, + "offset": 16287, "length": 8, "value": "\"Accept\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 15001, + "offset": 16327, "length": 12, "value": "\"User-Agent\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "BooleanLiteral", "offset": 334, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1413, "length": 7, "value": "\"state\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1453, "length": 24, "value": "\"conversationIdentifier\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1515, "length": 29, "value": "\"conversationLocalIdentifier\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1580, "length": 10, "value": "\"fileName\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1616, "length": 5, "value": "\"JWT\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1650, "length": 8, "value": "\"userId\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1694, "length": 15, "value": "\"encryptionKey\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1776, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1791, - "length": 16, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1821, - "length": 13, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1848, - "length": 9, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1871, - "length": 8, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1893, - "length": 9, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1776, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1791, - "length": 16, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1821, - "length": 13, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1848, - "length": 9, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1871, - "length": 8, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1893, - "length": 9, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1776, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1791, "length": 16, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1821, "length": 13, "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1848, "length": 9, "value": "3" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1871, "length": 8, "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1893, "length": 9, "value": "5" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "StringLiteral", - "offset": 237, - "length": 30, - "value": "\"ApptentiveKit.LegacyConversationMetadataItem\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift", - "kind": "FloatLiteral", - "offset": 366, - "length": 3, - "value": "5.0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift", - "kind": "FloatLiteral", - "offset": 392, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift", - "kind": "BooleanLiteral", - "offset": 415, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", "kind": "StringLiteral", "offset": 1034, "length": 13, "value": "\"app_release\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", - "kind": "StringLiteral", - "offset": 1034, - "length": 13, - "value": "\"app_release\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", "kind": "StringLiteral", "offset": 1485, "length": 11, "value": "\"device_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", "kind": "StringLiteral", "offset": 1521, "length": 11, "value": "\"person_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", "kind": "StringLiteral", "offset": 1562, "length": 16, "value": "\"encryption_key\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", - "kind": "StringLiteral", - "offset": 1485, - "length": 11, - "value": "\"device_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", - "kind": "StringLiteral", - "offset": 1521, - "length": 11, - "value": "\"person_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SecureTokenStore.swift", "kind": "StringLiteral", - "offset": 1562, + "offset": 417, "length": 16, - "value": "\"encryption_key\"" + "value": "\"com.apptentive\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "BooleanLiteral", - "offset": 5249, + "offset": 5311, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "BooleanLiteral", - "offset": 5407, + "offset": 5469, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "StringLiteral", - "offset": 10862, + "offset": 11548, "length": 8, "value": "\"single\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "StringLiteral", - "offset": 10902, + "offset": 11588, "length": 7, "value": "\"intro\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "StringLiteral", - "offset": 10943, + "offset": 11629, "length": 9, "value": "\"success\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "BooleanLiteral", - "offset": 20330, + "offset": 18623, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "BooleanLiteral", - "offset": 20386, + "offset": 18679, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "Array", - "offset": 22115, + "offset": 20434, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyLoader.swift", - "kind": "StringLiteral", - "offset": 178, - "length": 12, - "value": "\"ApptentiveKit.LegacyLoader\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageList.swift", "kind": "BooleanLiteral", "offset": 395, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageList.swift", "kind": "Array", "offset": 1485, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageList.swift", "kind": "BooleanLiteral", "offset": 1577, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageList.swift", "kind": "BooleanLiteral", "offset": 1601, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 3968, - "length": 22, - "value": "\"cf_bundle_identifier\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4014, - "length": 32, - "value": "\"cf_bundle_short_version_string\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4068, - "length": 19, - "value": "\"cf_bundle_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4119, - "length": 19, - "value": "\"app_store_receipt\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4167, - "length": 7, - "value": "\"debug\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4209, - "length": 19, - "value": "\"overriding_styles\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4261, - "length": 19, - "value": "\"deployment_target\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4305, - "length": 13, - "value": "\"dt_compiler\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4348, - "length": 19, - "value": "\"dt_platform_build\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4396, - "length": 18, - "value": "\"dt_platform_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4446, - "length": 21, - "value": "\"dt_platform_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4492, - "length": 14, - "value": "\"dt_sdk_build\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4530, - "length": 13, - "value": "\"dt_sdk_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4565, - "length": 10, - "value": "\"dt_xcode\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4602, - "length": 16, - "value": "\"dt_xcode_build\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4645, - "length": 13, - "value": "\"sdk_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4697, - "length": 26, - "value": "\"sdk_programming_language\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4753, - "length": 17, - "value": "\"sdk_author_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4798, - "length": 14, - "value": "\"sdk_platform\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4851, - "length": 26, - "value": "\"sdk_distribution_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4913, - "length": 18, - "value": "\"sdk_distribution\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 3968, "length": 22, "value": "\"cf_bundle_identifier\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4014, "length": 32, "value": "\"cf_bundle_short_version_string\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4068, "length": 19, "value": "\"cf_bundle_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4119, "length": 19, "value": "\"app_store_receipt\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4167, "length": 7, "value": "\"debug\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4209, "length": 19, "value": "\"overriding_styles\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4261, "length": 19, "value": "\"deployment_target\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4305, "length": 13, "value": "\"dt_compiler\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4348, "length": 19, "value": "\"dt_platform_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4396, "length": 18, "value": "\"dt_platform_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4446, "length": 21, "value": "\"dt_platform_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4492, "length": 14, "value": "\"dt_sdk_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4530, "length": 13, "value": "\"dt_sdk_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4565, "length": 10, "value": "\"dt_xcode\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4602, "length": 16, "value": "\"dt_xcode_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4645, "length": 13, "value": "\"sdk_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4697, "length": 26, "value": "\"sdk_programming_language\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4753, "length": 17, "value": "\"sdk_author_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4798, "length": 14, "value": "\"sdk_platform\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4851, "length": 26, "value": "\"sdk_distribution_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4913, "length": 18, "value": "\"sdk_distribution\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 5093, - "length": 13, - "value": "\"has_receipt\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 5093, "length": 13, "value": "\"has_receipt\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "FloatLiteral", - "offset": 369, + "offset": 384, "length": 4, "value": "0.30" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "IntegerLiteral", - "offset": 541, + "offset": 556, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "IntegerLiteral", - "offset": 809, + "offset": 824, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "kind": "BooleanLiteral", + "offset": 1758, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "FloatLiteral", - "offset": 3697, + "offset": 3283, "length": 4, "value": "0.33" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "BooleanLiteral", - "offset": 3800, + "offset": 3386, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "BooleanLiteral", - "offset": 3848, + "offset": 3434, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "BooleanLiteral", - "offset": 35779, + "offset": 11155, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "kind": "Array", + "offset": 11348, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "BooleanLiteral", - "offset": 43159, + "offset": 33291, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", - "kind": "StringLiteral", - "offset": 180, - "length": 20, - "value": "\"ApptentiveKit.SurveyViewController\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", - "kind": "StringLiteral", - "offset": 180, - "length": 20, - "value": "\"ApptentiveKit.SurveyViewController\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "kind": "BooleanLiteral", + "offset": 40790, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", "kind": "Array", - "offset": 1675, + "offset": 1726, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", "kind": "StringLiteral", - "offset": 2136, + "offset": 2187, "length": 9, "value": "\"invalid\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", "kind": "StringLiteral", - "offset": 2160, + "offset": 2211, "length": 24, "value": "\"An error has occurred.\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", "kind": "StringLiteral", - "offset": 2206, + "offset": 2257, "length": 7, "value": "\"Close\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", "kind": "Array", - "offset": 2229, + "offset": 2280, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 4266, - "length": 6, - "value": "\"$and\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 4375, - "length": 5, - "value": "\"$or\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 6, - "value": "\"$not\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 4266, + "offset": 4567, "length": 6, "value": "\"$and\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 4375, + "offset": 4676, "length": 5, "value": "\"$or\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 4482, + "offset": 4783, "length": 6, "value": "\"$not\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5479, - "length": 9, - "value": "\"$exists\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5510, - "length": 5, - "value": "\"$ne\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5534, - "length": 5, - "value": "\"$eq\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5567, - "length": 6, - "value": "\"$lte\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5594, - "length": 5, - "value": "\"$lt\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5623, - "length": 5, - "value": "\"$gt\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5659, - "length": 6, - "value": "\"$gte\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5688, - "length": 14, - "value": "\"$starts_with\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5723, - "length": 12, - "value": "\"$ends_with\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 11, - "value": "\"$contains\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 9, - "value": "\"$before\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5813, - "length": 8, - "value": "\"$after\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5479, + "offset": 5780, "length": 9, "value": "\"$exists\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5510, + "offset": 5811, "length": 5, "value": "\"$ne\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5534, + "offset": 5835, "length": 5, "value": "\"$eq\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5567, + "offset": 5868, "length": 6, "value": "\"$lte\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5594, + "offset": 5895, "length": 5, "value": "\"$lt\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5623, + "offset": 5924, "length": 5, "value": "\"$gt\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5659, + "offset": 5960, "length": 6, "value": "\"$gte\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5688, + "offset": 5989, "length": 14, "value": "\"$starts_with\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5723, + "offset": 6024, "length": 12, "value": "\"$ends_with\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 11, - "value": "\"$contains\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 9, - "value": "\"$before\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5813, - "length": 8, - "value": "\"$after\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", - "kind": "StringLiteral", - "offset": 278, - "length": 33, - "value": "\"ApptentiveKit.MessageCenterComposeContainerView\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4202, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4214, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "StringLiteral", - "offset": 36567, - "length": 17, - "value": "\"SELF MATCHES %@\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "StringLiteral", - "offset": 36586, - "length": 51, - "value": "\"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,64}\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "StringLiteral", - "offset": 37821, - "length": 12, - "value": "\"message_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "StringLiteral", - "offset": 37821, - "length": 12, - "value": "\"message_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", - "kind": "BooleanLiteral", - "offset": 305, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", - "kind": "StringLiteral", - "offset": 967, - "length": 12, - "value": "\"engagement\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", - "kind": "StringLiteral", - "offset": 1008, - "length": 8, - "value": "\"person\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", - "kind": "StringLiteral", - "offset": 1045, - "length": 8, - "value": "\"device\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", - "kind": "StringLiteral", - "offset": 1082, - "length": 8, - "value": "\"random\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "kind": "StringLiteral", + "offset": 6057, + "length": 11, + "value": "\"$contains\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 220, - "length": 18, - "value": "\"ApptentiveKit.LegacyConversation\"" + "offset": 6087, + "length": 9, + "value": "\"$before\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 1770, - "length": 30, - "value": "\"Should have a view model set\"" + "offset": 6114, + "length": 8, + "value": "\"$after\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", "kind": "BooleanLiteral", - "offset": 1559, - "length": 5, - "value": "false" + "offset": 3358, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", "kind": "IntegerLiteral", - "offset": 1669, + "offset": 3415, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", "kind": "IntegerLiteral", - "offset": 1673, + "offset": 3427, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", - "kind": "BooleanLiteral", - "offset": 1523, - "length": 5, - "value": "false" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", + "kind": "IntegerLiteral", + "offset": 3438, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Event.swift", - "kind": "StringLiteral", - "offset": 4639, - "length": 5, - "value": "\"#%\/\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", + "kind": "IntegerLiteral", + "offset": 3451, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "Array", - "offset": 7259, + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", + "kind": "IntegerLiteral", + "offset": 3597, "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "BooleanLiteral", - "offset": 7283, - "length": 5, - "value": "false" + "value": "24" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "BooleanLiteral", - "offset": 8278, - "length": 5, - "value": "false" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1667, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "BooleanLiteral", - "offset": 10809, - "length": 5, - "value": "false" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", + "kind": "IntegerLiteral", + "offset": 3509, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 15943, - "length": 13, - "value": "\"app_release\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", + "kind": "IntegerLiteral", + "offset": 3521, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", "kind": "StringLiteral", - "offset": 15943, - "length": 13, - "value": "\"app_release\"" + "offset": 34038, + "length": 17, + "value": "\"SELF MATCHES %@\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", "kind": "StringLiteral", - "offset": 18034, - "length": 19, - "value": "\"client_created_at\"" + "offset": 34057, + "length": 51, + "value": "\"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,64}\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", "kind": "StringLiteral", - "offset": 18087, - "length": 30, - "value": "\"client_created_at_utc_offset\"" + "offset": 35292, + "length": 12, + "value": "\"message_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18143, - "length": 12, - "value": "\"session_id\"" + "offset": 573, + "length": 6, + "value": "\"None\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18177, - "length": 7, - "value": "\"token\"" + "offset": 607, + "length": 13, + "value": "\"Placeholder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18235, - "length": 13, - "value": "\"custom_data\"" + "offset": 653, + "length": 19, + "value": "\"Anonymous Pending\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18374, + "offset": 702, "length": 16, - "value": "\"interaction_id\"" + "value": "\"Legacy Pending\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18415, - "length": 6, - "value": "\"data\"" + "offset": 744, + "length": 11, + "value": "\"Anonymous\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18565, - "length": 7, - "value": "\"email\"" + "offset": 780, + "length": 11, + "value": "\"Logged In\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18618, - "length": 14, - "value": "\"mparticle_id\"" + "offset": 817, + "length": 12, + "value": "\"Logged Out\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 18697, - "length": 9, - "value": "\"os_name\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", + "kind": "BooleanLiteral", + "offset": 305, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", "kind": "StringLiteral", - "offset": 18732, + "offset": 967, "length": 12, - "value": "\"os_version\"" + "value": "\"engagement\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", "kind": "StringLiteral", - "offset": 18768, - "length": 10, - "value": "\"os_build\"" + "offset": 1008, + "length": 8, + "value": "\"person\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", "kind": "StringLiteral", - "offset": 18857, - "length": 23, - "value": "\"content_size_category\"" + "offset": 1045, + "length": 8, + "value": "\"device\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", "kind": "StringLiteral", - "offset": 18906, - "length": 12, - "value": "\"locale_raw\"" + "offset": 1082, + "length": 8, + "value": "\"random\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift", "kind": "StringLiteral", - "offset": 18952, - "length": 21, - "value": "\"locale_country_code\"" + "offset": 1791, + "length": 30, + "value": "\"Should have a view model set\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19008, - "length": 22, - "value": "\"locale_language_code\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift", + "kind": "BooleanLiteral", + "offset": 1580, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19056, - "length": 12, - "value": "\"utc_offset\"" + "offset": 104, + "length": 3, + "value": "\"b\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19109, - "length": 20, - "value": "\"integration_config\"" + "offset": 130, + "length": 8, + "value": "\"strong\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19167, - "length": 15, - "value": "\"advertiser_id\"" + "offset": 161, + "length": 3, + "value": "\"i\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19262, - "length": 22, - "value": "\"cf_bundle_identifier\"" + "offset": 189, + "length": 4, + "value": "\"em\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19308, - "length": 32, - "value": "\"cf_bundle_short_version_string\"" + "offset": 219, + "length": 3, + "value": "\"u\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19362, - "length": 19, - "value": "\"cf_bundle_version\"" + "offset": 252, + "length": 3, + "value": "\"s\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19413, - "length": 19, - "value": "\"app_store_receipt\"" + "offset": 280, + "length": 4, + "value": "\"li\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19461, - "length": 7, - "value": "\"debug\"" + "offset": 314, + "length": 4, + "value": "\"ul\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19503, - "length": 19, - "value": "\"overriding_styles\"" + "offset": 346, + "length": 4, + "value": "\"ol\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19555, - "length": 19, - "value": "\"deployment_target\"" + "offset": 376, + "length": 3, + "value": "\"p\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19599, - "length": 13, - "value": "\"dt_compiler\"" + "offset": 399, + "length": 5, + "value": "\"div\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19642, - "length": 19, - "value": "\"dt_platform_build\"" + "offset": 425, + "length": 6, + "value": "\"span\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19690, - "length": 18, - "value": "\"dt_platform_name\"" + "offset": 450, + "length": 4, + "value": "\"br\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19740, - "length": 21, - "value": "\"dt_platform_version\"" + "offset": 475, + "length": 3, + "value": "\"a\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19786, - "length": 14, - "value": "\"dt_sdk_build\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "Dictionary", + "offset": 1566, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19824, - "length": 13, - "value": "\"dt_sdk_name\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "Array", + "offset": 1600, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19859, - "length": 10, - "value": "\"dt_xcode\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "IntegerLiteral", + "offset": 1627, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19896, - "length": 16, - "value": "\"dt_xcode_build\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "BooleanLiteral", + "offset": 1657, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19939, - "length": 13, - "value": "\"sdk_version\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "IntegerLiteral", + "offset": 1691, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19991, - "length": 26, - "value": "\"sdk_programming_language\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "Array", + "offset": 1786, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 20047, - "length": 17, - "value": "\"sdk_author_name\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "Dictionary", + "offset": 1867, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 20092, - "length": 14, - "value": "\"sdk_platform\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "kind": "IntegerLiteral", + "offset": 775, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 20145, - "length": 26, - "value": "\"sdk_distribution_version\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "kind": "IntegerLiteral", + "offset": 779, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 20207, - "length": 18, - "value": "\"sdk_distribution\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "kind": "IntegerLiteral", + "offset": 848, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "kind": "IntegerLiteral", + "offset": 852, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "kind": "BooleanLiteral", + "offset": 629, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Event.swift", "kind": "StringLiteral", - "offset": 20296, - "length": 11, - "value": "\"automated\"" + "offset": 4674, + "length": 5, + "value": "\"#%\/\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "kind": "Array", + "offset": 7315, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "kind": "BooleanLiteral", + "offset": 7339, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "kind": "BooleanLiteral", + "offset": 8342, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "kind": "BooleanLiteral", + "offset": 10873, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20332, - "length": 8, - "value": "\"hidden\"" + "offset": 16003, + "length": 13, + "value": "\"app_release\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18034, + "offset": 18094, "length": 19, "value": "\"client_created_at\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18087, + "offset": 18147, "length": 30, "value": "\"client_created_at_utc_offset\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18143, + "offset": 18203, "length": 12, "value": "\"session_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18177, + "offset": 18237, "length": 7, "value": "\"token\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18235, + "offset": 18295, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18374, + "offset": 18434, "length": 16, "value": "\"interaction_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18415, + "offset": 18475, "length": 6, "value": "\"data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18565, + "offset": 18625, "length": 7, "value": "\"email\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18618, + "offset": 18678, "length": 14, "value": "\"mparticle_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18697, + "offset": 18757, "length": 9, "value": "\"os_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18732, + "offset": 18792, "length": 12, "value": "\"os_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18768, + "offset": 18828, "length": 10, "value": "\"os_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18857, + "offset": 18917, "length": 23, "value": "\"content_size_category\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18906, + "offset": 18966, "length": 12, "value": "\"locale_raw\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18952, + "offset": 19012, "length": 21, "value": "\"locale_country_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19008, + "offset": 19068, "length": 22, "value": "\"locale_language_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19056, + "offset": 19116, "length": 12, "value": "\"utc_offset\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19109, + "offset": 19169, "length": 20, "value": "\"integration_config\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19167, + "offset": 19227, "length": 15, "value": "\"advertiser_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19262, + "offset": 19322, "length": 22, "value": "\"cf_bundle_identifier\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19308, + "offset": 19368, "length": 32, "value": "\"cf_bundle_short_version_string\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19362, + "offset": 19422, "length": 19, "value": "\"cf_bundle_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19413, + "offset": 19473, "length": 19, "value": "\"app_store_receipt\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19461, + "offset": 19521, "length": 7, "value": "\"debug\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19503, + "offset": 19563, "length": 19, "value": "\"overriding_styles\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19555, + "offset": 19615, "length": 19, "value": "\"deployment_target\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19599, + "offset": 19659, "length": 13, "value": "\"dt_compiler\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19642, + "offset": 19702, "length": 19, "value": "\"dt_platform_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19690, + "offset": 19750, "length": 18, "value": "\"dt_platform_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19740, + "offset": 19800, "length": 21, "value": "\"dt_platform_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19786, + "offset": 19846, "length": 14, "value": "\"dt_sdk_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19824, + "offset": 19884, "length": 13, "value": "\"dt_sdk_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19859, + "offset": 19919, "length": 10, "value": "\"dt_xcode\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19896, + "offset": 19956, "length": 16, "value": "\"dt_xcode_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19939, + "offset": 19999, "length": 13, "value": "\"sdk_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19991, + "offset": 20051, "length": 26, "value": "\"sdk_programming_language\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20047, + "offset": 20107, "length": 17, "value": "\"sdk_author_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20092, + "offset": 20152, "length": 14, "value": "\"sdk_platform\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20145, + "offset": 20205, "length": 26, "value": "\"sdk_distribution_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20207, + "offset": 20267, "length": 18, "value": "\"sdk_distribution\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20296, + "offset": 20356, "length": 11, "value": "\"automated\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20332, + "offset": 20392, "length": 8, "value": "\"hidden\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20592, + "offset": 20652, "length": 8, "value": "\"file[]\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 595, - "length": 22, - "value": "\"support_display_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 646, - "length": 23, - "value": "\"support_display_email\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 701, - "length": 19, - "value": "\"support_image_url\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 749, - "length": 15, - "value": "\"hide_branding\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 794, - "length": 16, - "value": "\"message_center\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 846, - "length": 24, - "value": "\"message_center_enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 900, - "length": 17, - "value": "\"metrics_enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 957, - "length": 23, - "value": "\"apptimize_integration\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1017, - "length": 15, - "value": "\"collect_ad_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 595, - "length": 22, - "value": "\"support_display_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 646, - "length": 23, - "value": "\"support_display_email\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 701, - "length": 19, - "value": "\"support_image_url\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 749, - "length": 15, - "value": "\"hide_branding\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 794, - "length": 16, - "value": "\"message_center\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 846, - "length": 24, - "value": "\"message_center_enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 900, - "length": 17, - "value": "\"metrics_enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 957, - "length": 23, - "value": "\"apptimize_integration\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1017, - "length": 15, - "value": "\"collect_ad_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1402, - "length": 9, - "value": "\"fg_poll\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1457, - "length": 9, - "value": "\"bg_poll\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1499, - "length": 16, - "value": "\"email_required\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1553, - "length": 20, - "value": "\"notification_popup\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1402, + "offset": 1493, "length": 9, "value": "\"fg_poll\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1457, + "offset": 1548, "length": 9, "value": "\"bg_poll\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1499, - "length": 16, - "value": "\"email_required\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1553, - "length": 20, - "value": "\"notification_popup\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1746, - "length": 9, - "value": "\"enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1746, - "length": 9, - "value": "\"enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1293, + "offset": 1642, "length": 13, - "value": "\"submit_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1338, - "length": 18, - "value": "\"validation_error\"" + "value": "\"last_update\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1385, - "length": 13, - "value": "\"description\"" + "offset": 1685, + "length": 16, + "value": "\"message_center\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1430, + "offset": 1732, "length": 17, - "value": "\"success_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1482, - "length": 22, - "value": "\"show_success_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1533, - "length": 15, - "value": "\"required_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1609, - "length": 21, - "value": "\"close_confirm_title\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1671, - "length": 23, - "value": "\"close_confirm_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1743, - "length": 26, - "value": "\"close_confirm_close_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1817, - "length": 25, - "value": "\"close_confirm_back_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1877, - "length": 22, - "value": "\"terms_and_conditions\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1293, - "length": 13, - "value": "\"submit_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1338, - "length": 18, - "value": "\"validation_error\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1385, - "length": 13, - "value": "\"description\"" + "value": "\"hibernate_until\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1430, + "offset": 1780, "length": 17, - "value": "\"success_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1482, - "length": 22, - "value": "\"show_success_message\"" + "value": "\"metrics_enabled\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1533, - "length": 15, - "value": "\"required_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 464, + "length": 4, + "value": "17.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1609, - "length": 21, - "value": "\"close_confirm_title\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 535, + "length": 4, + "value": "13.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1671, - "length": 23, - "value": "\"close_confirm_message\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 606, + "length": 4, + "value": "12.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1743, - "length": 26, - "value": "\"close_confirm_close_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 677, + "length": 4, + "value": "11.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1817, - "length": 25, - "value": "\"close_confirm_back_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 751, + "length": 4, + "value": "15.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1877, - "length": 22, - "value": "\"terms_and_conditions\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 821, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "StringLiteral", "offset": 350, "length": 5, "value": "\"ios\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "IntegerLiteral", "offset": 622, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "IntegerLiteral", "offset": 638, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 677, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "IntegerLiteral", "offset": 883, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "IntegerLiteral", "offset": 899, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 936, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 1091, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 1176, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 1288, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 2200, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 2347, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", "kind": "StringLiteral", "offset": 266, "length": 32, "value": "\"com.apptentive.payloadEnqueued\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", "kind": "StringLiteral", "offset": 350, "length": 31, "value": "\"com.apptentive.payloadSending\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", "kind": "StringLiteral", "offset": 430, "length": 28, "value": "\"com.apptentive.payloadSent\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", "kind": "StringLiteral", "offset": 509, "length": 30, "value": "\"com.apptentive.payloadFailed\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", "kind": "StringLiteral", "offset": 705, "length": 39, "value": "\"com.apptentive.apptentiveEventEngaged\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "StringLiteral", - "offset": 921, + "offset": 966, "length": 21, "value": "\"MessageCellReceived\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "StringLiteral", - "offset": 979, + "offset": 1024, "length": 17, "value": "\"MessageSentCell\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "StringLiteral", - "offset": 1038, + "offset": 1083, "length": 22, "value": "\"AutomatedMessageCell\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "kind": "BooleanLiteral", + "offset": 8080, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "BooleanLiteral", - "offset": 27554, + "offset": 26983, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "IntegerLiteral", - "offset": 27655, + "offset": 27084, "length": 6, "value": "0xFFFF" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "IntegerLiteral", - "offset": 28105, + "offset": 27534, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 27, - "value": "\"ApptentiveKit.MessageCenterViewController\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPRequestRetrier.swift", + "kind": "FloatLiteral", + "offset": 3555, + "length": 3, + "value": "5.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 27, - "value": "\"ApptentiveKit.MessageCenterViewController\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPRequestRetrier.swift", + "kind": "FloatLiteral", + "offset": 3581, + "length": 3, + "value": "2.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPRequestRetrier.swift", "kind": "BooleanLiteral", - "offset": 1182, + "offset": 3604, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "kind": "BooleanLiteral", + "offset": 1269, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "BooleanLiteral", - "offset": 1286, + "offset": 1373, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "BooleanLiteral", - "offset": 1394, + "offset": 1481, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "IntegerLiteral", - "offset": 1766, + "offset": 1853, "length": 3, "value": "100" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2849, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "IntegerLiteral", - "offset": 6500, + "offset": 7516, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", - "kind": "StringLiteral", - "offset": 9554, - "length": 24, - "value": "\"invoked_interaction_id\"" + "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", - "kind": "StringLiteral", - "offset": 9603, - "length": 11, - "value": "\"action_id\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "kind": "IntegerLiteral", + "offset": 7563, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "StringLiteral", - "offset": 9554, + "offset": 10389, "length": 24, "value": "\"invoked_interaction_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "StringLiteral", - "offset": 9603, + "offset": 10438, "length": 11, "value": "\"action_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 1277, + "offset": 1259, "length": 2, "value": "15" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 1381, + "offset": 1363, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "BooleanLiteral", - "offset": 1654, + "offset": 1636, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 2425, + "offset": 2427, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 4064, + "offset": 4066, "length": 2, "value": "36" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "FloatLiteral", - "offset": 4118, + "offset": 4120, "length": 7, "value": "22.3333" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 4177, + "offset": 4179, "length": 2, "value": "36" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 4229, + "offset": 4231, "length": 2, "value": "24" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 4283, + "offset": 4285, "length": 2, "value": "24" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/ProfileView.swift", "kind": "BooleanLiteral", - "offset": 4394, - "length": 5, - "value": "false" + "offset": 329, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/ProfileView.swift", "kind": "BooleanLiteral", - "offset": 4670, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", - "kind": "StringLiteral", - "offset": 296, - "length": 10, - "value": "\"ApptentiveKit.DialogView\"" + "offset": 755, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", "kind": "BooleanLiteral", "offset": 292, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", "kind": "StringLiteral", "offset": 886, "length": 14, "value": "\"interactions\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", "kind": "StringLiteral", "offset": 933, "length": 12, "value": "\"codePoints\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", - "kind": "StringLiteral", - "offset": 209, - "length": 16, - "value": "\"ApptentiveKit.LegacyEngagement\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift", + "kind": "BooleanLiteral", + "offset": 342, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift", "kind": "StringLiteral", "offset": 770, "length": 15, "value": "\"random_values\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift", - "kind": "StringLiteral", - "offset": 201, - "length": 12, - "value": "\"ApptentiveKit.LegacyRandom\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift", + "kind": "BooleanLiteral", + "offset": 337, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift", "kind": "StringLiteral", "offset": 750, "length": 12, "value": "\"customData\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift", - "kind": "StringLiteral", - "offset": 201, - "length": 12, - "value": "\"ApptentiveKit.LegacyDevice\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria+Logging.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria+Logging.swift", "kind": "IntegerLiteral", - "offset": 4400, + "offset": 4430, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/EditProfileViewController.swift", - "kind": "StringLiteral", - "offset": 183, - "length": 25, - "value": "\"ApptentiveKit.EditProfileViewController\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadata.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadata.swift", "kind": "BooleanLiteral", "offset": 322, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadata.swift", - "kind": "StringLiteral", - "offset": 229, - "length": 26, - "value": "\"ApptentiveKit.LegacyConversationMetadata\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", - "kind": "StringLiteral", - "offset": 1018, - "length": 7, - "value": "\"email\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", - "kind": "StringLiteral", - "offset": 1053, - "length": 14, - "value": "\"mparticle_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", - "kind": "StringLiteral", - "offset": 1094, - "length": 13, - "value": "\"custom_data\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", "kind": "StringLiteral", "offset": 1018, "length": 7, "value": "\"email\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", "kind": "StringLiteral", "offset": 1053, "length": 14, "value": "\"mparticle_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", "kind": "StringLiteral", "offset": 1094, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", - "kind": "StringLiteral", - "offset": 1026, - "length": 13, - "value": "\"custom_data\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", - "kind": "StringLiteral", - "offset": 1067, - "length": 11, - "value": "\"automated\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", - "kind": "StringLiteral", - "offset": 1103, - "length": 8, - "value": "\"hidden\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", "kind": "StringLiteral", "offset": 1026, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", "kind": "StringLiteral", "offset": 1067, "length": 11, "value": "\"automated\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", "kind": "StringLiteral", "offset": 1103, "length": 8, "value": "\"hidden\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 21099, + "offset": 14199, "length": 5, "value": "15411" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23299, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23373, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23443, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23510, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23581, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23669, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23744, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23796, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23852, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23924, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 24007, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 24145, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23299, + "offset": 16236, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23373, + "offset": 16310, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23443, + "offset": 16380, "length": 1, "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23510, + "offset": 16447, "length": 1, "value": "3" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23581, + "offset": 16518, "length": 1, "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23669, + "offset": 16606, "length": 1, "value": "5" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23744, + "offset": 16681, "length": 1, "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23796, + "offset": 16733, "length": 1, "value": "7" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23852, + "offset": 16789, "length": 1, "value": "8" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23924, + "offset": 16861, "length": 1, "value": "9" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 24007, + "offset": 16944, "length": 2, "value": "10" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 24145, + "offset": 17082, "length": 2, "value": "11" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "BooleanLiteral", - "offset": 25125, + "offset": 18058, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "BooleanLiteral", - "offset": 26514, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "StringLiteral", - "offset": 24283, - "length": 23, - "value": "\"ApptentiveKit.ApptentiveConfiguration\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 27878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 27956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28052, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28115, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 27878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 27956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28052, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28115, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28423, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28471, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28520, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28575, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28659, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28724, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28365, + "offset": 19939, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28423, + "offset": 19997, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28471, + "offset": 20045, "length": 1, "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28520, + "offset": 20094, "length": 1, "value": "3" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28575, + "offset": 20149, "length": 1, "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28659, + "offset": 20233, "length": 1, "value": "5" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28724, + "offset": 20298, "length": 1, "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "StringLiteral", - "offset": 29276, - "length": 18, - "value": "\"ApptentiveKit.TermsAndConditions\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2476, - "length": 9, - "value": "\"os_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2511, - "length": 12, - "value": "\"os_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2547, - "length": 10, - "value": "\"os_build\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2636, - "length": 23, - "value": "\"content_size_category\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2685, - "length": 12, - "value": "\"locale_raw\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2731, - "length": 21, - "value": "\"locale_country_code\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2787, - "length": 22, - "value": "\"locale_language_code\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2850, - "length": 20, - "value": "\"integration_config\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2908, - "length": 15, - "value": "\"advertiser_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2950, - "length": 13, - "value": "\"custom_data\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2476, "length": 9, "value": "\"os_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2511, "length": 12, "value": "\"os_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2547, "length": 10, "value": "\"os_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2636, "length": 23, "value": "\"content_size_category\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2685, "length": 12, "value": "\"locale_raw\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2731, "length": 21, "value": "\"locale_country_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2787, "length": 22, "value": "\"locale_language_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2850, "length": 20, "value": "\"integration_config\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2908, "length": 15, "value": "\"advertiser_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2950, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", "kind": "StringLiteral", - "offset": 228, + "offset": 241, "length": 16, "value": "\"Conversation.A\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", "kind": "StringLiteral", - "offset": 279, + "offset": 292, "length": 16, "value": "\"PayloadQueue.A\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", "kind": "StringLiteral", - "offset": 330, + "offset": 343, "length": 15, "value": "\"MessageList.A\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", "kind": "StringLiteral", - "offset": 377, - "length": 7, - "value": "\"plist\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 6614, - "length": 14, - "value": "\"Distribution\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 6645, + "offset": 390, "length": 7, "value": "\"plist\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "Array", - "offset": 6804, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 6887, - "length": 28, - "value": "\"CFBundleShortVersionString\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 6979, - "length": 65, - "value": "\"Unable to read SDK version from ApptentiveKit's Info.plist file\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 7065, - "length": 13, - "value": "\"Unavailable\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 7164, - "length": 28, - "value": "\"CFBundleShortVersionString\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 7313, - "length": 133, - "value": "\"ApptentiveKit framework is damaged! Version in Info.plist (\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 7398, - "length": 1, - "value": "\") does not match SDK version (\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 7444, - "length": 1, - "value": "\")\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/HostContext.swift", + "kind": "BooleanLiteral", + "offset": 4926, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "StringLiteral", - "offset": 982, + "offset": 1083, "length": 7, "value": "\"error\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "StringLiteral", - "offset": 1018, + "offset": 1119, "length": 9, "value": "\"payload\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 2469, + "offset": 3191, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 5766, + "offset": 6832, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 5889, + "offset": 6955, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 5990, + "offset": 7056, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 6128, + "offset": 7194, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "kind": "BooleanLiteral", + "offset": 7703, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 6445, + "offset": 11970, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyBackgroundView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyBackgroundView.swift", "kind": "Array", "offset": 295, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyBackgroundView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyBackgroundView.swift", "kind": "Array", "offset": 350, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", - "kind": "IntegerLiteral", - "offset": 1392, - "length": 2, - "value": "44" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "BooleanLiteral", + "offset": 3112, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", - "kind": "IntegerLiteral", - "offset": 1404, + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "BooleanLiteral", + "offset": 3443, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "Array", + "offset": 3586, "length": 2, - "value": "44" + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", - "kind": "BooleanLiteral", - "offset": 2594, - "length": 4, - "value": "true" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "StringLiteral", + "offset": 3617, + "length": 7, + "value": "\"draft\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", "kind": "BooleanLiteral", - "offset": 2907, + "offset": 3681, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", - "kind": "StringLiteral", - "offset": 2625, - "length": 16, - "value": "\"interaction_id\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "IntegerLiteral", + "offset": 3728, + "length": 2, + "value": "30" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", - "kind": "StringLiteral", - "offset": 2666, - "length": 6, - "value": "\"data\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "IntegerLiteral", + "offset": 3772, + "length": 3, + "value": "300" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", - "kind": "StringLiteral", - "offset": 2704, - "length": 13, - "value": "\"custom_data\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "IntegerLiteral", + "offset": 3866, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "IntegerLiteral", + "offset": 3944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", "kind": "StringLiteral", "offset": 2625, "length": 16, "value": "\"interaction_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", "kind": "StringLiteral", "offset": 2666, "length": 6, "value": "\"data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", "kind": "StringLiteral", "offset": 2704, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", "kind": "IntegerLiteral", - "offset": 648, + "offset": 636, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", "kind": "IntegerLiteral", - "offset": 750, + "offset": 738, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1251, - "length": 13, - "value": "\"description\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1295, - "length": 17, - "value": "\"success_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1353, - "length": 22, - "value": "\"show_success_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1407, - "length": 18, - "value": "\"validation_error\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1454, - "length": 15, - "value": "\"required_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1508, - "length": 21, - "value": "\"close_confirm_title\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1570, - "length": 23, - "value": "\"close_confirm_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1643, - "length": 26, - "value": "\"close_confirm_close_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1718, - "length": 25, - "value": "\"close_confirm_back_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1778, - "length": 22, - "value": "\"terms_and_conditions\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1829, - "length": 15, - "value": "\"question_sets\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 11, - "value": "\"render_as\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1913, - "length": 19, - "value": "\"intro_button_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", + "kind": "IntegerLiteral", + "offset": 1589, + "length": 3, + "value": "270" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1967, - "length": 21, - "value": "\"success_button_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", + "kind": "IntegerLiteral", + "offset": 1602, + "length": 2, + "value": "45" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2019, - "length": 17, - "value": "\"disclaimer_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Random.swift", + "kind": "BooleanLiteral", + "offset": 1441, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1251, + "offset": 3164, "length": 13, "value": "\"description\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1295, + "offset": 3208, "length": 17, "value": "\"success_message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1353, + "offset": 3266, "length": 22, "value": "\"show_success_message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1407, + "offset": 3320, "length": 18, "value": "\"validation_error\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1454, + "offset": 3367, "length": 15, "value": "\"required_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1508, + "offset": 3421, "length": 21, "value": "\"close_confirm_title\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1570, + "offset": 3483, "length": 23, "value": "\"close_confirm_message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1643, + "offset": 3556, "length": 26, "value": "\"close_confirm_close_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1718, + "offset": 3631, "length": 25, "value": "\"close_confirm_back_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1778, + "offset": 3691, "length": 22, "value": "\"terms_and_conditions\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1829, + "offset": 3742, "length": 15, "value": "\"question_sets\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1869, + "offset": 3782, "length": 11, "value": "\"render_as\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1913, + "offset": 3826, "length": 19, "value": "\"intro_button_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1967, + "offset": 3880, "length": 21, "value": "\"success_button_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 2019, + "offset": 3932, "length": 17, "value": "\"disclaimer_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2731, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2823, - "length": 15, - "value": "\"error_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2899, - "length": 16, - "value": "\"answer_choices\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2949, - "length": 16, - "value": "\"min_selections\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2999, - "length": 16, - "value": "\"max_selections\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3078, - "length": 15, - "value": "\"freeform_hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3123, - "length": 5, - "value": "\"min\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3157, - "length": 5, - "value": "\"max\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3195, - "length": 11, - "value": "\"min_label\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3239, - "length": 11, - "value": "\"max_label\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2731, + "offset": 6147, "length": 7, "value": "\"value\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 2823, + "offset": 6239, "length": 15, "value": "\"error_message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 2899, + "offset": 6315, "length": 16, "value": "\"answer_choices\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 2949, + "offset": 6365, "length": 16, "value": "\"min_selections\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 2999, + "offset": 6415, "length": 16, "value": "\"max_selections\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3078, + "offset": 6494, "length": 15, "value": "\"freeform_hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3123, + "offset": 6539, "length": 5, "value": "\"min\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3157, + "offset": 6573, "length": 5, "value": "\"max\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3195, + "offset": 6611, "length": 11, "value": "\"min_label\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3239, + "offset": 6655, "length": 11, "value": "\"max_label\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3334, + "offset": 6750, "length": 13, "value": "\"multichoice\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3376, + "offset": 6792, "length": 13, "value": "\"multiselect\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3418, + "offset": 6834, "length": 12, "value": "\"singleline\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3334, - "length": 13, - "value": "\"multichoice\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3376, - "length": 13, - "value": "\"multiselect\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3418, - "length": 12, - "value": "\"singleline\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3799, + "offset": 7722, "length": 6, "value": "\"hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3799, - "length": 6, - "value": "\"hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3900, + "offset": 7823, "length": 15, "value": "\"select_option\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3945, + "offset": 7868, "length": 14, "value": "\"select_other\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3900, - "length": 15, - "value": "\"select_option\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3945, - "length": 14, - "value": "\"select_other\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 4366, - "length": 13, - "value": "\"button_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 4366, + "offset": 8289, "length": 13, "value": "\"button_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 5454, + "offset": 9377, "length": 22, "value": "\"next_question_set_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 5454, - "length": 22, - "value": "\"next_question_set_id\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift", + "kind": "BooleanLiteral", + "offset": 1354, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift", "kind": "StringLiteral", - "offset": 1253, + "offset": 1715, "length": 16, "value": "\"interaction_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift", "kind": "StringLiteral", - "offset": 1253, + "offset": 1898, "length": 16, - "value": "\"interaction_id\"" + "value": "\"application_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AttachmentManager.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AttachmentManager.swift", "kind": "StringLiteral", - "offset": 575, + "offset": 626, "length": 3, "value": "\"#\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AttachmentManager.swift", "kind": "StringLiteral", - "offset": 921, - "length": 19, - "value": "\"automated_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 970, - "length": 16, - "value": "\"error_messages\"" + "offset": 369, + "length": 17, + "value": "\"ApptentiveKit.AttachmentManager\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 921, "length": 19, "value": "\"automated_message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 970, "length": 16, "value": "\"error_messages\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1398, "length": 11, "value": "\"hint_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1440, "length": 13, "value": "\"send_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1483, "length": 12, "value": "\"send_start\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1522, "length": 9, "value": "\"send_ok\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1560, "length": 11, "value": "\"send_fail\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1601, "length": 12, "value": "\"close_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1650, "length": 20, "value": "\"close_confirm_body\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1709, "length": 22, "value": "\"close_discard_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1769, "length": 21, "value": "\"close_cancel_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1398, - "length": 11, - "value": "\"hint_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1440, - "length": 13, - "value": "\"send_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1483, - "length": 12, - "value": "\"send_start\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1522, - "length": 9, - "value": "\"send_ok\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1560, - "length": 11, - "value": "\"send_fail\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 12, - "value": "\"close_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1650, - "length": 20, - "value": "\"close_confirm_body\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1709, - "length": 22, - "value": "\"close_discard_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1769, - "length": 21, - "value": "\"close_cancel_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1976, - "length": 17, - "value": "\"http_error_body\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2030, - "length": 20, - "value": "\"network_error_body\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1976, "length": 17, "value": "\"http_error_body\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2030, "length": 20, "value": "\"network_error_body\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2260, - "length": 11, - "value": "\"image_url\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2260, "length": 11, "value": "\"image_url\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2649, - "length": 11, - "value": "\"name_hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2690, - "length": 12, - "value": "\"email_hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2733, - "length": 13, - "value": "\"skip_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2777, - "length": 13, - "value": "\"save_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2827, - "length": 19, - "value": "\"email_explanation\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2649, "length": 11, "value": "\"name_hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2690, "length": 12, "value": "\"email_hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2733, "length": 13, "value": "\"skip_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2777, "length": 13, "value": "\"save_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2827, "length": 19, "value": "\"email_explanation\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 3059, - "length": 11, - "value": "\"name_hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 3100, - "length": 12, - "value": "\"email_hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 3143, - "length": 13, - "value": "\"skip_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 3187, - "length": 13, - "value": "\"save_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 3059, "length": 11, "value": "\"name_hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 3100, "length": 12, "value": "\"email_hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 3143, "length": 13, "value": "\"skip_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 3187, "length": 13, "value": "\"save_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 7577, + "offset": 8488, "length": 5, "value": "\"GET\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 7598, + "offset": 8509, "length": 5, "value": "\"PUT\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 7620, + "offset": 8531, "length": 6, "value": "\"POST\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 7645, + "offset": 8556, "length": 8, "value": "\"DELETE\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", - "kind": "StringLiteral", - "offset": 7577, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 7598, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", - "kind": "StringLiteral", - "offset": 7620, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", - "kind": "StringLiteral", - "offset": 8104, + "offset": 9015, "length": 32, "value": "\"application\/json;charset=UTF-8\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 8166, + "offset": 9077, "length": 26, "value": "\"application\/octet-stream\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Interaction.swift", - "kind": "StringLiteral", - "offset": 2896, - "length": 13, - "value": "\"api_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Interaction.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Interaction.swift", "kind": "StringLiteral", - "offset": 2896, + "offset": 2635, "length": 13, "value": "\"api_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", - "kind": "StringLiteral", - "offset": 390, - "length": 10, - "value": "\"yes_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", - "kind": "StringLiteral", - "offset": 423, - "length": 9, - "value": "\"no_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", "kind": "StringLiteral", - "offset": 390, + "offset": 752, "length": 10, "value": "\"yes_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", "kind": "StringLiteral", - "offset": 423, + "offset": 785, "length": 9, "value": "\"no_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "BooleanLiteral", - "offset": 676, + "offset": 689, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 856, + "offset": 862, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 1675, + "offset": 1852, "length": 20, "value": "\"person.crop.circle\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 2095, + "offset": 2188, "length": 7, "value": "\"xmark\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "StringLiteral", + "offset": 2935, + "length": 11, + "value": "\"paperclip\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 2802, + "offset": 2997, "length": 23, "value": "\"paperclip.circle.fill\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 3024, + "offset": 3248, + "length": 12, + "value": "\"paperplane\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "StringLiteral", + "offset": 3311, "length": 24, "value": "\"paperplane.circle.fill\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 3226, + "offset": 3496, "length": 19, "value": "\"messageSentBubble\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "9" + "offset": 3648, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3378, - "length": 1, - "value": "9" + "offset": 3658, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3389, + "offset": 3670, "length": 2, - "value": "14" + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3400, + "offset": 3681, "length": 2, - "value": "18" + "value": "52" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 3584, + "offset": 3830, "length": 23, "value": "\"messageReceivedBubble\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3731, - "length": 1, - "value": "9" + "offset": 3986, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3740, + "offset": 3996, "length": 2, - "value": "18" + "value": "52" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3752, + "offset": 4008, "length": 2, - "value": "14" + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3763, - "length": 1, - "value": "9" + "offset": 4019, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 3963, + "offset": 4185, "length": 10, "value": "\"document\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 4097, + "offset": 4328, "length": 2, "value": "14" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 4107, + "offset": 4338, "length": 1, "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 4118, + "offset": 4349, "length": 1, "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 4128, + "offset": 4359, "length": 2, "value": "14" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", - "kind": "StringLiteral", - "offset": 4329, - "length": 19, - "value": "\"minus.circle.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 4432, + "offset": 4507, "length": 19, "value": "\"minus.circle.fill\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 4821, + "offset": 4833, "length": 8, "value": "\"circle\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 5000, + "offset": 4974, "length": 8, "value": "\"square\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 5203, - "length": 30, - "value": "\"smallcircle.fill.circle.fill\"" + "offset": 5139, + "length": 32, + "value": "\"smallcircle.filled.circle.fill\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 5421, + "offset": 5321, "length": 23, "value": "\"checkmark.square.fill\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 9295, + "offset": 8329, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 9305, + "offset": 8339, "length": 4, "value": "0.42" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 9317, + "offset": 8351, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 9327, + "offset": 8361, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "IntegerLiteral", + "offset": 9281, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "FloatLiteral", + "offset": 9291, + "length": 4, + "value": "0.28" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 10266, + "offset": 9303, + "length": 4, + "value": "0.24" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "IntegerLiteral", + "offset": 9316, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "FloatLiteral", + "offset": 9369, "length": 4, "value": "0.86" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 10279, + "offset": 9382, "length": 3, "value": "0.1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 10290, + "offset": 9393, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 10300, + "offset": 9403, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 10344, + "offset": 14978, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 10354, + "offset": 14988, "length": 4, "value": "0.28" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 10366, + "offset": 15000, "length": 4, "value": "0.24" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 10379, + "offset": 15013, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 16331, + "offset": 15066, "length": 4, "value": "0.86" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 16344, + "offset": 15079, "length": 3, "value": "0.1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 16355, + "offset": 15090, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 16365, + "offset": 15100, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 16409, - "length": 1, + "offset": 22586, + "length": 15, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", - "kind": "FloatLiteral", - "offset": 16419, - "length": 4, - "value": "0.28" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "IntegerLiteral", + "offset": 22927, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", - "kind": "FloatLiteral", - "offset": 16431, - "length": 4, - "value": "0.24" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "IntegerLiteral", + "offset": 23160, + "length": 2, + "value": "34" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 16444, + "offset": 23336, "length": 1, - "value": "1" + "value": "8" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 22781, - "length": 15, - "value": "1" + "offset": 23490, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 22781, - "length": 15, - "value": "1" + "offset": 23502, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 23128, - "length": 1, - "value": "2" + "offset": 23797, + "length": 2, + "value": "32" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 638, "length": 17, "value": "\"apptentiveError\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 809, "length": 24, "value": "\"apptentiveGroupPrimary\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 991, "length": 26, "value": "\"apptentiveGroupSecondary\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1183, "length": 30, "value": "\"apptentiveRangeControlBorder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1367, "length": 24, "value": "\"attachmentDeleteButton\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1527, "length": 15, "value": "\"barForeground\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1666, "length": 9, "value": "\"barTint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1805, "length": 12, "value": "\"buttonTint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1949, "length": 13, "value": "\"choiceLabel\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2104, "length": 18, "value": "\"dialogButtonText\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2262, "length": 17, "value": "\"dialogSeparator\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2409, "length": 12, "value": "\"dialogText\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2551, "length": 12, "value": "\"disclaimer\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2705, "length": 18, "value": "\"imageNotSelected\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2867, "length": 19, "value": "\"instructionsLabel\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 3036, "length": 22, "value": "\"messageBubbleInbound\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 3210, "length": 23, "value": "\"messageBubbleOutbound\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 3381, "length": 21, "value": "\"messageLabelInbound\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 3556, "length": 24, "value": "\"messageTextInputBorder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 3706, "length": 10, "value": "\"question\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 3892, - "length": 35, - "value": "\"rangeNotSelectedSegmentBackground\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 4073, + "offset": 3862, "length": 20, "value": "\"surveyGreetingText\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 4237, + "offset": 4026, "length": 19, "value": "\"surveyImageChoice\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 4394, + "offset": 4183, "length": 16, "value": "\"termsOfService\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 4538, + "offset": 4327, "length": 11, "value": "\"textInput\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 4697, + "offset": 4486, "length": 21, "value": "\"textInputBackground\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 4858, + "offset": 4647, "length": 17, "value": "\"textInputBorder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 5031, + "offset": 4820, "length": 25, "value": "\"textInputBorderSelected\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 5206, + "offset": 4995, "length": 22, "value": "\"textInputPlaceholder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 5388, + "offset": 5177, "length": 27, "value": "\"unselectedSurveyIndicator\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 5662, - "length": 18, - "value": "\"attachmentButton\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 5830, - "length": 23, - "value": "\"checkmark.square.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 5975, - "length": 8, - "value": "\"circle\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 6099, - "length": 5, - "value": "\"doc\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 6230, + "offset": 5435, "length": 10, "value": "\"document\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 6392, + "offset": 5597, "length": 23, "value": "\"messageReceivedBubble\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 6559, + "offset": 5764, "length": 19, "value": "\"messageSentBubble\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 6720, - "length": 19, - "value": "\"minus.circle.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 6889, - "length": 23, - "value": "\"paperclip.circle.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7064, - "length": 24, - "value": "\"paperplane.circle.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7232, - "length": 20, - "value": "\"person.crop.circle\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7415, - "length": 30, - "value": "\"smallcircle.fill.circle.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7567, - "length": 8, - "value": "\"square\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7695, - "length": 7, - "value": "\"xmark\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphoneos\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7833, - "length": 13, - "value": "\"xmark.small\"" } ] } \ No newline at end of file diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.private.swiftinterface b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.private.swiftinterface index d224b6d..868e3bd 100644 --- a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.private.swiftinterface +++ b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -1,8 +1,10 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) -// swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ApptentiveKit +// swift-compiler-version: Apple Swift version 6.2.3 (swiftlang-6.2.3.3.21 clang-1700.6.3.2) +// swift-module-flags: -target arm64-apple-ios15.0 -enable-objc-interop -enable-library-evolution -swift-version 6 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -module-name ApptentiveKit +// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.3 import CommonCrypto import CoreTelephony +import CryptoKit import DeveloperToolsSupport import Foundation import MobileCoreServices @@ -11,41 +13,48 @@ import PhotosUI import QuickLook import QuickLookThumbnailing import SafariServices +import Security import StoreKit import Swift import SwiftUI import UIKit +import UniformTypeIdentifiers +import UserNotifications import WebKit import _Concurrency import _StringProcessing import _SwiftConcurrencyShims -@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate { - @_Concurrency.MainActor(unsafe) @objc override dynamic public var next: UIKit.UIResponder? { +@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var next: UIKit.UIResponder? { @objc get } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool) - @_Concurrency.MainActor(unsafe) public func dismiss() - @_Concurrency.MainActor(unsafe) public func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage imageData: ApptentiveKit.DialogViewModel.Image) + #endif + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool) + @_Concurrency.MainActor public func dismiss() + @_Concurrency.MainActor public func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage imageData: ApptentiveKit.DialogViewModel.Image) @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class EnjoymentDialogViewController : ApptentiveKit.DialogViewController { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class EnjoymentDialogViewController : ApptentiveKit.DialogViewController { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class TextModalViewController : ApptentiveKit.DialogViewController { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class TextModalViewController : ApptentiveKit.DialogViewController { @objc deinit } extension ApptentiveKit.DialogViewModel { public enum Image : Swift.Equatable { case none case loading(altText: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout) - case loaded(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout, maxHeight: CoreFoundation.CGFloat) + case loaded(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout) public enum Layout : Swift.String { case fullWidth case leading case trailing case center + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get @@ -58,13 +67,15 @@ extension ApptentiveKit.DialogViewModel { @_hasMissingDesignatedInitializers public class Action { final public let label: Swift.String final public let actionType: ApptentiveKit.DialogViewModel.Action.ActionType - final public let buttonTapped: () -> Swift.Void + final public let buttonTapped: @_Concurrency.MainActor @Sendable () -> Swift.Void public enum ActionType : Swift.String { case dismiss case interaction case yes case no + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get @@ -73,45 +84,25 @@ extension ApptentiveKit.DialogViewModel { @objc deinit } } -public enum HTMLTextAlignment : Swift.String { - case center - case left - case right - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public enum SystemFontNames : Swift.String { - case html - case os - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -extension Swift.String { - public func attributedString(withFont font: UIKit.UIFont, alignment: ApptentiveKit.HTMLTextAlignment) -> Foundation.NSMutableAttributedString? -} extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let minValue: Swift.Int - final public let maxValue: Swift.Int - final public let minText: Swift.String? - final public let maxText: Swift.String? - public var selectedValueIndex: Swift.Int? { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let minValue: Swift.Int + @_Concurrency.MainActor final public let maxValue: Swift.Int + @_Concurrency.MainActor final public let minText: Swift.String? + @_Concurrency.MainActor final public let maxText: Swift.String? + @_Concurrency.MainActor public var selectedValueIndex: Swift.Int? { get } - public var value: Swift.Int? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var value: Swift.Int? { get } - public var choiceLabels: [Swift.String] { + #endif + @_Concurrency.MainActor public var choiceLabels: [Swift.String] { get } - public func selectValue(at index: Swift.Int) - public var accessibilityHintForSegment: Swift.String { + @_Concurrency.MainActor public func selectValue(at index: Swift.Int) + @_Concurrency.MainActor public var accessibilityHintForSegment: Swift.String { get } @objc deinit @@ -142,9 +133,9 @@ extension ApptentiveKit.MessageCenterViewModel { case sending case sent case failed - public func hash(into hasher: inout Swift.Hasher) public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.SentStatus, b: ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> Swift.Bool public func encode(to encoder: any Swift.Encoder) throws + public func hash(into hasher: inout Swift.Hasher) public var hashValue: Swift.Int { get } @@ -162,24 +153,32 @@ extension ApptentiveKit.MessageCenterViewModel { } @objc @_hasMissingDesignatedInitializers public class Attachment : ObjectiveC.NSObject, QuickLook.QLPreviewItem { final public let fileExtension: Swift.String? + #if compiler(>=5.3) && $NonescapableTypes public var thumbnail: UIKit.UIImage? { get } + #endif public var downloadProgress: Swift.Float public var localURL: Foundation.URL? public var displayName: Swift.String { get } + #if compiler(>=5.3) && $NonescapableTypes @objc public var previewItemURL: Foundation.URL? { @objc get } + #endif + #if compiler(>=5.3) && $NonescapableTypes @objc public var previewItemTitle: Swift.String? { @objc get } + #endif + #if compiler(>=5.3) && $NonescapableTypes @objc override dynamic public var accessibilityLabel: Swift.String? { @objc get @objc set } + #endif public var removeButtonAccessibilityLabel: Swift.String { get } @@ -191,21 +190,19 @@ extension ApptentiveKit.MessageCenterViewModel { @objc deinit } } -extension ApptentiveKit.Apptentive : UserNotifications.UNUserNotificationCenterDelegate { - @objc dynamic public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data) - @available(*, deprecated, message: "Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead.") - @objc dynamic public func setRemoteNotifcationDeviceToken(_ tokenData: Foundation.Data) - @objc dynamic public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool - @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool - @objc dynamic public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool - @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) - @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) +extension ApptentiveKit.Apptentive : @preconcurrency UserNotifications.UNUserNotificationCenterDelegate { + @objc @_Concurrency.MainActor final public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data) + @objc @_Concurrency.MainActor final public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping @Sendable (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool + @objc @_Concurrency.MainActor final public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool + @objc @_Concurrency.MainActor final public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool + @_Concurrency.MainActor @objc final public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping @Sendable (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) + @_Concurrency.MainActor @objc final public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping @Sendable () -> Swift.Void) } extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice] - public func toggleChoice(at index: Swift.Int) - public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice] + @_Concurrency.MainActor public func toggleChoice(at index: Swift.Int) + @_Concurrency.MainActor public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle { get } public enum SelectionStyle { @@ -217,18 +214,17 @@ extension ApptentiveKit.SurveyViewModel { get } } - @_hasMissingDesignatedInitializers public class Choice { - final public let label: Swift.String - public var htmlLabel: Foundation.NSAttributedString? - final public let placeholderText: Swift.String? - final public let supportsOther: Swift.Bool - public var isSelected: Swift.Bool { + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Choice { + @_Concurrency.MainActor final public let label: Foundation.AttributedString + @_Concurrency.MainActor final public let placeholderText: Swift.String? + @_Concurrency.MainActor final public let supportsOther: Swift.Bool + @_Concurrency.MainActor public var isSelected: Swift.Bool { get } - public var isMarkedAsInvalid: Swift.Bool { + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get } - public var value: Swift.String? { + @_Concurrency.MainActor public var value: Swift.String? { get set } @@ -237,94 +233,89 @@ extension ApptentiveKit.SurveyViewModel { @objc deinit } } -public struct ApptentiveLogger { - public static var shouldHideSensitiveLogs: Swift.Bool - public var logLevel: ApptentiveKit.LogLevel -} -extension ApptentiveKit.ApptentiveLogger { - public static var `default`: ApptentiveKit.ApptentiveLogger - public static var engagement: ApptentiveKit.ApptentiveLogger - public static var interaction: ApptentiveKit.ApptentiveLogger - public static var network: ApptentiveKit.ApptentiveLogger - public static var payload: ApptentiveKit.ApptentiveLogger - public static var targeting: ApptentiveKit.ApptentiveLogger - public static var messages: ApptentiveKit.ApptentiveLogger - public static var attachments: ApptentiveKit.ApptentiveLogger - public static var resources: ApptentiveKit.ApptentiveLogger - public static var logLevel: ApptentiveKit.LogLevel { - get - set - } -} -public enum LogLevel : Swift.Int, Swift.Comparable { - case debug - case info - case notice - case warning - case error - case critical - case fault - public static func < (lhs: ApptentiveKit.LogLevel, rhs: ApptentiveKit.LogLevel) -> Swift.Bool - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } +extension os.Logger { + public static let `default`: os.Logger + public static let engagement: os.Logger + public static let interaction: os.Logger + public static let network: os.Logger + public static let payload: os.Logger + public static let targeting: os.Logger + public static let messages: os.Logger + public static let attachments: os.Logger + public static let resources: os.Logger } @objc public protocol ApptentiveDelegate { @objc func authenticationDidFail(with error: any Swift.Error) } -@objc @_hasMissingDesignatedInitializers public class Apptentive : ObjectiveC.NSObject { - @objc public static let shared: ApptentiveKit.Apptentive - @objc weak public var delegate: (any ApptentiveKit.ApptentiveDelegate)? - public var interactionPresenter: ApptentiveKit.InteractionPresenter { +@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class Apptentive : ObjectiveC.NSObject { + @objc @_Concurrency.MainActor public static let shared: ApptentiveKit.Apptentive + @objc @_Concurrency.MainActor weak final public var delegate: (any ApptentiveKit.ApptentiveDelegate)? + @_Concurrency.MainActor final public var interactionPresenter: ApptentiveKit.InteractionPresenter { get set } - @objc public var theme: ApptentiveKit.Apptentive.UITheme - @objc public var personName: Swift.String? { + @objc @_Concurrency.MainActor final public var theme: ApptentiveKit.Apptentive.UITheme + @objc @_Concurrency.MainActor final public var shouldUseSecureTokenStorage: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personName: Swift.String? { @objc get @objc set + _modify } - @objc public var personEmailAddress: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personEmailAddress: Swift.String? { @objc get @objc set + _modify } - @objc public var mParticleID: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var mParticleID: Swift.String? { @objc get @objc set + _modify } - public var personCustomData: ApptentiveKit.CustomData { + #endif + @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personCustomData: ApptentiveKit.CustomData { get set + _modify } - public var deviceCustomData: ApptentiveKit.CustomData { + @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var deviceCustomData: ApptentiveKit.CustomData { get set + _modify } - @objc dynamic public var unreadMessageCount: Swift.Int - @objc public var distributionName: Swift.String? { + @objc @_Concurrency.MainActor dynamic final public var unreadMessageCount: Swift.Int + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var distributionName: Swift.String? { @objc get @objc set + _modify } - @objc public var distributionVersion: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var distributionVersion: Swift.String? { @objc get @objc set + _modify } - @objc public enum UITheme : Swift.Int { + #endif + @objc public enum UITheme : Swift.Int, Swift.Sendable { case apptentive = 1 + case customerOnly = 2 + case customerBasedOnApptentive = 3 case none = 0 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } - public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials) async throws - #endif - public struct AppCredentials : Swift.Codable, Swift.Equatable { + public struct AppCredentials : Swift.Codable, Swift.Equatable, Swift.Sendable { public let key: Swift.String public let signature: Swift.String public init(key: Swift.String, signature: Swift.String) @@ -332,45 +323,74 @@ public enum LogLevel : Swift.Int, Swift.Comparable { public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } - public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil) async throws -> Swift.Bool + public enum Region : Swift.String, Swift.Sendable { + case us + case eu + case au + #if compiler(>=5.3) && $NonescapableTypes + public init?(rawValue: Swift.String) + #endif + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct Environment : Swift.Sendable { + public init(_ template: @escaping @Sendable (Swift.String, ApptentiveKit.Apptentive.Region) -> Swift.String) + public static let production: ApptentiveKit.Apptentive.Environment + public static func custom(_ url: Foundation.URL) -> ApptentiveKit.Apptentive.Environment + } + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, region: ApptentiveKit.Apptentive.Region = .us, environment: ApptentiveKit.Apptentive.Environment = .production, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + nonisolated final public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, region: ApptentiveKit.Apptentive.Region = .us, environment: ApptentiveKit.Apptentive.Environment = .production) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + nonisolated final public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil) async throws -> Swift.Bool #endif - public func dismissAllInteractions(animated: Swift.Bool) - public func presentMessageCenter(from viewController: UIKit.UIViewController?, completion: ((Swift.Result) -> Swift.Void)? = nil) - public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData?, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil) async throws -> Swift.Bool + @_Concurrency.MainActor final public func dismissAllInteractions(animated: Swift.Bool) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - @objc(sendAttachmentText:) public func sendAttachment(_ text: Swift.String) - @objc(sendAttachmentImage:) public func sendAttachment(_ image: UIKit.UIImage) - @objc(sendAttachmentFile:withMimeType:) public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String) - public func canShowInteraction(event: ApptentiveKit.Event, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func canShowInteraction(event: ApptentiveKit.Event) async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + nonisolated final public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil) async throws -> Swift.Bool #endif - public func canShowMessageCenter(completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func canShowMessageCenter() async throws -> Swift.Bool + @objc(sendAttachmentText:) nonisolated final public func sendAttachment(_ text: Swift.String) + @objc(sendAttachmentImage:) nonisolated final public func sendAttachment(_ image: UIKit.UIImage) + @objc(sendAttachmentFile:withMimeType:) nonisolated final public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func canShowInteraction(event: ApptentiveKit.Event, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - public func logIn(with token: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void) - #if compiler(>=5.3) && $AsyncAwait - public func logIn(with token: Swift.String) async throws + nonisolated final public func canShowInteraction(event: ApptentiveKit.Event) async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func canShowMessageCenter(completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - public func logOut(completion: ((Swift.Result) -> Swift.Void)?) - #if compiler(>=5.3) && $AsyncAwait - public func logOut() async throws + nonisolated final public func canShowMessageCenter() async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func logIn(with token: Swift.String, completion: @escaping @Sendable (Swift.Result) -> Swift.Void) #endif - public func updateToken(_ token: Swift.String, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func updateToken(_ token: Swift.String) async throws + nonisolated final public func logIn(with token: Swift.String) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func logOut(completion: (@Sendable (Swift.Result) -> Swift.Void)?) #endif - convenience public init(apiBaseURL: Foundation.URL) + nonisolated final public func logOut() async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func updateToken(_ token: Swift.String, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + nonisolated final public func updateToken(_ token: Swift.String) async throws + @propertyWrapper public struct BackendSync { + public var wrappedValue: T { + get + set + } + } @objc deinit } -public enum ApptentiveError : Swift.Error, Foundation.LocalizedError { +public enum ApptentiveError : Swift.Error, Foundation.LocalizedError, Swift.Equatable { case internalInconsistency - case invalidCustomDataType(Any?) + case invalidCustomDataType case fileExistsAtContainerDirectoryPath case unsupportedBackendStateTransition case emptyEventName @@ -381,14 +401,19 @@ public enum ApptentiveError : Swift.Error, Foundation.LocalizedError { case missingSubClaim case mismatchedSubClaim case invalidEncryptionKey + case invalidAppCredentials case noActiveConversation case authenticationFailed(reason: ApptentiveKit.AuthenticationFailureReason?, responseString: Swift.String?) case resourceNotDecodableAsImage + case interactionExceededRateLimit(count: Swift.Int, limit: Swift.Int) + #if compiler(>=5.3) && $NonescapableTypes public var errorDescription: Swift.String? { get } + #endif + public static func == (a: ApptentiveKit.ApptentiveError, b: ApptentiveKit.ApptentiveError) -> Swift.Bool } -public enum AuthenticationFailureReason : Swift.String, Swift.Codable { +public enum AuthenticationFailureReason : Swift.String, Swift.Codable, Swift.Sendable { case invalidAlgorithm case malformedToken case invalidToken @@ -400,14 +425,16 @@ public enum AuthenticationFailureReason : Swift.String, Swift.Codable { case missingAppKey case missingAppSignature case invalidKeySignaturePair + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get } } -public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> () -public protocol CustomDataCompatible { +nonisolated(unsafe) public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> () +public protocol CustomDataCompatible : Swift.Sendable { } extension Swift.String : ApptentiveKit.CustomDataCompatible { } @@ -419,12 +446,14 @@ extension Swift.Int : ApptentiveKit.CustomDataCompatible { } extension Swift.Bool : ApptentiveKit.CustomDataCompatible { } -public struct CustomData : Swift.Equatable, Swift.Codable { +public struct CustomData : Swift.Equatable, Swift.Codable, Swift.Sendable { public init() + #if compiler(>=5.3) && $NonescapableTypes public subscript(key: Swift.String) -> (any ApptentiveKit.CustomDataCompatible)? { get set } + #endif public var keys: Swift.Dictionary.Keys { get } @@ -432,56 +461,64 @@ public struct CustomData : Swift.Equatable, Swift.Codable { public init(from decoder: any Swift.Decoder) throws public static func == (lhs: ApptentiveKit.CustomData, rhs: ApptentiveKit.CustomData) -> Swift.Bool } -public protocol SurveyViewModelDelegate : AnyObject { - func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) -} -@_hasMissingDesignatedInitializers public class SurveyViewModel { - final public let name: Swift.String? - final public let isRequired: Swift.Bool - final public let pageIndicatorSegmentCount: Swift.Int - final public let validationErrorMessage: Swift.String - public var disclaimerText: Swift.String? { +@_Concurrency.MainActor public protocol SurveyViewModelDelegate : AnyObject { + @_Concurrency.MainActor func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class SurveyViewModel { + @_Concurrency.MainActor final public let name: Swift.String? + @_Concurrency.MainActor final public let isRequired: Swift.Bool + @_Concurrency.MainActor final public let pageIndicatorSegmentCount: Swift.Int + @_Concurrency.MainActor final public let validationErrorMessage: Foundation.AttributedString + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var disclaimerText: Foundation.AttributedString? { get } + #endif public struct TermsAndConditions { } - final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions? + @_Concurrency.MainActor final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions? public struct CloseConfirmation { } - final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation - weak public var delegate: (any ApptentiveKit.SurveyViewModelDelegate)? - public var currentPage: ApptentiveKit.SurveyViewModel.Page { + @_Concurrency.MainActor final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation + @_Concurrency.MainActor weak public var delegate: (any ApptentiveKit.SurveyViewModelDelegate)? + @_Concurrency.MainActor public var currentPage: ApptentiveKit.SurveyViewModel.Page { get } - public var questions: [ApptentiveKit.SurveyViewModel.Question] { + @_Concurrency.MainActor public var questions: [ApptentiveKit.SurveyViewModel.Question] { get } - public var isMarkedAsInvalid: Swift.Bool { + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get } - public var thankYouMessage: Swift.String? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var thankYouMessage: Foundation.AttributedString? { get } - public var introduction: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var introduction: Foundation.AttributedString? { get } - public var advanceButtonText: Swift.String { + #endif + @_Concurrency.MainActor public var advanceButtonText: Swift.String { get } - public var invalidQuestionIndexes: Foundation.IndexSet { + @_Concurrency.MainActor public var invalidQuestionIndexes: Foundation.IndexSet { get } - public var surveyDidSendResponse: Swift.Bool - public var highlightFirstQuestionSegment: Swift.Bool - public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath) - public func selectValueFromRange(at indexPath: Foundation.IndexPath) - public func openTermsAndConditions() - public func advance() - public var isValid: Swift.Bool { + @_Concurrency.MainActor public var surveyDidSendResponse: Swift.Bool + @_Concurrency.MainActor public var highlightFirstQuestionSegment: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath) + #endif + @_Concurrency.MainActor public func selectValueFromRange(at indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func openTermsAndConditions() + @_Concurrency.MainActor public func advance() async + @_Concurrency.MainActor public var isValid: Swift.Bool { get } public enum DisplayMode { @@ -493,104 +530,106 @@ public protocol SurveyViewModelDelegate : AnyObject { get } } - public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode { + @_Concurrency.MainActor public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode { get } - public var shouldConfirmCancel: Swift.Bool { + @_Concurrency.MainActor public var shouldConfirmCancel: Swift.Bool { get } - public var currentSelectedSegmentIndex: Swift.Int? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var currentSelectedSegmentIndex: Swift.Int? { get } - public func launch() - public func continuePartial() - public func cancel(partial: Swift.Bool) + #endif + @_Concurrency.MainActor public var isIntroPage: Swift.Bool { + get + } + @_Concurrency.MainActor public var isSuccessPage: Swift.Bool { + get + } + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func continuePartial() + @_Concurrency.MainActor public func cancel(partial: Swift.Bool) @objc deinit } extension ApptentiveKit.SurveyViewModel { - @_hasMissingDesignatedInitializers public class Page { - final public let id: Swift.String - final public let description: Swift.String? - final public let disclaimer: Swift.String? - final public let questions: [ApptentiveKit.SurveyViewModel.Question] - final public let advanceButtonLabel: Swift.String - final public let pageIndicatorValue: Swift.Int? + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Page { + @_Concurrency.MainActor final public let id: Swift.String + @_Concurrency.MainActor final public let description: Foundation.AttributedString? + @_Concurrency.MainActor final public let disclaimer: Foundation.AttributedString? + @_Concurrency.MainActor final public let questions: [ApptentiveKit.SurveyViewModel.Question] + @_Concurrency.MainActor final public let advanceButtonLabel: Swift.String + @_Concurrency.MainActor final public let pageIndicatorValue: Swift.Int? @objc deinit } } -public protocol MessageCenterViewModelDelegate : AnyObject { - func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToRemoveAttachmentAt index: Swift.Int, with error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToAddAttachmentWith error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToSendMessageWith error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFinishAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFailAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath, with error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, profilePhoto: UIKit.UIImage, didDownloadFor indexPath: Foundation.IndexPath) -} -@_hasMissingDesignatedInitializers public class MessageCenterViewModel { - final public let headingTitle: Swift.String - final public let branding: Swift.String? - final public let composerTitle: Swift.String - final public let composerSendButtonTitle: Swift.String - final public let composerAttachButtonTitle: Swift.String - final public let composerPlaceholderText: Swift.String - final public let composerCloseConfirmBody: Swift.String - final public let composerCloseDiscardButtonTitle: Swift.String - final public let composerCloseCancelButtonTitle: Swift.String - final public let greetingTitle: Swift.String - final public let greetingBody: Swift.String - final public let greetingImageURL: Foundation.URL - final public let statusBody: Swift.String? - public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]] - public var hasLoadedMessages: Swift.Bool - public var thumbnailSize: CoreFoundation.CGSize { +@_Concurrency.MainActor public protocol MessageCenterViewModelDelegate : AnyObject { + @_Concurrency.MainActor func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel) +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class MessageCenterViewModel { + @_Concurrency.MainActor final public let headingTitle: Swift.String + @_Concurrency.MainActor final public let branding: Swift.String? + @_Concurrency.MainActor final public let composerTitle: Swift.String + @_Concurrency.MainActor final public let composerSendButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerAttachButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerPlaceholderText: Swift.String + @_Concurrency.MainActor final public let composerCloseConfirmBody: Swift.String + @_Concurrency.MainActor final public let composerCloseDiscardButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerCloseCancelButtonTitle: Swift.String + @_Concurrency.MainActor final public let greetingTitle: Swift.String + @_Concurrency.MainActor final public let greetingBody: Swift.String + @_Concurrency.MainActor final public let greetingImageURL: Foundation.URL + @_Concurrency.MainActor final public let statusBody: Swift.String? + @_Concurrency.MainActor public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]] + @_Concurrency.MainActor public var hasLoadedMessages: Swift.Bool + @_Concurrency.MainActor public var thumbnailSize: CoreFoundation.CGSize { get set } - final public let profileNamePlaceholder: Swift.String - final public let profileEmailPlaceholder: Swift.String - final public let profileCancelButtonText: Swift.String - final public let profileSaveButtonText: Swift.String - final public let profileEmailInvalidError: Swift.String - final public let editProfileViewTitle: Swift.String - final public let editProfileNamePlaceholder: Swift.String - final public let editProfileEmailPlaceholder: Swift.String - final public let editProfileCancelButtonText: Swift.String - final public let editProfileSaveButtonText: Swift.String - final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode - final public let closeButtonAccessibilityLabel: Swift.String - final public let closeButtonAccessibilityHint: Swift.String - final public let profileButtonAccessibilityLabel: Swift.String - final public let profileButtonAccessibilityHint: Swift.String - final public let sendButtonAccessibilityLabel: Swift.String - final public let sendButtonAccessibilityHint: Swift.String - final public let attachButtonAccessibilityLabel: Swift.String - final public let attachButtonAccessibilityHint: Swift.String - final public let attachmentOptionsTitle: Swift.String - final public let attachmentOptionsImagesButton: Swift.String - final public let attachmentOptionsFilesButton: Swift.String - final public let attachmentOptionsCancelButton: Swift.String - final public let showAttachmentButtonAccessibilityHint: Swift.String - final public let downloadAttachmentButtonAccessibilityHint: Swift.String - public var emailAddress: Swift.String? { + @_Concurrency.MainActor final public let profileNamePlaceholder: Swift.String + @_Concurrency.MainActor final public let profileEmailPlaceholder: Swift.String + @_Concurrency.MainActor final public let profileCancelButtonText: Swift.String + @_Concurrency.MainActor final public let profileSaveButtonText: Swift.String + @_Concurrency.MainActor final public let profileEmailInvalidError: Swift.String + @_Concurrency.MainActor final public let editProfileViewTitle: Swift.String + @_Concurrency.MainActor final public let editProfileNamePlaceholder: Swift.String + @_Concurrency.MainActor final public let editProfileEmailPlaceholder: Swift.String + @_Concurrency.MainActor final public let editProfileCancelButtonText: Swift.String + @_Concurrency.MainActor final public let editProfileSaveButtonText: Swift.String + @_Concurrency.MainActor final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode + @_Concurrency.MainActor final public let closeButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let closeButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let profileButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let profileButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let sendButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let sendButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let attachButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let attachButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsTitle: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsImagesButton: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsFilesButton: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsCancelButton: Swift.String + @_Concurrency.MainActor final public let showAttachmentButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let downloadAttachmentButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor public var emailAddress: Swift.String? { get set } - public var name: Swift.String? { + @_Concurrency.MainActor public var name: Swift.String? { get set } - public var profileIsValid: Swift.Bool - public var shouldRequestProfile: Swift.Bool - public var shouldAllowProfileEdit: Swift.Bool + @_Concurrency.MainActor public var profileIsValid: Swift.Bool + @_Concurrency.MainActor public var shouldRequestProfile: Swift.Bool + @_Concurrency.MainActor public var shouldAllowProfileEdit: Swift.Bool public enum ProfileMode { case optionalEmail case requiredEmail @@ -601,49 +640,61 @@ public protocol MessageCenterViewModelDelegate : AnyObject { get } } - public var oldestUnreadMessageIndexPath: Foundation.IndexPath? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var oldestUnreadMessageIndexPath: Foundation.IndexPath? { get } - public var newestMessageIndexPath: Foundation.IndexPath? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var newestMessageIndexPath: Foundation.IndexPath? { get } - public func commitProfileEdits() - public func cancelProfileEdits() - public func launch() - public func cancel() - public var numberOfMessageGroups: Swift.Int { + #endif + @_Concurrency.MainActor public func commitProfileEdits() + @_Concurrency.MainActor public func cancelProfileEdits() + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func cancel() + @_Concurrency.MainActor public var numberOfMessageGroups: Swift.Int { get } - public func markMessageAsRead(at indexPath: Foundation.IndexPath) - public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int - public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String? - public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message - public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) - public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message { + @_Concurrency.MainActor public func markMessageAsRead(at indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String? + #endif + @_Concurrency.MainActor public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message + @_Concurrency.MainActor public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) async throws + @_Concurrency.MainActor public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message { get } - public var draftMessageBody: Swift.String? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var draftMessageBody: Swift.String? { get set } - public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] { + #endif + @_Concurrency.MainActor public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] { get } - public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?) - public func addFileAttachment(at sourceURL: Foundation.URL) - public func removeAttachment(at index: Swift.Int) - public var remainingAttachmentSlots: Swift.Int { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?) async throws + #endif + @_Concurrency.MainActor public func addFileAttachment(at sourceURL: Foundation.URL) async throws + @_Concurrency.MainActor public func removeAttachment(at index: Swift.Int) async throws + @_Concurrency.MainActor public var remainingAttachmentSlots: Swift.Int { get } - public var canAddAttachment: Swift.Bool { + @_Concurrency.MainActor public var canAddAttachment: Swift.Bool { get } - public var canSendMessage: Swift.Bool { + @_Concurrency.MainActor public var canSendMessage: Swift.Bool { get } - public func sendMessage() - public func getGreetingImage(completion: @escaping (UIKit.UIImage) -> Swift.Void) - public func getProfilePhoto(for indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func sendMessage() async throws + @_Concurrency.MainActor public func getGreetingImage() async throws -> UIKit.UIImage + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func getProfilePhoto(for indexPath: Foundation.IndexPath) async throws -> UIKit.UIImage? + #endif @objc deinit } public enum MessageCenterViewModelError : Swift.Error { @@ -656,92 +707,134 @@ public enum MessageCenterViewModelError : Swift.Error { } } extension ApptentiveKit.Apptentive { - public var engagementManifestURL: Foundation.URL? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public var engagementManifestURL: Foundation.URL? { get } - public func loadEngagementManifest(at url: Foundation.URL?, completion: @escaping (Swift.Result) -> Swift.Void) - public func getInteractionList(_ completion: @escaping ([ApptentiveKit.Apptentive.InteractionListItem]) -> Swift.Void) - public func presentInteraction(with id: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void) - public func presentInteraction(at url: Foundation.URL, completion: @escaping (Swift.Result) -> Swift.Void) + #endif + public enum ConversationState : Swift.String { + case none + case placeholder + case anonymousPending + case legacyPending + case anonymous + case loggedIn + case loggedOut + #if compiler(>=5.3) && $NonescapableTypes + public init?(rawValue: Swift.String) + #endif + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func loadEngagementManifest(at url: Foundation.URL?) async throws + #endif + @_Concurrency.MainActor final public func getInteractionList() async -> [ApptentiveKit.Apptentive.InteractionListItem] + @_Concurrency.MainActor final public func presentInteraction(with id: Swift.String) async throws + @_Concurrency.MainActor final public func presentInteraction(at url: Foundation.URL) async throws public struct InteractionListItem { public let id: Swift.String public let displayName: Swift.String public let typeName: Swift.String } - public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void) - public func getConnectionInfo(_ completion: @escaping (_ state: Swift.String?, _ id: Swift.String?, _ token: Swift.String?, _ subject: Swift.String?, _ buttonLabel: Swift.String?) -> Swift.Void) + @_Concurrency.MainActor final public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func getConnectionInfo() async -> (ApptentiveKit.Apptentive.ConversationState, Swift.String?, Swift.String?) + #endif +} +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @available(iOS 26, *) +@_Concurrency.MainActor @preconcurrency public class GlassDialogButton : UIKit.UIView { + #if compiler(>=5.3) && $IsolatedDeinit + @objc @_Concurrency.MainActor deinit + #else + @objc deinit + #endif } extension ApptentiveKit.SurveyViewModel { - @_hasMissingDesignatedInitializers public class Question { - final public let text: Swift.String - final public let isRequired: Swift.Bool - final public let requiredText: Swift.String? - final public let errorMessage: Swift.String - final public let instructions: Swift.String? - public var isMarkedAsInvalid: Swift.Bool { + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Question { + @_Concurrency.MainActor final public let text: Foundation.AttributedString + @_Concurrency.MainActor final public let isRequired: Swift.Bool + @_Concurrency.MainActor final public let requiredText: Swift.String? + @_Concurrency.MainActor final public let errorMessage: Swift.String + @_Concurrency.MainActor final public let instructions: Swift.String? + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get set } - public var accessibilityLabel: Swift.String { + @_Concurrency.MainActor public var accessibilityLabel: Swift.String { get } @objc deinit } } -public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible { +public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible, Swift.CustomStringConvertible, Swift.Sendable { public var customData: ApptentiveKit.CustomData public init(name: Swift.String) public init(stringLiteral value: Swift.String) public var debugDescription: Swift.String { get } + public var description: Swift.String { + get + } public typealias ExtendedGraphemeClusterLiteralType = Swift.String public typealias StringLiteralType = Swift.String public typealias UnicodeScalarLiteralType = Swift.String } -open class InteractionPresenter { - public init() - open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) throws - open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) throws - open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) throws - open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel, completion: @escaping (Swift.Result) -> Swift.Void) - open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController, completion: (() -> Swift.Void)? = {}) throws - public var validatedPresentingViewController: UIKit.UIViewController? { +@_Concurrency.MainActor open class InteractionPresenter { + @_Concurrency.MainActor public init() + @_Concurrency.MainActor open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) async throws + @_Concurrency.MainActor open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) async throws + @_Concurrency.MainActor open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) async throws + @_Concurrency.MainActor open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel) async throws + @_Concurrency.MainActor open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var validatedPresentingViewController: UIKit.UIViewController? { get } - public var messageCenterCurrentlyPresented: Swift.Bool { + #endif + @_Concurrency.MainActor public var messageCenterCurrentlyPresented: Swift.Bool { get } - open func dismissPresentedViewController(animated: Swift.Bool) + @_Concurrency.MainActor open func dismissPresentedViewController(animated: Swift.Bool) @objc deinit } -public enum InteractionPresenterError : Swift.Error { +public enum InteractionPresenterError : Swift.Error, Swift.Equatable { case notImplemented(Swift.String, Swift.String) case decodingFailed(Swift.String, Swift.String) case noPresentingViewController + public static func == (a: ApptentiveKit.InteractionPresenterError, b: ApptentiveKit.InteractionPresenterError) -> Swift.Bool +} +extension ApptentiveKit.Apptentive { + @objc @_Concurrency.MainActor public static var fontName: Swift.String? { + @objc get + @objc set + } } extension Foundation.NSNotification.Name { public static let apptentiveEventEngaged: Foundation.Notification.Name } -public protocol DialogViewModelDelegate : AnyObject { - func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage: ApptentiveKit.DialogViewModel.Image) - func dismiss() -} -@_hasMissingDesignatedInitializers public class DialogViewModel { - final public let title: Swift.String? - final public let message: Swift.String? - final public let dialogType: ApptentiveKit.DialogViewModel.DialogType - final public let actions: [ApptentiveKit.DialogViewModel.Action] - public var dialogContainsImage: Swift.Bool - public var image: ApptentiveKit.DialogViewModel.Image { +@_Concurrency.MainActor public protocol DialogViewModelDelegate : AnyObject { + @_Concurrency.MainActor func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage: ApptentiveKit.DialogViewModel.Image) + @_Concurrency.MainActor func dismiss() +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class DialogViewModel { + @_Concurrency.MainActor final public let title: Foundation.AttributedString? + @_Concurrency.MainActor final public let message: Foundation.AttributedString? + @_Concurrency.MainActor final public let dialogType: ApptentiveKit.DialogViewModel.DialogType + @_Concurrency.MainActor final public let actions: [ApptentiveKit.DialogViewModel.Action] + @_Concurrency.MainActor public var dialogContainsImage: Swift.Bool + @_Concurrency.MainActor public var image: ApptentiveKit.DialogViewModel.Image { get set } - public var maxHeight: Swift.Int - weak public var delegate: (any ApptentiveKit.DialogViewModelDelegate)? - public func buttonSelected(at position: Swift.Int) - public func launch() - public func cancel() + @_Concurrency.MainActor public var maxHeight: Swift.Int + @_Concurrency.MainActor weak public var delegate: (any ApptentiveKit.DialogViewModelDelegate)? + @_Concurrency.MainActor public func buttonSelected(at position: Swift.Int) + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func cancel() public enum DialogType { case enjoymentDialog case textModal @@ -753,30 +846,30 @@ public protocol DialogViewModelDelegate : AnyObject { } @objc deinit } -@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogView : UIKit.UIView { - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleTextColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var messageTextColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var messageFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var headerImage: UIKit.UIImage? - @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonSpacing: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonInset: UIKit.UIEdgeInsets - @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorsAreHidden: Swift.Bool - @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var imageInset: UIKit.UIEdgeInsets { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogView : UIKit.UIView { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleTextColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var messageTextColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var messageFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var headerImage: UIKit.UIImage? + @objc @_Concurrency.MainActor @preconcurrency dynamic public var cornerRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var buttonSpacing: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var buttonInset: UIKit.UIEdgeInsets + @objc @_Concurrency.MainActor @preconcurrency dynamic public var separatorsAreHidden: Swift.Bool + @objc @_Concurrency.MainActor @preconcurrency dynamic public var separatorColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var imageInset: UIKit.UIEdgeInsets { @objc get @objc set } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func didMoveToWindow() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func layoutSubviews() @objc deinit } extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let placeholderText: Swift.String? - final public let allowMultipleLines: Swift.Bool - public var value: Swift.String? { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let placeholderText: Swift.String? + @_Concurrency.MainActor final public let allowMultipleLines: Swift.Bool + @_Concurrency.MainActor public var value: Swift.String? { get set } @@ -784,155 +877,106 @@ extension ApptentiveKit.SurveyViewModel { } } extension ApptentiveKit.Apptentive { - @available(*, deprecated, message: "Use the 'register(with:completion:)' method on the 'shared' instance instead.") - @objc(registerWithConfiguration:) dynamic public class func register(with configuration: ApptentiveKit.ApptentiveConfiguration) + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the 'register(with:completion:) method that takes an 'AppCredentials' argument.") - @objc(registerWithConfiguration:completion:) dynamic public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "Use the 'shared' static property instead.") - @objc dynamic public class func sharedConnection() -> ApptentiveKit.Apptentive - @available(*, deprecated, message: "This property is ignored. SKStoreReviewController will be used for all ratings.") - @objc dynamic public var appID: Swift.String? { - @objc get - @objc set - } - @available(*, deprecated, message: "This property is ignored. The info button no longer exists.") - @objc dynamic public var showInfoButton: Swift.Bool { - @objc get - @objc set - } - @available(*, deprecated, message: "This feature is not implemented.") - @objc dynamic public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? { - @objc get - @objc set - } - @available(*, deprecated, message: "This property is not available for reading.") - @objc dynamic public var apptentiveKey: Swift.String { - @objc get - } - @available(*, deprecated, message: "This property is not available for reading.") - @objc dynamic public var apptentiveSignature: Swift.String { - @objc get - } - @objc(engage:fromViewController:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?) - @objc(engage:fromViewController:completion:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) + @objc(registerWithConfiguration:completion:) @_Concurrency.MainActor final public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(engage:fromViewController:) @_Concurrency.MainActor final public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(engage:fromViewController:completion:) @_Concurrency.MainActor final public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.") - @objc(engage:withCustomData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?) + @objc(engage:withCustomData:fromViewController:) @_Concurrency.MainActor final public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.") - @objc(engage:withCustomData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.") - @objc(engage:withCustomData:withExtendedData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?) - @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.") - @objc(engage:withCustomData:withExtendedData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:completion:)' method instead.") - @objc dynamic public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void) - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataDate:) dynamic public class func extendedData(date: Foundation.Date) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataLocationForLatitude:longitude:) dynamic public class func extendedData(latitude: Swift.Double, longitude: Swift.Double) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:) dynamic public class func extendedData(transactionID: Swift.String?, affiliation: Swift.String?, revenue: Foundation.NSNumber?, shipping: Foundation.NSNumber?, tax: Foundation.NSNumber?, currency: Swift.String?, commerceItems: [[Swift.AnyHashable : Any]]?) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:) dynamic public class func extendedData(itemID: Swift.String?, name: Swift.String?, category: Swift.String?, price: Foundation.NSNumber?, quantity: Foundation.NSNumber?, currency: Swift.String?) -> [Swift.AnyHashable : Any] - @available(swift, deprecated: 1.0, message: "Use the 'canShowMessageCenter(completion:)' method instead.") - @objc dynamic public func queryCanShowMessageCenter(completion: @escaping (Swift.Bool) -> Swift.Void) - @objc(presentMessageCenterFromViewController:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?) - @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc(presentMessageCenterFromViewController:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @objc(presentMessageCenterFromViewController:withCustomData:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?) - @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc(presentMessageCenterFromViewController:withCustomData:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "This feature is not implemented and this method will always result in false.") - @objc dynamic public func dismissMessageCenter(animated: Swift.Bool, completion: (() -> Swift.Void)? = nil) - @available(*, deprecated, message: "This feature is not implemented and this property will return an empty view.") - @objc dynamic public func unreadMessageCountAccessoryView(apptentiveHeart: Swift.Bool) -> UIKit.UIView - @available(*, deprecated, message: "This method is no longer implemented and will trigger an assertion failure.") - @objc dynamic public func openAppStore() - @available(*, deprecated, message: "Use the 'setRemoteNotificationToken()' method instead.") - @objc dynamic public func setPushProvider(_ pushProvider: ApptentiveKit.ApptentivePushProvider, deviceToken: Foundation.Data) - @available(*, deprecated, message: "This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:).") - @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, from _: UIKit.UIViewController?, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool - @available(*, deprecated, message: "Advertising identifier collection is not implemented.") - @objc dynamic public var advertisingIdentifier: Foundation.UUID? { - @objc get - @objc set - } - @available(*, deprecated, message: "mParticleId has been renamed to mParticleID.") - @objc dynamic public var mParticleId: Swift.String? { - @objc get - @objc set - } + @objc(engage:withCustomData:fromViewController:completion:) @_Concurrency.MainActor final public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:)' method instead.") + @objc @_Concurrency.MainActor final public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping @Sendable (Swift.Bool) -> Swift.Void) + @available(swift, deprecated: 1.0, message: "Use the 'canShowMessageCenter()' method instead.") + @objc @_Concurrency.MainActor final public func queryCanShowMessageCenter(completion: @escaping @Sendable (Swift.Bool) -> Swift.Void) + #if compiler(>=5.3) && $NonescapableTypes + @objc(presentMessageCenterFromViewController:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @available(swift, deprecated: 1.0, message: "Use the async version of this method.") + @objc(presentMessageCenterFromViewController:completion:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(presentMessageCenterFromViewController:withCustomData:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @available(swift, deprecated: 1.0, message: "Use the async version of this method.") + @objc(presentMessageCenterFromViewController:withCustomData:completion:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc dynamic public func removeCustomPersonData(withKey key: Swift.String) + @objc @_Concurrency.MainActor final public func removeCustomPersonData(withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc dynamic public func removeCustomDeviceData(withKey key: Swift.String) + @objc @_Concurrency.MainActor final public func removeCustomDeviceData(withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataString:withKey:) dynamic public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String) + @objc(addCustomDeviceDataString:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataNumber:withKey:) dynamic public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String) + @objc(addCustomDeviceDataNumber:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataBool:withKey:) dynamic public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String) + @objc(addCustomDeviceDataBool:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataString:withKey:) dynamic public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String) + @objc(addCustomPersonDataString:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataNumber:withKey:) dynamic public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String) + @objc(addCustomPersonDataNumber:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataBool:withKey:) dynamic public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String) - @available(*, deprecated, message: "Set style overrides defined in UIKit+Apptentive.swift extensions.") - @objc dynamic public var styleSheet: Any? { - @objc get - @objc set - } - @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.") - @objc dynamic public func checkSDKConfiguration() + @objc(addCustomPersonDataBool:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String) + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func logIn(withToken token: Swift.String, completion: @escaping (Swift.Bool, (any Swift.Error)?) -> Swift.Void) + @objc @_Concurrency.MainActor final public func logIn(withToken token: Swift.String, completion: @escaping @Sendable (Swift.Bool, (any Swift.Error)?) -> Swift.Void) + #endif @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func logOut() + @objc @_Concurrency.MainActor final public func logOut() + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Assign an object that conforms to the 'ApptentiveDelegate' protocol to the Apptentive instance's 'delegate' property.") - @objc dynamic public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? { - @objc get - @objc set - } - @available(*, deprecated, message: "This feature is no longer supported.") - @objc dynamic public var preInteractionCallback: ApptentiveKit.ApptentiveInteractionCallback? { + @objc @_Concurrency.MainActor final public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? { @objc get @objc set } + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func updateToken(_ token: Swift.String, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") - @objc dynamic public var logLevel: ApptentiveKit.ApptentiveLogLevel { + @objc @_Concurrency.MainActor final public func updateToken(_ token: Swift.String, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + @available(swift, deprecated: 1.0, message: "Log level is no longer supported. Use the filtering in Xcode or Console app.") + @objc @_Concurrency.MainActor final public var logLevel: ApptentiveKit.ApptentiveLogLevel { @objc get @objc set } } extension UIKit.UIButton { @available(swift, deprecated: 1.0, message: "Set the 'apptentiveStyle' property to 'ApptentiveButtonStyle.pill'.") - @objc @_Concurrency.MainActor(unsafe) public static let apptentivePillRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency public static let apptentivePillRadius: CoreFoundation.CGFloat @available(swift, deprecated: 1.0, message: "Use the 'apptentiveStyle' property.") - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveCornerRadius: CoreFoundation.CGFloat { + @objc @_Concurrency.MainActor @preconcurrency public static var apptentiveCornerRadius: CoreFoundation.CGFloat { @objc get @objc set } } extension UIKit.UITableView { @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UITableView.Style'.") - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: Swift.Int { + @objc @_Concurrency.MainActor @preconcurrency public static var apptentiveStyle: Swift.Int { @objc get @objc set } } extension UIKit.UIViewController { @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UIModalPresentationStyle'.") - @objc @_Concurrency.MainActor(unsafe) dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle { @objc get @objc set } } @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") public typealias ApptentiveAuthenticationFailureCallback = (ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> Swift.Void -@available(*, deprecated, message: "This feature is no longer supported.") -public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") @objc public enum ApptentiveAuthenticationFailureReason : Swift.Int { case unknown = 0 @@ -947,7 +991,10 @@ public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashab case missingAppKey = 9 case missingAppSignature = 10 case invalidKeySignaturePair = 11 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif + @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get @@ -957,39 +1004,23 @@ public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashab public class ApptentiveConfiguration : ObjectiveC.NSObject { @objc final public let apptentiveKey: Swift.String @objc final public let apptentiveSignature: Swift.String - @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of its static log properties.") + @available(*, deprecated, message: "Logging now uses iOS's Unified Logging features so logs are no longer filtered by the SDK.") @objc public var logLevel: ApptentiveKit.ApptentiveLogLevel - @available(swift, deprecated: 1.0, message: "Set the 'shouldHideSensitiveLogs' property on 'ApptentiveLogger' or one of its static log properties.") + @available(*, deprecated, message: "Logging now uses iOS's Unified Logging features so redaction of sensitive information is handled automatically.") @objc public var shouldSanitizeLogMessages: Swift.Bool - @available(*, deprecated, message: "This property is ignored. Use the designated initializer for 'Apptentive' to set this.") - @objc public var baseURL: Foundation.URL? + @objc public var overrideBaseURL: Foundation.URL? + @objc public var region: Swift.String? @available(swift, deprecated: 1.0, message: "Set the 'distributionName' property on 'Apptentive' directly before calling 'register(with:completion)'.") @objc public var distributionName: Swift.String? @available(swift, deprecated: 1.0, message: "Set the 'distributionVersion' property on 'Apptentive' directly before calling 'register(with:completion)'.") @objc public var distributionVersion: Swift.String? - @available(*, deprecated, message: "This property is ignored. An 'SKStoreReviewController' will be used for all ratings.") - @objc public var appID: Swift.String? - @available(*, deprecated, message: "This property is ignored. The info button no longer exists.") - @objc public var showInfoButton: Swift.Bool - @available(*, deprecated, message: "This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard.") - @objc public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? + #if compiler(>=5.3) && $NonescapableTypes @objc(initWithApptentiveKey:apptentiveSignature:) required public init?(apptentiveKey: Swift.String, apptentiveSignature: Swift.String) + #endif @objc public static func configuration(apptentiveKey key: Swift.String, apptentiveSignature signature: Swift.String) -> ApptentiveKit.ApptentiveConfiguration @objc deinit } -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -@objc public enum ApptentivePushProvider : Swift.Int { - case apptentive = 0 - case urbanAirship = 1 - case amazonSNS = 2 - case parse = 3 - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") @objc public enum ApptentiveLogLevel : Swift.UInt { case undefined = 0 case crit = 1 @@ -998,340 +1029,266 @@ public class ApptentiveConfiguration : ObjectiveC.NSObject { case info = 4 case debug = 5 case verbose = 6 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.UInt) + #endif + @available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") public typealias RawValue = Swift.UInt public var rawValue: Swift.UInt { get } } -@objc @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public class TermsAndConditions : ObjectiveC.NSObject { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public init(bodyText: Swift.String?, linkText: Swift.String?, linkURL: Foundation.URL?) - final public let bodyText: Swift.String? - final public let linkText: Swift.String? - final public let linkURL: Foundation.URL? - @objc deinit -} -@available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public protocol ApptentiveStyle { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor -} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -public enum ApptentiveStyleIdentifier { - case body - case headerTitle - case headerMessage - case messageDate - case messageSender - case messageStatus - case messageCenterStatus - case surveyInstructions - case doneButton - case button - case submitButton - case textInput - case headerBackground - case footerBackground - case failure - case separator - case background - case collectionBackground - case textInputBackground - case textInputPlaceholder - case messageBackground - case replyBackground - case contextBackground - public static func == (a: ApptentiveKit.ApptentiveStyleIdentifier, b: ApptentiveKit.ApptentiveStyleIdentifier) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public class ApptentiveStyleSheet : ApptentiveKit.ApptentiveStyle { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - convenience public init?(contentsOf stylePropertyListURL: Foundation.URL) - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var fontFamily: Swift.String - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var lightFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var regularFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var mediumFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var boldFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var primaryColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var secondaryColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var failureColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var backgroundColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var separatorColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var collectionBackgroundColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var placeholderColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var sizeAdjustment: CoreFoundation.CGFloat - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func setFontDescriptor(_ fontDescriptor: UIKit.UIFontDescriptor, forStyle style: Swift.String) - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func setColor(_ color: UIKit.UIColor, forStyle style: Swift.String) - @objc deinit -} -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogButton : UIKit.UIButton { - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var borderWidth: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var borderColor: UIKit.UIColor - @_Concurrency.MainActor(unsafe) @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogButton : UIKit.UIButton { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var cornerRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var borderWidth: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var borderColor: UIKit.UIColor + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize { @objc get } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func layoutSubviews() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func didMoveToWindow() @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DismissButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DismissButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class InteractionButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class InteractionButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class YesButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class YesButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class NoButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class NoButton : ApptentiveKit.DialogButton { @objc deinit } -public struct Sysctl { - public enum Error : Swift.Error { - case unknown - case malformedUTF8 - case invalidSize - case posixError(Darwin.POSIXErrorCode) - } - public static func data(for keys: [Swift.Int32]) throws -> [Swift.Int8] - public static func keys(for name: Swift.String) throws -> [Swift.Int32] - public static func value(ofType: T.Type, forKeys keys: [Swift.Int32]) throws -> T - public static func value(ofType type: T.Type, forKeys keys: Swift.Int32...) throws -> T - public static func value(ofType type: T.Type, forName name: Swift.String) throws -> T - public static func string(for keys: [Swift.Int32]) throws -> Swift.String - public static func string(for keys: Swift.Int32...) throws -> Swift.String - public static func string(for name: Swift.String) throws -> Swift.String - public static var hostName: Swift.String { - get - } - public static var machine: Swift.String { - get - } - public static var model: Swift.String { - get - } - public static var activeCPUs: Swift.Int32 { - get - } - public static var osRelease: Swift.String { - get - } - public static var osType: Swift.String { - get - } - public static var osVersion: Swift.String { - get - } - public static var version: Swift.String { - get - } -} -@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class ApptentiveNavigationController : UIKit.UINavigationController { - @_Concurrency.MainActor(unsafe) @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle { +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class ApptentiveNavigationController : UIKit.UINavigationController { + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle { @objc get } - @objc @_Concurrency.MainActor(unsafe) public static var prefersLargeHeader: Swift.Bool + @objc @_Concurrency.MainActor @preconcurrency public static var prefersLargeHeader: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes @available(iOS 5.0, *) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(rootViewController: UIKit.UIViewController) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) - @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?) + #endif + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(rootViewController: UIKit.UIViewController) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) + #endif @objc deinit } -extension UIKit.UITableView { - @_Concurrency.MainActor(unsafe) public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat +@_Concurrency.MainActor extension UIKit.UITableView { + @_Concurrency.MainActor public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat } -extension UIKit.UITableView.Style { - public static var apptentive: UIKit.UITableView.Style +@_Concurrency.MainActor extension UIKit.UITableView.Style { + @_Concurrency.MainActor public static var apptentive: UIKit.UITableView.Style } -extension UIKit.UIModalPresentationStyle { - public static var apptentive: UIKit.UIModalPresentationStyle +@_Concurrency.MainActor extension UIKit.UIModalPresentationStyle { + @_Concurrency.MainActor public static var apptentive: UIKit.UIModalPresentationStyle } -extension UIKit.UIBarButtonItem { - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIBarButtonItem - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveProfileEdit: UIKit.UIBarButtonItem +@_Concurrency.MainActor extension UIKit.UIBarButtonItem { + @objc @_Concurrency.MainActor public static var apptentiveClose: UIKit.UIBarButtonItem + @objc @_Concurrency.MainActor public static var appentiveRefresh: UIKit.UIBarButtonItem + @objc @_Concurrency.MainActor public static var apptentiveProfileEdit: UIKit.UIBarButtonItem } -extension UIKit.UIButton { - @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIButton? - public enum ApptentiveButtonStyle { +@_Concurrency.MainActor extension UIKit.UIButton { + @_Concurrency.MainActor public static var apptentiveClose: UIKit.UIButton? + public enum ApptentiveButtonStyle : Swift.Equatable { case pill case radius(CoreFoundation.CGFloat) - } - @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle -} -extension UIKit.UIImage { - @objc public static var apptentiveMessageAttachmentButton: UIKit.UIImage? - @objc public static var apptentiveMessageSendButton: UIKit.UIImage? - @objc public static var apptentiveSentMessageBubble: UIKit.UIImage? - @objc public static var apptentiveReceivedMessageBubble: UIKit.UIImage? - @objc public static var apptentiveAttachmentPlaceholder: UIKit.UIImage? - @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIImage? - @objc public static var apptentiveHeaderLogo: UIKit.UIImage? - @objc public static var apptentiveRadioButton: UIKit.UIImage? - @objc public static var apptentiveCheckbox: UIKit.UIImage? - @objc public static var apptentiveRadioButtonSelected: UIKit.UIImage? - @objc public static var apptentiveCheckboxSelected: UIKit.UIImage? -} -extension UIKit.UIColor { - @objc public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor - @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor + public static func == (a: UIKit.UIButton.ApptentiveButtonStyle, b: UIKit.UIButton.ApptentiveButtonStyle) -> Swift.Bool + } + @_Concurrency.MainActor public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle +} +@_Concurrency.MainActor extension UIKit.UIImage { + @objc @_Concurrency.MainActor public static var apptentiveMessageAttachmentButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveMessageSendButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveSentMessageBubble: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveReceivedMessageBubble: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveAttachmentPlaceholder: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveAttachmentRemoveButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveHeaderLogo: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveRadioButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveCheckbox: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveRadioButtonSelected: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveCheckboxSelected: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveDialogHeader: UIKit.UIImage? +} +@_Concurrency.MainActor extension UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageTextInputPlaceholder'.") - @objc public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor { @objc get @objc set } - @objc public static var apptentiveMessageCenterTextInput: UIKit.UIColor - @objc public static var apptentivetextInputTint: UIKit.UIColor - @objc public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInput: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentivetextInputTint: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageCenterTextInputBorder'.") - @objc public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor { @objc get @objc set } - @objc public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor - @objc public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor - @objc public static var apptentiveMessageCenterStatus: UIKit.UIColor - @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor - @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor - @objc public static var apptentiveMessageBubbleInbound: UIKit.UIColor - @objc public static var apptentiveMessageBubbleOutbound: UIKit.UIColor - @objc public static var apptentiveMessageLabelInbound: UIKit.UIColor - @objc public static var apptentiveMessageLabelOutbound: UIKit.UIColor - @objc public static var apptentiveQuestionLabel: UIKit.UIColor - @objc public static var apptentiveInstructionsLabel: UIKit.UIColor - @objc public static var apptentiveChoiceLabel: UIKit.UIColor - @objc public static var apptentiveError: UIKit.UIColor - @objc public static var apptentiveTint: UIKit.UIColor - @objc public static var apptentiveSecondaryLabel: UIKit.UIColor - @objc public static var apptentiveRangeControlBorder: UIKit.UIColor - @objc public static var apptentiveSurveyIntroduction: UIKit.UIColor - @objc public static var apptentiveTextInputBorder: UIKit.UIColor - @objc public static var apptentiveTextInputBackground: UIKit.UIColor - @objc public static var apptentiveTextInput: UIKit.UIColor - @objc public static var apptentiveTextInputPlaceholder: UIKit.UIColor - @objc public static var apptentiveMinMaxLabel: UIKit.UIColor - @objc public static var apptentiveGroupedBackground: UIKit.UIColor - @objc public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor - @objc public static var apptentiveSeparator: UIKit.UIColor - @objc public static var apptentiveImageSelected: UIKit.UIColor - @objc public static var apptentiveImageNotSelected: UIKit.UIColor - @objc public static var apptentiveSubmitButton: UIKit.UIColor - @objc public static var apptentiveBranchedSurveyFooter: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterStatus: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageBubbleInbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageBubbleOutbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageLabelInbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageLabelOutbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveQuestionLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveInstructionsLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveChoiceLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveError: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTint: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSecondaryLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveRangeControlBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSurveyIntroduction: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSurveyTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveOtherTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveOtherTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInput: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputPlaceholder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMinMaxLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveGroupedBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSeparator: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveImageSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveImageNotSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveBranchedSurveyFooter: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.") - public static var apptentiveSubmitLabel: UIKit.UIColor - @objc public static var apptentiveSubmitStatusLabel: UIKit.UIColor - @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIColor - @objc public static var apptentiveSubmitButtonTitle: UIKit.UIColor - @objc public static var apptentiveSubmitButtonBorder: UIKit.UIColor - @objc public static var apptentiveQuestionSeparator: UIKit.UIColor - public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor - public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor - @objc public static var apptentiveMessageCenterBackground: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveSubmitLabel: UIKit.UIColor { + get + set + } + @objc @_Concurrency.MainActor public static var apptentiveSubmitStatusLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTermsOfServiceLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveQuestionSeparator: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterBackground: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveAttachmentRemoveButton'.") - @objc public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor - @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIColor - @objc public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor - @objc public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor - @objc public static var apptentiveTextInputBorderSelected: UIKit.UIColor - @objc public static var apptentiveDisclaimerLabel: UIKit.UIColor -} -extension UIKit.UIFont { - @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont - @objc public static var apptentiveMessageCenterTextInput: UIKit.UIFont - @objc public static var apptentiveTextInputPlaceholder: UIKit.UIFont - @objc public static var apptentiveMessageCenterStatus: UIKit.UIFont - @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont - @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont - @objc public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont - @objc public static var apptentiveQuestionLabel: UIKit.UIFont - @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIFont - @objc public static var apptentiveChoiceLabel: UIKit.UIFont - @objc public static var apptentiveMessageLabel: UIKit.UIFont - @objc public static var apptentiveMinMaxLabel: UIKit.UIFont - @objc public static var apptentiveSenderLabel: UIKit.UIFont - @objc public static var apptentiveMessageDateLabel: UIKit.UIFont - @objc public static var apptentiveInstructionsLabel: UIKit.UIFont - @objc public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor { + @objc get + @objc set + } + @objc @_Concurrency.MainActor public static var apptentiveAttachmentRemoveButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBorderSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDisclaimerLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogBackground: UIKit.UIColor? + @objc @_Concurrency.MainActor public static var apptentiveDialogTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogMessage: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogButtonBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogButtonLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveButtonBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogSeparator: UIKit.UIColor +} +@_Concurrency.MainActor extension UIKit.UIFont { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInput: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTextInputPlaceholder: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterStatus: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveQuestionLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTermsOfServiceLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveChoiceLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMinMaxLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSenderLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageDateLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveInstructionsLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.") - public static var apptentiveSubmitLabel: UIKit.UIFont - @objc public static var apptentiveSubmitStatusLabel: UIKit.UIFont - @objc public static var apptentiveDisclaimerLabel: UIKit.UIFont - @objc public static var apptentiveSubmitButtonTitle: UIKit.UIFont - @objc public static var apptentiveTextInput: UIKit.UIFont + @_Concurrency.MainActor public static var apptentiveSubmitLabel: UIKit.UIFont { + get + set + } + @objc @_Concurrency.MainActor public static var apptentiveSubmitStatusLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDisclaimerLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTextInput: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogText: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogMessage: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogButton: UIKit.UIFont } -extension UIKit.UIToolbar { +@_Concurrency.MainActor extension UIKit.UIToolbar { @objc public enum ToolbarMode : Swift.Int { case alwaysShown case hiddenWhenEmpty + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif + @available(iOS 2.0, *) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode + @objc @_Concurrency.MainActor public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode +} +@_Concurrency.MainActor extension CoreFoundation.CGFloat { + @_Concurrency.MainActor public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat + @_Concurrency.MainActor public static var apptentiveDialogCornerRadius: CoreFoundation.CGFloat + @_Concurrency.MainActor public static var apptentiveDialogButtonSpacing: CoreFoundation.CGFloat +} +@_Concurrency.MainActor extension CoreFoundation.CGSize { + @_Concurrency.MainActor public static var apptentiveThumbnail: CoreFoundation.CGSize } -extension CoreFoundation.CGFloat { - public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat +@available(iOS 26.0, *) +@_Concurrency.MainActor extension UIKit.UICornerConfiguration { + @_Concurrency.MainActor public static var apptentiveDialogButton: UIKit.UICornerConfiguration } +extension ApptentiveKit.DialogViewModel : Swift.Sendable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.Hashable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.RawRepresentable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Hashable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.RawRepresentable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.Equatable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.Hashable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.RawRepresentable {} -extension ApptentiveKit.SystemFontNames : Swift.Equatable {} -extension ApptentiveKit.SystemFontNames : Swift.Hashable {} -extension ApptentiveKit.SystemFontNames : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel : Swift.Sendable {} +extension ApptentiveKit.MessageCenterViewModel : Swift.Sendable {} extension ApptentiveKit.MessageCenterViewModel.Message.SentStatus : Swift.Hashable {} +extension ApptentiveKit.Apptentive : Swift.Sendable {} extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Equatable {} extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Hashable {} -extension ApptentiveKit.LogLevel : Swift.Hashable {} -extension ApptentiveKit.LogLevel : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice : Swift.Sendable {} extension ApptentiveKit.Apptentive.UITheme : Swift.Equatable {} extension ApptentiveKit.Apptentive.UITheme : Swift.Hashable {} extension ApptentiveKit.Apptentive.UITheme : Swift.RawRepresentable {} +extension ApptentiveKit.Apptentive.Region : Swift.Equatable {} +extension ApptentiveKit.Apptentive.Region : Swift.Hashable {} +extension ApptentiveKit.Apptentive.Region : Swift.RawRepresentable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.Equatable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.Hashable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.RawRepresentable {} extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Equatable {} extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Hashable {} +extension ApptentiveKit.SurveyViewModel.Page : Swift.Sendable {} extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Equatable {} extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Hashable {} extension ApptentiveKit.MessageCenterViewModelError : Swift.Equatable {} extension ApptentiveKit.MessageCenterViewModelError : Swift.Hashable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.Equatable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.Hashable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel.Question : Swift.Sendable {} +extension ApptentiveKit.InteractionPresenter : Swift.Sendable {} extension ApptentiveKit.DialogViewModel.DialogType : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.DialogType : Swift.Hashable {} @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") @@ -1340,22 +1297,12 @@ extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Equatable extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Hashable {} @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.RawRepresentable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.Equatable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.Hashable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.RawRepresentable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.Equatable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.Hashable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.RawRepresentable {} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Equatable {} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Hashable {} extension UIKit.UIToolbar.ToolbarMode : Swift.Equatable {} extension UIKit.UIToolbar.ToolbarMode : Swift.Hashable {} extension UIKit.UIToolbar.ToolbarMode : Swift.RawRepresentable {} diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.swiftdoc b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.swiftdoc index bde9228..7f92e7c 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.swiftdoc and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.swiftinterface b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.swiftinterface index d224b6d..868e3bd 100644 --- a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.swiftinterface +++ b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,8 +1,10 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) -// swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ApptentiveKit +// swift-compiler-version: Apple Swift version 6.2.3 (swiftlang-6.2.3.3.21 clang-1700.6.3.2) +// swift-module-flags: -target arm64-apple-ios15.0 -enable-objc-interop -enable-library-evolution -swift-version 6 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -module-name ApptentiveKit +// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.3 import CommonCrypto import CoreTelephony +import CryptoKit import DeveloperToolsSupport import Foundation import MobileCoreServices @@ -11,41 +13,48 @@ import PhotosUI import QuickLook import QuickLookThumbnailing import SafariServices +import Security import StoreKit import Swift import SwiftUI import UIKit +import UniformTypeIdentifiers +import UserNotifications import WebKit import _Concurrency import _StringProcessing import _SwiftConcurrencyShims -@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate { - @_Concurrency.MainActor(unsafe) @objc override dynamic public var next: UIKit.UIResponder? { +@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var next: UIKit.UIResponder? { @objc get } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool) - @_Concurrency.MainActor(unsafe) public func dismiss() - @_Concurrency.MainActor(unsafe) public func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage imageData: ApptentiveKit.DialogViewModel.Image) + #endif + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool) + @_Concurrency.MainActor public func dismiss() + @_Concurrency.MainActor public func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage imageData: ApptentiveKit.DialogViewModel.Image) @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class EnjoymentDialogViewController : ApptentiveKit.DialogViewController { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class EnjoymentDialogViewController : ApptentiveKit.DialogViewController { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class TextModalViewController : ApptentiveKit.DialogViewController { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class TextModalViewController : ApptentiveKit.DialogViewController { @objc deinit } extension ApptentiveKit.DialogViewModel { public enum Image : Swift.Equatable { case none case loading(altText: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout) - case loaded(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout, maxHeight: CoreFoundation.CGFloat) + case loaded(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout) public enum Layout : Swift.String { case fullWidth case leading case trailing case center + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get @@ -58,13 +67,15 @@ extension ApptentiveKit.DialogViewModel { @_hasMissingDesignatedInitializers public class Action { final public let label: Swift.String final public let actionType: ApptentiveKit.DialogViewModel.Action.ActionType - final public let buttonTapped: () -> Swift.Void + final public let buttonTapped: @_Concurrency.MainActor @Sendable () -> Swift.Void public enum ActionType : Swift.String { case dismiss case interaction case yes case no + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get @@ -73,45 +84,25 @@ extension ApptentiveKit.DialogViewModel { @objc deinit } } -public enum HTMLTextAlignment : Swift.String { - case center - case left - case right - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public enum SystemFontNames : Swift.String { - case html - case os - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -extension Swift.String { - public func attributedString(withFont font: UIKit.UIFont, alignment: ApptentiveKit.HTMLTextAlignment) -> Foundation.NSMutableAttributedString? -} extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let minValue: Swift.Int - final public let maxValue: Swift.Int - final public let minText: Swift.String? - final public let maxText: Swift.String? - public var selectedValueIndex: Swift.Int? { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let minValue: Swift.Int + @_Concurrency.MainActor final public let maxValue: Swift.Int + @_Concurrency.MainActor final public let minText: Swift.String? + @_Concurrency.MainActor final public let maxText: Swift.String? + @_Concurrency.MainActor public var selectedValueIndex: Swift.Int? { get } - public var value: Swift.Int? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var value: Swift.Int? { get } - public var choiceLabels: [Swift.String] { + #endif + @_Concurrency.MainActor public var choiceLabels: [Swift.String] { get } - public func selectValue(at index: Swift.Int) - public var accessibilityHintForSegment: Swift.String { + @_Concurrency.MainActor public func selectValue(at index: Swift.Int) + @_Concurrency.MainActor public var accessibilityHintForSegment: Swift.String { get } @objc deinit @@ -142,9 +133,9 @@ extension ApptentiveKit.MessageCenterViewModel { case sending case sent case failed - public func hash(into hasher: inout Swift.Hasher) public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.SentStatus, b: ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> Swift.Bool public func encode(to encoder: any Swift.Encoder) throws + public func hash(into hasher: inout Swift.Hasher) public var hashValue: Swift.Int { get } @@ -162,24 +153,32 @@ extension ApptentiveKit.MessageCenterViewModel { } @objc @_hasMissingDesignatedInitializers public class Attachment : ObjectiveC.NSObject, QuickLook.QLPreviewItem { final public let fileExtension: Swift.String? + #if compiler(>=5.3) && $NonescapableTypes public var thumbnail: UIKit.UIImage? { get } + #endif public var downloadProgress: Swift.Float public var localURL: Foundation.URL? public var displayName: Swift.String { get } + #if compiler(>=5.3) && $NonescapableTypes @objc public var previewItemURL: Foundation.URL? { @objc get } + #endif + #if compiler(>=5.3) && $NonescapableTypes @objc public var previewItemTitle: Swift.String? { @objc get } + #endif + #if compiler(>=5.3) && $NonescapableTypes @objc override dynamic public var accessibilityLabel: Swift.String? { @objc get @objc set } + #endif public var removeButtonAccessibilityLabel: Swift.String { get } @@ -191,21 +190,19 @@ extension ApptentiveKit.MessageCenterViewModel { @objc deinit } } -extension ApptentiveKit.Apptentive : UserNotifications.UNUserNotificationCenterDelegate { - @objc dynamic public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data) - @available(*, deprecated, message: "Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead.") - @objc dynamic public func setRemoteNotifcationDeviceToken(_ tokenData: Foundation.Data) - @objc dynamic public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool - @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool - @objc dynamic public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool - @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) - @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) +extension ApptentiveKit.Apptentive : @preconcurrency UserNotifications.UNUserNotificationCenterDelegate { + @objc @_Concurrency.MainActor final public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data) + @objc @_Concurrency.MainActor final public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping @Sendable (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool + @objc @_Concurrency.MainActor final public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool + @objc @_Concurrency.MainActor final public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool + @_Concurrency.MainActor @objc final public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping @Sendable (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) + @_Concurrency.MainActor @objc final public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping @Sendable () -> Swift.Void) } extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice] - public func toggleChoice(at index: Swift.Int) - public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice] + @_Concurrency.MainActor public func toggleChoice(at index: Swift.Int) + @_Concurrency.MainActor public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle { get } public enum SelectionStyle { @@ -217,18 +214,17 @@ extension ApptentiveKit.SurveyViewModel { get } } - @_hasMissingDesignatedInitializers public class Choice { - final public let label: Swift.String - public var htmlLabel: Foundation.NSAttributedString? - final public let placeholderText: Swift.String? - final public let supportsOther: Swift.Bool - public var isSelected: Swift.Bool { + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Choice { + @_Concurrency.MainActor final public let label: Foundation.AttributedString + @_Concurrency.MainActor final public let placeholderText: Swift.String? + @_Concurrency.MainActor final public let supportsOther: Swift.Bool + @_Concurrency.MainActor public var isSelected: Swift.Bool { get } - public var isMarkedAsInvalid: Swift.Bool { + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get } - public var value: Swift.String? { + @_Concurrency.MainActor public var value: Swift.String? { get set } @@ -237,94 +233,89 @@ extension ApptentiveKit.SurveyViewModel { @objc deinit } } -public struct ApptentiveLogger { - public static var shouldHideSensitiveLogs: Swift.Bool - public var logLevel: ApptentiveKit.LogLevel -} -extension ApptentiveKit.ApptentiveLogger { - public static var `default`: ApptentiveKit.ApptentiveLogger - public static var engagement: ApptentiveKit.ApptentiveLogger - public static var interaction: ApptentiveKit.ApptentiveLogger - public static var network: ApptentiveKit.ApptentiveLogger - public static var payload: ApptentiveKit.ApptentiveLogger - public static var targeting: ApptentiveKit.ApptentiveLogger - public static var messages: ApptentiveKit.ApptentiveLogger - public static var attachments: ApptentiveKit.ApptentiveLogger - public static var resources: ApptentiveKit.ApptentiveLogger - public static var logLevel: ApptentiveKit.LogLevel { - get - set - } -} -public enum LogLevel : Swift.Int, Swift.Comparable { - case debug - case info - case notice - case warning - case error - case critical - case fault - public static func < (lhs: ApptentiveKit.LogLevel, rhs: ApptentiveKit.LogLevel) -> Swift.Bool - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } +extension os.Logger { + public static let `default`: os.Logger + public static let engagement: os.Logger + public static let interaction: os.Logger + public static let network: os.Logger + public static let payload: os.Logger + public static let targeting: os.Logger + public static let messages: os.Logger + public static let attachments: os.Logger + public static let resources: os.Logger } @objc public protocol ApptentiveDelegate { @objc func authenticationDidFail(with error: any Swift.Error) } -@objc @_hasMissingDesignatedInitializers public class Apptentive : ObjectiveC.NSObject { - @objc public static let shared: ApptentiveKit.Apptentive - @objc weak public var delegate: (any ApptentiveKit.ApptentiveDelegate)? - public var interactionPresenter: ApptentiveKit.InteractionPresenter { +@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class Apptentive : ObjectiveC.NSObject { + @objc @_Concurrency.MainActor public static let shared: ApptentiveKit.Apptentive + @objc @_Concurrency.MainActor weak final public var delegate: (any ApptentiveKit.ApptentiveDelegate)? + @_Concurrency.MainActor final public var interactionPresenter: ApptentiveKit.InteractionPresenter { get set } - @objc public var theme: ApptentiveKit.Apptentive.UITheme - @objc public var personName: Swift.String? { + @objc @_Concurrency.MainActor final public var theme: ApptentiveKit.Apptentive.UITheme + @objc @_Concurrency.MainActor final public var shouldUseSecureTokenStorage: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personName: Swift.String? { @objc get @objc set + _modify } - @objc public var personEmailAddress: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personEmailAddress: Swift.String? { @objc get @objc set + _modify } - @objc public var mParticleID: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var mParticleID: Swift.String? { @objc get @objc set + _modify } - public var personCustomData: ApptentiveKit.CustomData { + #endif + @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personCustomData: ApptentiveKit.CustomData { get set + _modify } - public var deviceCustomData: ApptentiveKit.CustomData { + @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var deviceCustomData: ApptentiveKit.CustomData { get set + _modify } - @objc dynamic public var unreadMessageCount: Swift.Int - @objc public var distributionName: Swift.String? { + @objc @_Concurrency.MainActor dynamic final public var unreadMessageCount: Swift.Int + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var distributionName: Swift.String? { @objc get @objc set + _modify } - @objc public var distributionVersion: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var distributionVersion: Swift.String? { @objc get @objc set + _modify } - @objc public enum UITheme : Swift.Int { + #endif + @objc public enum UITheme : Swift.Int, Swift.Sendable { case apptentive = 1 + case customerOnly = 2 + case customerBasedOnApptentive = 3 case none = 0 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } - public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials) async throws - #endif - public struct AppCredentials : Swift.Codable, Swift.Equatable { + public struct AppCredentials : Swift.Codable, Swift.Equatable, Swift.Sendable { public let key: Swift.String public let signature: Swift.String public init(key: Swift.String, signature: Swift.String) @@ -332,45 +323,74 @@ public enum LogLevel : Swift.Int, Swift.Comparable { public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } - public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil) async throws -> Swift.Bool + public enum Region : Swift.String, Swift.Sendable { + case us + case eu + case au + #if compiler(>=5.3) && $NonescapableTypes + public init?(rawValue: Swift.String) + #endif + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct Environment : Swift.Sendable { + public init(_ template: @escaping @Sendable (Swift.String, ApptentiveKit.Apptentive.Region) -> Swift.String) + public static let production: ApptentiveKit.Apptentive.Environment + public static func custom(_ url: Foundation.URL) -> ApptentiveKit.Apptentive.Environment + } + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, region: ApptentiveKit.Apptentive.Region = .us, environment: ApptentiveKit.Apptentive.Environment = .production, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + nonisolated final public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, region: ApptentiveKit.Apptentive.Region = .us, environment: ApptentiveKit.Apptentive.Environment = .production) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + nonisolated final public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil) async throws -> Swift.Bool #endif - public func dismissAllInteractions(animated: Swift.Bool) - public func presentMessageCenter(from viewController: UIKit.UIViewController?, completion: ((Swift.Result) -> Swift.Void)? = nil) - public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData?, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil) async throws -> Swift.Bool + @_Concurrency.MainActor final public func dismissAllInteractions(animated: Swift.Bool) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - @objc(sendAttachmentText:) public func sendAttachment(_ text: Swift.String) - @objc(sendAttachmentImage:) public func sendAttachment(_ image: UIKit.UIImage) - @objc(sendAttachmentFile:withMimeType:) public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String) - public func canShowInteraction(event: ApptentiveKit.Event, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func canShowInteraction(event: ApptentiveKit.Event) async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + nonisolated final public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil) async throws -> Swift.Bool #endif - public func canShowMessageCenter(completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func canShowMessageCenter() async throws -> Swift.Bool + @objc(sendAttachmentText:) nonisolated final public func sendAttachment(_ text: Swift.String) + @objc(sendAttachmentImage:) nonisolated final public func sendAttachment(_ image: UIKit.UIImage) + @objc(sendAttachmentFile:withMimeType:) nonisolated final public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func canShowInteraction(event: ApptentiveKit.Event, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - public func logIn(with token: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void) - #if compiler(>=5.3) && $AsyncAwait - public func logIn(with token: Swift.String) async throws + nonisolated final public func canShowInteraction(event: ApptentiveKit.Event) async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func canShowMessageCenter(completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - public func logOut(completion: ((Swift.Result) -> Swift.Void)?) - #if compiler(>=5.3) && $AsyncAwait - public func logOut() async throws + nonisolated final public func canShowMessageCenter() async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func logIn(with token: Swift.String, completion: @escaping @Sendable (Swift.Result) -> Swift.Void) #endif - public func updateToken(_ token: Swift.String, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func updateToken(_ token: Swift.String) async throws + nonisolated final public func logIn(with token: Swift.String) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func logOut(completion: (@Sendable (Swift.Result) -> Swift.Void)?) #endif - convenience public init(apiBaseURL: Foundation.URL) + nonisolated final public func logOut() async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func updateToken(_ token: Swift.String, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + nonisolated final public func updateToken(_ token: Swift.String) async throws + @propertyWrapper public struct BackendSync { + public var wrappedValue: T { + get + set + } + } @objc deinit } -public enum ApptentiveError : Swift.Error, Foundation.LocalizedError { +public enum ApptentiveError : Swift.Error, Foundation.LocalizedError, Swift.Equatable { case internalInconsistency - case invalidCustomDataType(Any?) + case invalidCustomDataType case fileExistsAtContainerDirectoryPath case unsupportedBackendStateTransition case emptyEventName @@ -381,14 +401,19 @@ public enum ApptentiveError : Swift.Error, Foundation.LocalizedError { case missingSubClaim case mismatchedSubClaim case invalidEncryptionKey + case invalidAppCredentials case noActiveConversation case authenticationFailed(reason: ApptentiveKit.AuthenticationFailureReason?, responseString: Swift.String?) case resourceNotDecodableAsImage + case interactionExceededRateLimit(count: Swift.Int, limit: Swift.Int) + #if compiler(>=5.3) && $NonescapableTypes public var errorDescription: Swift.String? { get } + #endif + public static func == (a: ApptentiveKit.ApptentiveError, b: ApptentiveKit.ApptentiveError) -> Swift.Bool } -public enum AuthenticationFailureReason : Swift.String, Swift.Codable { +public enum AuthenticationFailureReason : Swift.String, Swift.Codable, Swift.Sendable { case invalidAlgorithm case malformedToken case invalidToken @@ -400,14 +425,16 @@ public enum AuthenticationFailureReason : Swift.String, Swift.Codable { case missingAppKey case missingAppSignature case invalidKeySignaturePair + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get } } -public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> () -public protocol CustomDataCompatible { +nonisolated(unsafe) public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> () +public protocol CustomDataCompatible : Swift.Sendable { } extension Swift.String : ApptentiveKit.CustomDataCompatible { } @@ -419,12 +446,14 @@ extension Swift.Int : ApptentiveKit.CustomDataCompatible { } extension Swift.Bool : ApptentiveKit.CustomDataCompatible { } -public struct CustomData : Swift.Equatable, Swift.Codable { +public struct CustomData : Swift.Equatable, Swift.Codable, Swift.Sendable { public init() + #if compiler(>=5.3) && $NonescapableTypes public subscript(key: Swift.String) -> (any ApptentiveKit.CustomDataCompatible)? { get set } + #endif public var keys: Swift.Dictionary.Keys { get } @@ -432,56 +461,64 @@ public struct CustomData : Swift.Equatable, Swift.Codable { public init(from decoder: any Swift.Decoder) throws public static func == (lhs: ApptentiveKit.CustomData, rhs: ApptentiveKit.CustomData) -> Swift.Bool } -public protocol SurveyViewModelDelegate : AnyObject { - func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) -} -@_hasMissingDesignatedInitializers public class SurveyViewModel { - final public let name: Swift.String? - final public let isRequired: Swift.Bool - final public let pageIndicatorSegmentCount: Swift.Int - final public let validationErrorMessage: Swift.String - public var disclaimerText: Swift.String? { +@_Concurrency.MainActor public protocol SurveyViewModelDelegate : AnyObject { + @_Concurrency.MainActor func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class SurveyViewModel { + @_Concurrency.MainActor final public let name: Swift.String? + @_Concurrency.MainActor final public let isRequired: Swift.Bool + @_Concurrency.MainActor final public let pageIndicatorSegmentCount: Swift.Int + @_Concurrency.MainActor final public let validationErrorMessage: Foundation.AttributedString + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var disclaimerText: Foundation.AttributedString? { get } + #endif public struct TermsAndConditions { } - final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions? + @_Concurrency.MainActor final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions? public struct CloseConfirmation { } - final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation - weak public var delegate: (any ApptentiveKit.SurveyViewModelDelegate)? - public var currentPage: ApptentiveKit.SurveyViewModel.Page { + @_Concurrency.MainActor final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation + @_Concurrency.MainActor weak public var delegate: (any ApptentiveKit.SurveyViewModelDelegate)? + @_Concurrency.MainActor public var currentPage: ApptentiveKit.SurveyViewModel.Page { get } - public var questions: [ApptentiveKit.SurveyViewModel.Question] { + @_Concurrency.MainActor public var questions: [ApptentiveKit.SurveyViewModel.Question] { get } - public var isMarkedAsInvalid: Swift.Bool { + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get } - public var thankYouMessage: Swift.String? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var thankYouMessage: Foundation.AttributedString? { get } - public var introduction: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var introduction: Foundation.AttributedString? { get } - public var advanceButtonText: Swift.String { + #endif + @_Concurrency.MainActor public var advanceButtonText: Swift.String { get } - public var invalidQuestionIndexes: Foundation.IndexSet { + @_Concurrency.MainActor public var invalidQuestionIndexes: Foundation.IndexSet { get } - public var surveyDidSendResponse: Swift.Bool - public var highlightFirstQuestionSegment: Swift.Bool - public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath) - public func selectValueFromRange(at indexPath: Foundation.IndexPath) - public func openTermsAndConditions() - public func advance() - public var isValid: Swift.Bool { + @_Concurrency.MainActor public var surveyDidSendResponse: Swift.Bool + @_Concurrency.MainActor public var highlightFirstQuestionSegment: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath) + #endif + @_Concurrency.MainActor public func selectValueFromRange(at indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func openTermsAndConditions() + @_Concurrency.MainActor public func advance() async + @_Concurrency.MainActor public var isValid: Swift.Bool { get } public enum DisplayMode { @@ -493,104 +530,106 @@ public protocol SurveyViewModelDelegate : AnyObject { get } } - public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode { + @_Concurrency.MainActor public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode { get } - public var shouldConfirmCancel: Swift.Bool { + @_Concurrency.MainActor public var shouldConfirmCancel: Swift.Bool { get } - public var currentSelectedSegmentIndex: Swift.Int? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var currentSelectedSegmentIndex: Swift.Int? { get } - public func launch() - public func continuePartial() - public func cancel(partial: Swift.Bool) + #endif + @_Concurrency.MainActor public var isIntroPage: Swift.Bool { + get + } + @_Concurrency.MainActor public var isSuccessPage: Swift.Bool { + get + } + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func continuePartial() + @_Concurrency.MainActor public func cancel(partial: Swift.Bool) @objc deinit } extension ApptentiveKit.SurveyViewModel { - @_hasMissingDesignatedInitializers public class Page { - final public let id: Swift.String - final public let description: Swift.String? - final public let disclaimer: Swift.String? - final public let questions: [ApptentiveKit.SurveyViewModel.Question] - final public let advanceButtonLabel: Swift.String - final public let pageIndicatorValue: Swift.Int? + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Page { + @_Concurrency.MainActor final public let id: Swift.String + @_Concurrency.MainActor final public let description: Foundation.AttributedString? + @_Concurrency.MainActor final public let disclaimer: Foundation.AttributedString? + @_Concurrency.MainActor final public let questions: [ApptentiveKit.SurveyViewModel.Question] + @_Concurrency.MainActor final public let advanceButtonLabel: Swift.String + @_Concurrency.MainActor final public let pageIndicatorValue: Swift.Int? @objc deinit } } -public protocol MessageCenterViewModelDelegate : AnyObject { - func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToRemoveAttachmentAt index: Swift.Int, with error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToAddAttachmentWith error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToSendMessageWith error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFinishAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFailAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath, with error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, profilePhoto: UIKit.UIImage, didDownloadFor indexPath: Foundation.IndexPath) -} -@_hasMissingDesignatedInitializers public class MessageCenterViewModel { - final public let headingTitle: Swift.String - final public let branding: Swift.String? - final public let composerTitle: Swift.String - final public let composerSendButtonTitle: Swift.String - final public let composerAttachButtonTitle: Swift.String - final public let composerPlaceholderText: Swift.String - final public let composerCloseConfirmBody: Swift.String - final public let composerCloseDiscardButtonTitle: Swift.String - final public let composerCloseCancelButtonTitle: Swift.String - final public let greetingTitle: Swift.String - final public let greetingBody: Swift.String - final public let greetingImageURL: Foundation.URL - final public let statusBody: Swift.String? - public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]] - public var hasLoadedMessages: Swift.Bool - public var thumbnailSize: CoreFoundation.CGSize { +@_Concurrency.MainActor public protocol MessageCenterViewModelDelegate : AnyObject { + @_Concurrency.MainActor func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel) +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class MessageCenterViewModel { + @_Concurrency.MainActor final public let headingTitle: Swift.String + @_Concurrency.MainActor final public let branding: Swift.String? + @_Concurrency.MainActor final public let composerTitle: Swift.String + @_Concurrency.MainActor final public let composerSendButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerAttachButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerPlaceholderText: Swift.String + @_Concurrency.MainActor final public let composerCloseConfirmBody: Swift.String + @_Concurrency.MainActor final public let composerCloseDiscardButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerCloseCancelButtonTitle: Swift.String + @_Concurrency.MainActor final public let greetingTitle: Swift.String + @_Concurrency.MainActor final public let greetingBody: Swift.String + @_Concurrency.MainActor final public let greetingImageURL: Foundation.URL + @_Concurrency.MainActor final public let statusBody: Swift.String? + @_Concurrency.MainActor public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]] + @_Concurrency.MainActor public var hasLoadedMessages: Swift.Bool + @_Concurrency.MainActor public var thumbnailSize: CoreFoundation.CGSize { get set } - final public let profileNamePlaceholder: Swift.String - final public let profileEmailPlaceholder: Swift.String - final public let profileCancelButtonText: Swift.String - final public let profileSaveButtonText: Swift.String - final public let profileEmailInvalidError: Swift.String - final public let editProfileViewTitle: Swift.String - final public let editProfileNamePlaceholder: Swift.String - final public let editProfileEmailPlaceholder: Swift.String - final public let editProfileCancelButtonText: Swift.String - final public let editProfileSaveButtonText: Swift.String - final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode - final public let closeButtonAccessibilityLabel: Swift.String - final public let closeButtonAccessibilityHint: Swift.String - final public let profileButtonAccessibilityLabel: Swift.String - final public let profileButtonAccessibilityHint: Swift.String - final public let sendButtonAccessibilityLabel: Swift.String - final public let sendButtonAccessibilityHint: Swift.String - final public let attachButtonAccessibilityLabel: Swift.String - final public let attachButtonAccessibilityHint: Swift.String - final public let attachmentOptionsTitle: Swift.String - final public let attachmentOptionsImagesButton: Swift.String - final public let attachmentOptionsFilesButton: Swift.String - final public let attachmentOptionsCancelButton: Swift.String - final public let showAttachmentButtonAccessibilityHint: Swift.String - final public let downloadAttachmentButtonAccessibilityHint: Swift.String - public var emailAddress: Swift.String? { + @_Concurrency.MainActor final public let profileNamePlaceholder: Swift.String + @_Concurrency.MainActor final public let profileEmailPlaceholder: Swift.String + @_Concurrency.MainActor final public let profileCancelButtonText: Swift.String + @_Concurrency.MainActor final public let profileSaveButtonText: Swift.String + @_Concurrency.MainActor final public let profileEmailInvalidError: Swift.String + @_Concurrency.MainActor final public let editProfileViewTitle: Swift.String + @_Concurrency.MainActor final public let editProfileNamePlaceholder: Swift.String + @_Concurrency.MainActor final public let editProfileEmailPlaceholder: Swift.String + @_Concurrency.MainActor final public let editProfileCancelButtonText: Swift.String + @_Concurrency.MainActor final public let editProfileSaveButtonText: Swift.String + @_Concurrency.MainActor final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode + @_Concurrency.MainActor final public let closeButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let closeButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let profileButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let profileButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let sendButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let sendButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let attachButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let attachButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsTitle: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsImagesButton: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsFilesButton: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsCancelButton: Swift.String + @_Concurrency.MainActor final public let showAttachmentButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let downloadAttachmentButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor public var emailAddress: Swift.String? { get set } - public var name: Swift.String? { + @_Concurrency.MainActor public var name: Swift.String? { get set } - public var profileIsValid: Swift.Bool - public var shouldRequestProfile: Swift.Bool - public var shouldAllowProfileEdit: Swift.Bool + @_Concurrency.MainActor public var profileIsValid: Swift.Bool + @_Concurrency.MainActor public var shouldRequestProfile: Swift.Bool + @_Concurrency.MainActor public var shouldAllowProfileEdit: Swift.Bool public enum ProfileMode { case optionalEmail case requiredEmail @@ -601,49 +640,61 @@ public protocol MessageCenterViewModelDelegate : AnyObject { get } } - public var oldestUnreadMessageIndexPath: Foundation.IndexPath? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var oldestUnreadMessageIndexPath: Foundation.IndexPath? { get } - public var newestMessageIndexPath: Foundation.IndexPath? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var newestMessageIndexPath: Foundation.IndexPath? { get } - public func commitProfileEdits() - public func cancelProfileEdits() - public func launch() - public func cancel() - public var numberOfMessageGroups: Swift.Int { + #endif + @_Concurrency.MainActor public func commitProfileEdits() + @_Concurrency.MainActor public func cancelProfileEdits() + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func cancel() + @_Concurrency.MainActor public var numberOfMessageGroups: Swift.Int { get } - public func markMessageAsRead(at indexPath: Foundation.IndexPath) - public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int - public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String? - public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message - public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) - public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message { + @_Concurrency.MainActor public func markMessageAsRead(at indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String? + #endif + @_Concurrency.MainActor public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message + @_Concurrency.MainActor public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) async throws + @_Concurrency.MainActor public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message { get } - public var draftMessageBody: Swift.String? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var draftMessageBody: Swift.String? { get set } - public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] { + #endif + @_Concurrency.MainActor public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] { get } - public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?) - public func addFileAttachment(at sourceURL: Foundation.URL) - public func removeAttachment(at index: Swift.Int) - public var remainingAttachmentSlots: Swift.Int { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?) async throws + #endif + @_Concurrency.MainActor public func addFileAttachment(at sourceURL: Foundation.URL) async throws + @_Concurrency.MainActor public func removeAttachment(at index: Swift.Int) async throws + @_Concurrency.MainActor public var remainingAttachmentSlots: Swift.Int { get } - public var canAddAttachment: Swift.Bool { + @_Concurrency.MainActor public var canAddAttachment: Swift.Bool { get } - public var canSendMessage: Swift.Bool { + @_Concurrency.MainActor public var canSendMessage: Swift.Bool { get } - public func sendMessage() - public func getGreetingImage(completion: @escaping (UIKit.UIImage) -> Swift.Void) - public func getProfilePhoto(for indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func sendMessage() async throws + @_Concurrency.MainActor public func getGreetingImage() async throws -> UIKit.UIImage + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func getProfilePhoto(for indexPath: Foundation.IndexPath) async throws -> UIKit.UIImage? + #endif @objc deinit } public enum MessageCenterViewModelError : Swift.Error { @@ -656,92 +707,134 @@ public enum MessageCenterViewModelError : Swift.Error { } } extension ApptentiveKit.Apptentive { - public var engagementManifestURL: Foundation.URL? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public var engagementManifestURL: Foundation.URL? { get } - public func loadEngagementManifest(at url: Foundation.URL?, completion: @escaping (Swift.Result) -> Swift.Void) - public func getInteractionList(_ completion: @escaping ([ApptentiveKit.Apptentive.InteractionListItem]) -> Swift.Void) - public func presentInteraction(with id: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void) - public func presentInteraction(at url: Foundation.URL, completion: @escaping (Swift.Result) -> Swift.Void) + #endif + public enum ConversationState : Swift.String { + case none + case placeholder + case anonymousPending + case legacyPending + case anonymous + case loggedIn + case loggedOut + #if compiler(>=5.3) && $NonescapableTypes + public init?(rawValue: Swift.String) + #endif + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func loadEngagementManifest(at url: Foundation.URL?) async throws + #endif + @_Concurrency.MainActor final public func getInteractionList() async -> [ApptentiveKit.Apptentive.InteractionListItem] + @_Concurrency.MainActor final public func presentInteraction(with id: Swift.String) async throws + @_Concurrency.MainActor final public func presentInteraction(at url: Foundation.URL) async throws public struct InteractionListItem { public let id: Swift.String public let displayName: Swift.String public let typeName: Swift.String } - public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void) - public func getConnectionInfo(_ completion: @escaping (_ state: Swift.String?, _ id: Swift.String?, _ token: Swift.String?, _ subject: Swift.String?, _ buttonLabel: Swift.String?) -> Swift.Void) + @_Concurrency.MainActor final public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func getConnectionInfo() async -> (ApptentiveKit.Apptentive.ConversationState, Swift.String?, Swift.String?) + #endif +} +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @available(iOS 26, *) +@_Concurrency.MainActor @preconcurrency public class GlassDialogButton : UIKit.UIView { + #if compiler(>=5.3) && $IsolatedDeinit + @objc @_Concurrency.MainActor deinit + #else + @objc deinit + #endif } extension ApptentiveKit.SurveyViewModel { - @_hasMissingDesignatedInitializers public class Question { - final public let text: Swift.String - final public let isRequired: Swift.Bool - final public let requiredText: Swift.String? - final public let errorMessage: Swift.String - final public let instructions: Swift.String? - public var isMarkedAsInvalid: Swift.Bool { + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Question { + @_Concurrency.MainActor final public let text: Foundation.AttributedString + @_Concurrency.MainActor final public let isRequired: Swift.Bool + @_Concurrency.MainActor final public let requiredText: Swift.String? + @_Concurrency.MainActor final public let errorMessage: Swift.String + @_Concurrency.MainActor final public let instructions: Swift.String? + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get set } - public var accessibilityLabel: Swift.String { + @_Concurrency.MainActor public var accessibilityLabel: Swift.String { get } @objc deinit } } -public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible { +public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible, Swift.CustomStringConvertible, Swift.Sendable { public var customData: ApptentiveKit.CustomData public init(name: Swift.String) public init(stringLiteral value: Swift.String) public var debugDescription: Swift.String { get } + public var description: Swift.String { + get + } public typealias ExtendedGraphemeClusterLiteralType = Swift.String public typealias StringLiteralType = Swift.String public typealias UnicodeScalarLiteralType = Swift.String } -open class InteractionPresenter { - public init() - open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) throws - open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) throws - open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) throws - open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel, completion: @escaping (Swift.Result) -> Swift.Void) - open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController, completion: (() -> Swift.Void)? = {}) throws - public var validatedPresentingViewController: UIKit.UIViewController? { +@_Concurrency.MainActor open class InteractionPresenter { + @_Concurrency.MainActor public init() + @_Concurrency.MainActor open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) async throws + @_Concurrency.MainActor open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) async throws + @_Concurrency.MainActor open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) async throws + @_Concurrency.MainActor open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel) async throws + @_Concurrency.MainActor open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var validatedPresentingViewController: UIKit.UIViewController? { get } - public var messageCenterCurrentlyPresented: Swift.Bool { + #endif + @_Concurrency.MainActor public var messageCenterCurrentlyPresented: Swift.Bool { get } - open func dismissPresentedViewController(animated: Swift.Bool) + @_Concurrency.MainActor open func dismissPresentedViewController(animated: Swift.Bool) @objc deinit } -public enum InteractionPresenterError : Swift.Error { +public enum InteractionPresenterError : Swift.Error, Swift.Equatable { case notImplemented(Swift.String, Swift.String) case decodingFailed(Swift.String, Swift.String) case noPresentingViewController + public static func == (a: ApptentiveKit.InteractionPresenterError, b: ApptentiveKit.InteractionPresenterError) -> Swift.Bool +} +extension ApptentiveKit.Apptentive { + @objc @_Concurrency.MainActor public static var fontName: Swift.String? { + @objc get + @objc set + } } extension Foundation.NSNotification.Name { public static let apptentiveEventEngaged: Foundation.Notification.Name } -public protocol DialogViewModelDelegate : AnyObject { - func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage: ApptentiveKit.DialogViewModel.Image) - func dismiss() -} -@_hasMissingDesignatedInitializers public class DialogViewModel { - final public let title: Swift.String? - final public let message: Swift.String? - final public let dialogType: ApptentiveKit.DialogViewModel.DialogType - final public let actions: [ApptentiveKit.DialogViewModel.Action] - public var dialogContainsImage: Swift.Bool - public var image: ApptentiveKit.DialogViewModel.Image { +@_Concurrency.MainActor public protocol DialogViewModelDelegate : AnyObject { + @_Concurrency.MainActor func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage: ApptentiveKit.DialogViewModel.Image) + @_Concurrency.MainActor func dismiss() +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class DialogViewModel { + @_Concurrency.MainActor final public let title: Foundation.AttributedString? + @_Concurrency.MainActor final public let message: Foundation.AttributedString? + @_Concurrency.MainActor final public let dialogType: ApptentiveKit.DialogViewModel.DialogType + @_Concurrency.MainActor final public let actions: [ApptentiveKit.DialogViewModel.Action] + @_Concurrency.MainActor public var dialogContainsImage: Swift.Bool + @_Concurrency.MainActor public var image: ApptentiveKit.DialogViewModel.Image { get set } - public var maxHeight: Swift.Int - weak public var delegate: (any ApptentiveKit.DialogViewModelDelegate)? - public func buttonSelected(at position: Swift.Int) - public func launch() - public func cancel() + @_Concurrency.MainActor public var maxHeight: Swift.Int + @_Concurrency.MainActor weak public var delegate: (any ApptentiveKit.DialogViewModelDelegate)? + @_Concurrency.MainActor public func buttonSelected(at position: Swift.Int) + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func cancel() public enum DialogType { case enjoymentDialog case textModal @@ -753,30 +846,30 @@ public protocol DialogViewModelDelegate : AnyObject { } @objc deinit } -@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogView : UIKit.UIView { - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleTextColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var messageTextColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var messageFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var headerImage: UIKit.UIImage? - @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonSpacing: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonInset: UIKit.UIEdgeInsets - @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorsAreHidden: Swift.Bool - @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var imageInset: UIKit.UIEdgeInsets { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogView : UIKit.UIView { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleTextColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var messageTextColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var messageFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var headerImage: UIKit.UIImage? + @objc @_Concurrency.MainActor @preconcurrency dynamic public var cornerRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var buttonSpacing: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var buttonInset: UIKit.UIEdgeInsets + @objc @_Concurrency.MainActor @preconcurrency dynamic public var separatorsAreHidden: Swift.Bool + @objc @_Concurrency.MainActor @preconcurrency dynamic public var separatorColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var imageInset: UIKit.UIEdgeInsets { @objc get @objc set } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func didMoveToWindow() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func layoutSubviews() @objc deinit } extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let placeholderText: Swift.String? - final public let allowMultipleLines: Swift.Bool - public var value: Swift.String? { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let placeholderText: Swift.String? + @_Concurrency.MainActor final public let allowMultipleLines: Swift.Bool + @_Concurrency.MainActor public var value: Swift.String? { get set } @@ -784,155 +877,106 @@ extension ApptentiveKit.SurveyViewModel { } } extension ApptentiveKit.Apptentive { - @available(*, deprecated, message: "Use the 'register(with:completion:)' method on the 'shared' instance instead.") - @objc(registerWithConfiguration:) dynamic public class func register(with configuration: ApptentiveKit.ApptentiveConfiguration) + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the 'register(with:completion:) method that takes an 'AppCredentials' argument.") - @objc(registerWithConfiguration:completion:) dynamic public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "Use the 'shared' static property instead.") - @objc dynamic public class func sharedConnection() -> ApptentiveKit.Apptentive - @available(*, deprecated, message: "This property is ignored. SKStoreReviewController will be used for all ratings.") - @objc dynamic public var appID: Swift.String? { - @objc get - @objc set - } - @available(*, deprecated, message: "This property is ignored. The info button no longer exists.") - @objc dynamic public var showInfoButton: Swift.Bool { - @objc get - @objc set - } - @available(*, deprecated, message: "This feature is not implemented.") - @objc dynamic public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? { - @objc get - @objc set - } - @available(*, deprecated, message: "This property is not available for reading.") - @objc dynamic public var apptentiveKey: Swift.String { - @objc get - } - @available(*, deprecated, message: "This property is not available for reading.") - @objc dynamic public var apptentiveSignature: Swift.String { - @objc get - } - @objc(engage:fromViewController:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?) - @objc(engage:fromViewController:completion:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) + @objc(registerWithConfiguration:completion:) @_Concurrency.MainActor final public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(engage:fromViewController:) @_Concurrency.MainActor final public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(engage:fromViewController:completion:) @_Concurrency.MainActor final public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.") - @objc(engage:withCustomData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?) + @objc(engage:withCustomData:fromViewController:) @_Concurrency.MainActor final public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.") - @objc(engage:withCustomData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.") - @objc(engage:withCustomData:withExtendedData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?) - @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.") - @objc(engage:withCustomData:withExtendedData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:completion:)' method instead.") - @objc dynamic public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void) - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataDate:) dynamic public class func extendedData(date: Foundation.Date) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataLocationForLatitude:longitude:) dynamic public class func extendedData(latitude: Swift.Double, longitude: Swift.Double) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:) dynamic public class func extendedData(transactionID: Swift.String?, affiliation: Swift.String?, revenue: Foundation.NSNumber?, shipping: Foundation.NSNumber?, tax: Foundation.NSNumber?, currency: Swift.String?, commerceItems: [[Swift.AnyHashable : Any]]?) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:) dynamic public class func extendedData(itemID: Swift.String?, name: Swift.String?, category: Swift.String?, price: Foundation.NSNumber?, quantity: Foundation.NSNumber?, currency: Swift.String?) -> [Swift.AnyHashable : Any] - @available(swift, deprecated: 1.0, message: "Use the 'canShowMessageCenter(completion:)' method instead.") - @objc dynamic public func queryCanShowMessageCenter(completion: @escaping (Swift.Bool) -> Swift.Void) - @objc(presentMessageCenterFromViewController:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?) - @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc(presentMessageCenterFromViewController:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @objc(presentMessageCenterFromViewController:withCustomData:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?) - @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc(presentMessageCenterFromViewController:withCustomData:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "This feature is not implemented and this method will always result in false.") - @objc dynamic public func dismissMessageCenter(animated: Swift.Bool, completion: (() -> Swift.Void)? = nil) - @available(*, deprecated, message: "This feature is not implemented and this property will return an empty view.") - @objc dynamic public func unreadMessageCountAccessoryView(apptentiveHeart: Swift.Bool) -> UIKit.UIView - @available(*, deprecated, message: "This method is no longer implemented and will trigger an assertion failure.") - @objc dynamic public func openAppStore() - @available(*, deprecated, message: "Use the 'setRemoteNotificationToken()' method instead.") - @objc dynamic public func setPushProvider(_ pushProvider: ApptentiveKit.ApptentivePushProvider, deviceToken: Foundation.Data) - @available(*, deprecated, message: "This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:).") - @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, from _: UIKit.UIViewController?, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool - @available(*, deprecated, message: "Advertising identifier collection is not implemented.") - @objc dynamic public var advertisingIdentifier: Foundation.UUID? { - @objc get - @objc set - } - @available(*, deprecated, message: "mParticleId has been renamed to mParticleID.") - @objc dynamic public var mParticleId: Swift.String? { - @objc get - @objc set - } + @objc(engage:withCustomData:fromViewController:completion:) @_Concurrency.MainActor final public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:)' method instead.") + @objc @_Concurrency.MainActor final public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping @Sendable (Swift.Bool) -> Swift.Void) + @available(swift, deprecated: 1.0, message: "Use the 'canShowMessageCenter()' method instead.") + @objc @_Concurrency.MainActor final public func queryCanShowMessageCenter(completion: @escaping @Sendable (Swift.Bool) -> Swift.Void) + #if compiler(>=5.3) && $NonescapableTypes + @objc(presentMessageCenterFromViewController:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @available(swift, deprecated: 1.0, message: "Use the async version of this method.") + @objc(presentMessageCenterFromViewController:completion:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(presentMessageCenterFromViewController:withCustomData:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @available(swift, deprecated: 1.0, message: "Use the async version of this method.") + @objc(presentMessageCenterFromViewController:withCustomData:completion:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc dynamic public func removeCustomPersonData(withKey key: Swift.String) + @objc @_Concurrency.MainActor final public func removeCustomPersonData(withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc dynamic public func removeCustomDeviceData(withKey key: Swift.String) + @objc @_Concurrency.MainActor final public func removeCustomDeviceData(withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataString:withKey:) dynamic public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String) + @objc(addCustomDeviceDataString:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataNumber:withKey:) dynamic public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String) + @objc(addCustomDeviceDataNumber:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataBool:withKey:) dynamic public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String) + @objc(addCustomDeviceDataBool:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataString:withKey:) dynamic public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String) + @objc(addCustomPersonDataString:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataNumber:withKey:) dynamic public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String) + @objc(addCustomPersonDataNumber:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataBool:withKey:) dynamic public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String) - @available(*, deprecated, message: "Set style overrides defined in UIKit+Apptentive.swift extensions.") - @objc dynamic public var styleSheet: Any? { - @objc get - @objc set - } - @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.") - @objc dynamic public func checkSDKConfiguration() + @objc(addCustomPersonDataBool:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String) + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func logIn(withToken token: Swift.String, completion: @escaping (Swift.Bool, (any Swift.Error)?) -> Swift.Void) + @objc @_Concurrency.MainActor final public func logIn(withToken token: Swift.String, completion: @escaping @Sendable (Swift.Bool, (any Swift.Error)?) -> Swift.Void) + #endif @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func logOut() + @objc @_Concurrency.MainActor final public func logOut() + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Assign an object that conforms to the 'ApptentiveDelegate' protocol to the Apptentive instance's 'delegate' property.") - @objc dynamic public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? { - @objc get - @objc set - } - @available(*, deprecated, message: "This feature is no longer supported.") - @objc dynamic public var preInteractionCallback: ApptentiveKit.ApptentiveInteractionCallback? { + @objc @_Concurrency.MainActor final public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? { @objc get @objc set } + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func updateToken(_ token: Swift.String, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") - @objc dynamic public var logLevel: ApptentiveKit.ApptentiveLogLevel { + @objc @_Concurrency.MainActor final public func updateToken(_ token: Swift.String, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + @available(swift, deprecated: 1.0, message: "Log level is no longer supported. Use the filtering in Xcode or Console app.") + @objc @_Concurrency.MainActor final public var logLevel: ApptentiveKit.ApptentiveLogLevel { @objc get @objc set } } extension UIKit.UIButton { @available(swift, deprecated: 1.0, message: "Set the 'apptentiveStyle' property to 'ApptentiveButtonStyle.pill'.") - @objc @_Concurrency.MainActor(unsafe) public static let apptentivePillRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency public static let apptentivePillRadius: CoreFoundation.CGFloat @available(swift, deprecated: 1.0, message: "Use the 'apptentiveStyle' property.") - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveCornerRadius: CoreFoundation.CGFloat { + @objc @_Concurrency.MainActor @preconcurrency public static var apptentiveCornerRadius: CoreFoundation.CGFloat { @objc get @objc set } } extension UIKit.UITableView { @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UITableView.Style'.") - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: Swift.Int { + @objc @_Concurrency.MainActor @preconcurrency public static var apptentiveStyle: Swift.Int { @objc get @objc set } } extension UIKit.UIViewController { @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UIModalPresentationStyle'.") - @objc @_Concurrency.MainActor(unsafe) dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle { @objc get @objc set } } @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") public typealias ApptentiveAuthenticationFailureCallback = (ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> Swift.Void -@available(*, deprecated, message: "This feature is no longer supported.") -public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") @objc public enum ApptentiveAuthenticationFailureReason : Swift.Int { case unknown = 0 @@ -947,7 +991,10 @@ public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashab case missingAppKey = 9 case missingAppSignature = 10 case invalidKeySignaturePair = 11 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif + @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get @@ -957,39 +1004,23 @@ public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashab public class ApptentiveConfiguration : ObjectiveC.NSObject { @objc final public let apptentiveKey: Swift.String @objc final public let apptentiveSignature: Swift.String - @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of its static log properties.") + @available(*, deprecated, message: "Logging now uses iOS's Unified Logging features so logs are no longer filtered by the SDK.") @objc public var logLevel: ApptentiveKit.ApptentiveLogLevel - @available(swift, deprecated: 1.0, message: "Set the 'shouldHideSensitiveLogs' property on 'ApptentiveLogger' or one of its static log properties.") + @available(*, deprecated, message: "Logging now uses iOS's Unified Logging features so redaction of sensitive information is handled automatically.") @objc public var shouldSanitizeLogMessages: Swift.Bool - @available(*, deprecated, message: "This property is ignored. Use the designated initializer for 'Apptentive' to set this.") - @objc public var baseURL: Foundation.URL? + @objc public var overrideBaseURL: Foundation.URL? + @objc public var region: Swift.String? @available(swift, deprecated: 1.0, message: "Set the 'distributionName' property on 'Apptentive' directly before calling 'register(with:completion)'.") @objc public var distributionName: Swift.String? @available(swift, deprecated: 1.0, message: "Set the 'distributionVersion' property on 'Apptentive' directly before calling 'register(with:completion)'.") @objc public var distributionVersion: Swift.String? - @available(*, deprecated, message: "This property is ignored. An 'SKStoreReviewController' will be used for all ratings.") - @objc public var appID: Swift.String? - @available(*, deprecated, message: "This property is ignored. The info button no longer exists.") - @objc public var showInfoButton: Swift.Bool - @available(*, deprecated, message: "This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard.") - @objc public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? + #if compiler(>=5.3) && $NonescapableTypes @objc(initWithApptentiveKey:apptentiveSignature:) required public init?(apptentiveKey: Swift.String, apptentiveSignature: Swift.String) + #endif @objc public static func configuration(apptentiveKey key: Swift.String, apptentiveSignature signature: Swift.String) -> ApptentiveKit.ApptentiveConfiguration @objc deinit } -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -@objc public enum ApptentivePushProvider : Swift.Int { - case apptentive = 0 - case urbanAirship = 1 - case amazonSNS = 2 - case parse = 3 - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") @objc public enum ApptentiveLogLevel : Swift.UInt { case undefined = 0 case crit = 1 @@ -998,340 +1029,266 @@ public class ApptentiveConfiguration : ObjectiveC.NSObject { case info = 4 case debug = 5 case verbose = 6 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.UInt) + #endif + @available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") public typealias RawValue = Swift.UInt public var rawValue: Swift.UInt { get } } -@objc @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public class TermsAndConditions : ObjectiveC.NSObject { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public init(bodyText: Swift.String?, linkText: Swift.String?, linkURL: Foundation.URL?) - final public let bodyText: Swift.String? - final public let linkText: Swift.String? - final public let linkURL: Foundation.URL? - @objc deinit -} -@available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public protocol ApptentiveStyle { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor -} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -public enum ApptentiveStyleIdentifier { - case body - case headerTitle - case headerMessage - case messageDate - case messageSender - case messageStatus - case messageCenterStatus - case surveyInstructions - case doneButton - case button - case submitButton - case textInput - case headerBackground - case footerBackground - case failure - case separator - case background - case collectionBackground - case textInputBackground - case textInputPlaceholder - case messageBackground - case replyBackground - case contextBackground - public static func == (a: ApptentiveKit.ApptentiveStyleIdentifier, b: ApptentiveKit.ApptentiveStyleIdentifier) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public class ApptentiveStyleSheet : ApptentiveKit.ApptentiveStyle { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - convenience public init?(contentsOf stylePropertyListURL: Foundation.URL) - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var fontFamily: Swift.String - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var lightFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var regularFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var mediumFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var boldFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var primaryColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var secondaryColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var failureColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var backgroundColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var separatorColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var collectionBackgroundColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var placeholderColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var sizeAdjustment: CoreFoundation.CGFloat - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func setFontDescriptor(_ fontDescriptor: UIKit.UIFontDescriptor, forStyle style: Swift.String) - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func setColor(_ color: UIKit.UIColor, forStyle style: Swift.String) - @objc deinit -} -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogButton : UIKit.UIButton { - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var borderWidth: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var borderColor: UIKit.UIColor - @_Concurrency.MainActor(unsafe) @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogButton : UIKit.UIButton { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var cornerRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var borderWidth: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var borderColor: UIKit.UIColor + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize { @objc get } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func layoutSubviews() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func didMoveToWindow() @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DismissButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DismissButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class InteractionButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class InteractionButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class YesButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class YesButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class NoButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class NoButton : ApptentiveKit.DialogButton { @objc deinit } -public struct Sysctl { - public enum Error : Swift.Error { - case unknown - case malformedUTF8 - case invalidSize - case posixError(Darwin.POSIXErrorCode) - } - public static func data(for keys: [Swift.Int32]) throws -> [Swift.Int8] - public static func keys(for name: Swift.String) throws -> [Swift.Int32] - public static func value(ofType: T.Type, forKeys keys: [Swift.Int32]) throws -> T - public static func value(ofType type: T.Type, forKeys keys: Swift.Int32...) throws -> T - public static func value(ofType type: T.Type, forName name: Swift.String) throws -> T - public static func string(for keys: [Swift.Int32]) throws -> Swift.String - public static func string(for keys: Swift.Int32...) throws -> Swift.String - public static func string(for name: Swift.String) throws -> Swift.String - public static var hostName: Swift.String { - get - } - public static var machine: Swift.String { - get - } - public static var model: Swift.String { - get - } - public static var activeCPUs: Swift.Int32 { - get - } - public static var osRelease: Swift.String { - get - } - public static var osType: Swift.String { - get - } - public static var osVersion: Swift.String { - get - } - public static var version: Swift.String { - get - } -} -@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class ApptentiveNavigationController : UIKit.UINavigationController { - @_Concurrency.MainActor(unsafe) @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle { +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class ApptentiveNavigationController : UIKit.UINavigationController { + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle { @objc get } - @objc @_Concurrency.MainActor(unsafe) public static var prefersLargeHeader: Swift.Bool + @objc @_Concurrency.MainActor @preconcurrency public static var prefersLargeHeader: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes @available(iOS 5.0, *) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(rootViewController: UIKit.UIViewController) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) - @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?) + #endif + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(rootViewController: UIKit.UIViewController) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) + #endif @objc deinit } -extension UIKit.UITableView { - @_Concurrency.MainActor(unsafe) public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat +@_Concurrency.MainActor extension UIKit.UITableView { + @_Concurrency.MainActor public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat } -extension UIKit.UITableView.Style { - public static var apptentive: UIKit.UITableView.Style +@_Concurrency.MainActor extension UIKit.UITableView.Style { + @_Concurrency.MainActor public static var apptentive: UIKit.UITableView.Style } -extension UIKit.UIModalPresentationStyle { - public static var apptentive: UIKit.UIModalPresentationStyle +@_Concurrency.MainActor extension UIKit.UIModalPresentationStyle { + @_Concurrency.MainActor public static var apptentive: UIKit.UIModalPresentationStyle } -extension UIKit.UIBarButtonItem { - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIBarButtonItem - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveProfileEdit: UIKit.UIBarButtonItem +@_Concurrency.MainActor extension UIKit.UIBarButtonItem { + @objc @_Concurrency.MainActor public static var apptentiveClose: UIKit.UIBarButtonItem + @objc @_Concurrency.MainActor public static var appentiveRefresh: UIKit.UIBarButtonItem + @objc @_Concurrency.MainActor public static var apptentiveProfileEdit: UIKit.UIBarButtonItem } -extension UIKit.UIButton { - @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIButton? - public enum ApptentiveButtonStyle { +@_Concurrency.MainActor extension UIKit.UIButton { + @_Concurrency.MainActor public static var apptentiveClose: UIKit.UIButton? + public enum ApptentiveButtonStyle : Swift.Equatable { case pill case radius(CoreFoundation.CGFloat) - } - @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle -} -extension UIKit.UIImage { - @objc public static var apptentiveMessageAttachmentButton: UIKit.UIImage? - @objc public static var apptentiveMessageSendButton: UIKit.UIImage? - @objc public static var apptentiveSentMessageBubble: UIKit.UIImage? - @objc public static var apptentiveReceivedMessageBubble: UIKit.UIImage? - @objc public static var apptentiveAttachmentPlaceholder: UIKit.UIImage? - @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIImage? - @objc public static var apptentiveHeaderLogo: UIKit.UIImage? - @objc public static var apptentiveRadioButton: UIKit.UIImage? - @objc public static var apptentiveCheckbox: UIKit.UIImage? - @objc public static var apptentiveRadioButtonSelected: UIKit.UIImage? - @objc public static var apptentiveCheckboxSelected: UIKit.UIImage? -} -extension UIKit.UIColor { - @objc public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor - @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor + public static func == (a: UIKit.UIButton.ApptentiveButtonStyle, b: UIKit.UIButton.ApptentiveButtonStyle) -> Swift.Bool + } + @_Concurrency.MainActor public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle +} +@_Concurrency.MainActor extension UIKit.UIImage { + @objc @_Concurrency.MainActor public static var apptentiveMessageAttachmentButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveMessageSendButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveSentMessageBubble: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveReceivedMessageBubble: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveAttachmentPlaceholder: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveAttachmentRemoveButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveHeaderLogo: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveRadioButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveCheckbox: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveRadioButtonSelected: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveCheckboxSelected: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveDialogHeader: UIKit.UIImage? +} +@_Concurrency.MainActor extension UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageTextInputPlaceholder'.") - @objc public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor { @objc get @objc set } - @objc public static var apptentiveMessageCenterTextInput: UIKit.UIColor - @objc public static var apptentivetextInputTint: UIKit.UIColor - @objc public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInput: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentivetextInputTint: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageCenterTextInputBorder'.") - @objc public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor { @objc get @objc set } - @objc public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor - @objc public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor - @objc public static var apptentiveMessageCenterStatus: UIKit.UIColor - @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor - @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor - @objc public static var apptentiveMessageBubbleInbound: UIKit.UIColor - @objc public static var apptentiveMessageBubbleOutbound: UIKit.UIColor - @objc public static var apptentiveMessageLabelInbound: UIKit.UIColor - @objc public static var apptentiveMessageLabelOutbound: UIKit.UIColor - @objc public static var apptentiveQuestionLabel: UIKit.UIColor - @objc public static var apptentiveInstructionsLabel: UIKit.UIColor - @objc public static var apptentiveChoiceLabel: UIKit.UIColor - @objc public static var apptentiveError: UIKit.UIColor - @objc public static var apptentiveTint: UIKit.UIColor - @objc public static var apptentiveSecondaryLabel: UIKit.UIColor - @objc public static var apptentiveRangeControlBorder: UIKit.UIColor - @objc public static var apptentiveSurveyIntroduction: UIKit.UIColor - @objc public static var apptentiveTextInputBorder: UIKit.UIColor - @objc public static var apptentiveTextInputBackground: UIKit.UIColor - @objc public static var apptentiveTextInput: UIKit.UIColor - @objc public static var apptentiveTextInputPlaceholder: UIKit.UIColor - @objc public static var apptentiveMinMaxLabel: UIKit.UIColor - @objc public static var apptentiveGroupedBackground: UIKit.UIColor - @objc public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor - @objc public static var apptentiveSeparator: UIKit.UIColor - @objc public static var apptentiveImageSelected: UIKit.UIColor - @objc public static var apptentiveImageNotSelected: UIKit.UIColor - @objc public static var apptentiveSubmitButton: UIKit.UIColor - @objc public static var apptentiveBranchedSurveyFooter: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterStatus: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageBubbleInbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageBubbleOutbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageLabelInbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageLabelOutbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveQuestionLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveInstructionsLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveChoiceLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveError: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTint: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSecondaryLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveRangeControlBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSurveyIntroduction: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSurveyTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveOtherTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveOtherTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInput: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputPlaceholder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMinMaxLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveGroupedBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSeparator: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveImageSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveImageNotSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveBranchedSurveyFooter: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.") - public static var apptentiveSubmitLabel: UIKit.UIColor - @objc public static var apptentiveSubmitStatusLabel: UIKit.UIColor - @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIColor - @objc public static var apptentiveSubmitButtonTitle: UIKit.UIColor - @objc public static var apptentiveSubmitButtonBorder: UIKit.UIColor - @objc public static var apptentiveQuestionSeparator: UIKit.UIColor - public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor - public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor - @objc public static var apptentiveMessageCenterBackground: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveSubmitLabel: UIKit.UIColor { + get + set + } + @objc @_Concurrency.MainActor public static var apptentiveSubmitStatusLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTermsOfServiceLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveQuestionSeparator: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterBackground: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveAttachmentRemoveButton'.") - @objc public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor - @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIColor - @objc public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor - @objc public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor - @objc public static var apptentiveTextInputBorderSelected: UIKit.UIColor - @objc public static var apptentiveDisclaimerLabel: UIKit.UIColor -} -extension UIKit.UIFont { - @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont - @objc public static var apptentiveMessageCenterTextInput: UIKit.UIFont - @objc public static var apptentiveTextInputPlaceholder: UIKit.UIFont - @objc public static var apptentiveMessageCenterStatus: UIKit.UIFont - @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont - @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont - @objc public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont - @objc public static var apptentiveQuestionLabel: UIKit.UIFont - @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIFont - @objc public static var apptentiveChoiceLabel: UIKit.UIFont - @objc public static var apptentiveMessageLabel: UIKit.UIFont - @objc public static var apptentiveMinMaxLabel: UIKit.UIFont - @objc public static var apptentiveSenderLabel: UIKit.UIFont - @objc public static var apptentiveMessageDateLabel: UIKit.UIFont - @objc public static var apptentiveInstructionsLabel: UIKit.UIFont - @objc public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor { + @objc get + @objc set + } + @objc @_Concurrency.MainActor public static var apptentiveAttachmentRemoveButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBorderSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDisclaimerLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogBackground: UIKit.UIColor? + @objc @_Concurrency.MainActor public static var apptentiveDialogTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogMessage: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogButtonBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogButtonLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveButtonBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogSeparator: UIKit.UIColor +} +@_Concurrency.MainActor extension UIKit.UIFont { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInput: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTextInputPlaceholder: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterStatus: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveQuestionLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTermsOfServiceLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveChoiceLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMinMaxLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSenderLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageDateLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveInstructionsLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.") - public static var apptentiveSubmitLabel: UIKit.UIFont - @objc public static var apptentiveSubmitStatusLabel: UIKit.UIFont - @objc public static var apptentiveDisclaimerLabel: UIKit.UIFont - @objc public static var apptentiveSubmitButtonTitle: UIKit.UIFont - @objc public static var apptentiveTextInput: UIKit.UIFont + @_Concurrency.MainActor public static var apptentiveSubmitLabel: UIKit.UIFont { + get + set + } + @objc @_Concurrency.MainActor public static var apptentiveSubmitStatusLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDisclaimerLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTextInput: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogText: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogMessage: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogButton: UIKit.UIFont } -extension UIKit.UIToolbar { +@_Concurrency.MainActor extension UIKit.UIToolbar { @objc public enum ToolbarMode : Swift.Int { case alwaysShown case hiddenWhenEmpty + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif + @available(iOS 2.0, *) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode + @objc @_Concurrency.MainActor public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode +} +@_Concurrency.MainActor extension CoreFoundation.CGFloat { + @_Concurrency.MainActor public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat + @_Concurrency.MainActor public static var apptentiveDialogCornerRadius: CoreFoundation.CGFloat + @_Concurrency.MainActor public static var apptentiveDialogButtonSpacing: CoreFoundation.CGFloat +} +@_Concurrency.MainActor extension CoreFoundation.CGSize { + @_Concurrency.MainActor public static var apptentiveThumbnail: CoreFoundation.CGSize } -extension CoreFoundation.CGFloat { - public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat +@available(iOS 26.0, *) +@_Concurrency.MainActor extension UIKit.UICornerConfiguration { + @_Concurrency.MainActor public static var apptentiveDialogButton: UIKit.UICornerConfiguration } +extension ApptentiveKit.DialogViewModel : Swift.Sendable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.Hashable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.RawRepresentable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Hashable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.RawRepresentable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.Equatable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.Hashable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.RawRepresentable {} -extension ApptentiveKit.SystemFontNames : Swift.Equatable {} -extension ApptentiveKit.SystemFontNames : Swift.Hashable {} -extension ApptentiveKit.SystemFontNames : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel : Swift.Sendable {} +extension ApptentiveKit.MessageCenterViewModel : Swift.Sendable {} extension ApptentiveKit.MessageCenterViewModel.Message.SentStatus : Swift.Hashable {} +extension ApptentiveKit.Apptentive : Swift.Sendable {} extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Equatable {} extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Hashable {} -extension ApptentiveKit.LogLevel : Swift.Hashable {} -extension ApptentiveKit.LogLevel : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice : Swift.Sendable {} extension ApptentiveKit.Apptentive.UITheme : Swift.Equatable {} extension ApptentiveKit.Apptentive.UITheme : Swift.Hashable {} extension ApptentiveKit.Apptentive.UITheme : Swift.RawRepresentable {} +extension ApptentiveKit.Apptentive.Region : Swift.Equatable {} +extension ApptentiveKit.Apptentive.Region : Swift.Hashable {} +extension ApptentiveKit.Apptentive.Region : Swift.RawRepresentable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.Equatable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.Hashable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.RawRepresentable {} extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Equatable {} extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Hashable {} +extension ApptentiveKit.SurveyViewModel.Page : Swift.Sendable {} extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Equatable {} extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Hashable {} extension ApptentiveKit.MessageCenterViewModelError : Swift.Equatable {} extension ApptentiveKit.MessageCenterViewModelError : Swift.Hashable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.Equatable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.Hashable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel.Question : Swift.Sendable {} +extension ApptentiveKit.InteractionPresenter : Swift.Sendable {} extension ApptentiveKit.DialogViewModel.DialogType : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.DialogType : Swift.Hashable {} @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") @@ -1340,22 +1297,12 @@ extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Equatable extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Hashable {} @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.RawRepresentable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.Equatable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.Hashable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.RawRepresentable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.Equatable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.Hashable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.RawRepresentable {} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Equatable {} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Hashable {} extension UIKit.UIToolbar.ToolbarMode : Swift.Equatable {} extension UIKit.UIToolbar.ToolbarMode : Swift.Hashable {} extension UIKit.UIToolbar.ToolbarMode : Swift.RawRepresentable {} diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ar.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ar.lproj/Localizable.strings index 11d637e..01587b1 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ar.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ar.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/da.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/da.lproj/Localizable.strings index 01ee847..f0e7aa8 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/da.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/da.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/de.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/de.lproj/Localizable.strings index e8dedb3..869b57d 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/de.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/de.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/el.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/el.lproj/Localizable.strings index e374fff..c04ad7a 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/el.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/el.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/en.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/en.lproj/Localizable.strings index cc52768..03668c8 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/en.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/en.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/es.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/es.lproj/Localizable.strings index 92bc64b..ceb0424 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/es.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/es.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/fr-CA.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/fr-CA.lproj/Localizable.strings index d5636e5..0f39f61 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/fr-CA.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/fr-CA.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/fr.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/fr.lproj/Localizable.strings index b55be04..6d5757c 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/fr.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/fr.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/id.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/id.lproj/Localizable.strings index 5374766..03a9469 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/id.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/id.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/it.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/it.lproj/Localizable.strings index 36ff091..174bd0a 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/it.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/it.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ja.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ja.lproj/Localizable.strings index 1122040..60ab473 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ja.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ja.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ko.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ko.lproj/Localizable.strings index 7548aab..534e640 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ko.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ko.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ms.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ms.lproj/Localizable.strings index 53f7516..9638fb9 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ms.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ms.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/nl.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/nl.lproj/Localizable.strings index 21019bf..4db9753 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/nl.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/nl.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/pl.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/pl.lproj/Localizable.strings index 5db3e8c..6d297a4 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/pl.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/pl.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/pt-BR.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/pt-BR.lproj/Localizable.strings index f4930b1..022c1be 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/pt-BR.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/pt-BR.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ru.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ru.lproj/Localizable.strings index bf37297..b3d6cbc 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ru.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ru.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/sv.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/sv.lproj/Localizable.strings index eb1c408..111f04a 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/sv.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/sv.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/th.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/th.lproj/Localizable.strings index 0b40371..d92ea04 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/th.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/th.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/tr.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/tr.lproj/Localizable.strings index 139dbb7..2fcb4ff 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/tr.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/tr.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/zh-Hans.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/zh-Hans.lproj/Localizable.strings index d320e70..07c933f 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/zh-Hans.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/zh-Hans.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/zh-Hant.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/zh-Hant.lproj/Localizable.strings index d0d76ba..8505a29 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/zh-Hant.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/zh-Hant.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ApptentiveKit b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ApptentiveKit index 4b33c0b..3f268a0 100755 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ApptentiveKit and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ApptentiveKit differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Assets.car b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Assets.car index a29d18b..ce06cf3 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Assets.car and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Assets.car differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Distribution.plist b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Distribution.plist index 60bba09..2719476 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Distribution.plist and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Distribution.plist differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Headers/ApptentiveKit-Swift.h b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Headers/ApptentiveKit-Swift.h index 1519dda..7ad0663 100644 --- a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Headers/ApptentiveKit-Swift.h +++ b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Headers/ApptentiveKit-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// Generated by Apple Swift version 6.2.3 (swiftlang-6.2.3.3.21 clang-1700.6.3.2) #ifndef APPTENTIVEKIT_SWIFT_H #define APPTENTIVEKIT_SWIFT_H #pragma clang diagnostic push @@ -42,6 +42,8 @@ #include #endif #if defined(__cplusplus) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module" #if defined(__arm64e__) && __has_include() # include #else @@ -55,6 +57,7 @@ # endif #pragma clang diagnostic pop #endif +#pragma clang diagnostic pop #endif #if !defined(SWIFT_TYPEDEFS) @@ -62,6 +65,7 @@ # if __has_include() # include # elif !defined(__cplusplus) +typedef unsigned char char8_t; typedef uint_least16_t char16_t; typedef uint_least32_t char32_t; # endif @@ -293,6 +297,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" #pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" +#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -302,12 +307,12 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #if defined(__OBJC__) + @protocol ApptentiveDelegate; enum UITheme : NSInteger; @class NSString; @class UIImage; @class NSData; - /// The main interface to the Apptentive SDK. SWIFT_CLASS("_TtC13ApptentiveKit10Apptentive") @interface Apptentive : NSObject @@ -320,6 +325,10 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) Apptentive * /// The theme to apply to Apptentive UI. /// This property must be set before calling register(credentials:). @property (nonatomic) enum UITheme theme; +/// Whether to store sensitive conversation credentials in the iOS keychain. +/// This property must be set before calling register(credentials:). +/// It defaults to false for backward compatibility. +@property (nonatomic) BOOL shouldUseSecureTokenStorage; /// The name of the person using the app, if available. @property (nonatomic, copy) NSString * _Nullable personName; /// The email address of the person using the app, if available. @@ -363,21 +372,27 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) Apptentive * typedef SWIFT_ENUM(NSInteger, UITheme, open) { /// Apptentive cross-platform look and feel. UIThemeApptentive = 1, + UIThemeCustomerOnly = 2, + UIThemeCustomerBasedOnApptentive = 3, /// iOS default look and feel. UIThemeNone = 0, }; +@interface Apptentive (SWIFT_EXTENSION(ApptentiveKit)) +/// Overrides the system font in Apptentive interactions using the font with the specified name. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable fontName;) ++ (NSString * _Nullable)fontName SWIFT_WARN_UNUSED_RESULT; ++ (void)setFontName:(NSString * _Nullable)value; +@end @class UNNotificationResponse; @class UNNotification; @class UNUserNotificationCenter; - @interface Apptentive (SWIFT_EXTENSION(ApptentiveKit)) /// Sets the remote notification device token to the specified value. /// \param tokenData The remote notification device token passed into application(_:didRegisterForRemoteNotificationsWithDeviceToken:). /// - (void)setRemoteNotificationDeviceToken:(NSData * _Nonnull)tokenData; -- (void)setRemoteNotifcationDeviceToken:(NSData * _Nonnull)tokenData SWIFT_DEPRECATED_MSG("Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead."); /// Should be called in response to the application delegate receiving a remote notification. /// note: /// If the return value is false, the caller is responsible for calling the fetch completion handler. @@ -433,51 +448,23 @@ typedef SWIFT_ENUM(NSInteger, UITheme, open) { - (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center didReceiveNotificationResponse:(UNNotificationResponse * _Nonnull)response withCompletionHandler:(void (^ _Nonnull)(void))completionHandler; @end - - @class ApptentiveConfiguration; -@class TermsAndConditions; @class UIViewController; -@class NSDate; @class NSNumber; -@class UIView; -enum ApptentivePushProvider : NSInteger; -@class NSUUID; enum ApptentiveAuthenticationFailureReason : NSInteger; enum ApptentiveLogLevel : NSUInteger; - @interface Apptentive (SWIFT_EXTENSION(ApptentiveKit)) -+ (void)registerWithConfiguration:(ApptentiveConfiguration * _Nonnull)configuration SWIFT_DEPRECATED_MSG("Use the 'register(with:completion:)' method on the 'shared' instance instead."); - (void)registerWithConfiguration:(ApptentiveConfiguration * _Nonnull)configuration completion:(void (^ _Nullable)(BOOL))completion; -+ (Apptentive * _Nonnull)sharedConnection SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Use the 'shared' static property instead."); -@property (nonatomic, copy) NSString * _Nullable appID SWIFT_DEPRECATED_MSG("This property is ignored. SKStoreReviewController will be used for all ratings."); -@property (nonatomic) BOOL showInfoButton SWIFT_DEPRECATED_MSG("This property is ignored. The info button no longer exists."); -@property (nonatomic, strong) TermsAndConditions * _Nullable surveyTermsAndConditions SWIFT_DEPRECATED_MSG("This feature is not implemented."); -@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveKey SWIFT_DEPRECATED_MSG("This property is not available for reading."); -@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveSignature SWIFT_DEPRECATED_MSG("This property is not available for reading."); - (void)engage:(NSString * _Nonnull)event fromViewController:(UIViewController * _Nullable)viewController; - (void)engage:(NSString * _Nonnull)event fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion; - (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData fromViewController:(UIViewController * _Nullable)viewController; - (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion; -- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData withExtendedData:(NSArray * _Nullable)extendedData fromViewController:(UIViewController * _Nullable)viewController SWIFT_DEPRECATED_MSG("Event extended data are no longer supported. Event will be engaged without extended data."); -- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData withExtendedData:(NSArray * _Nullable)extendedData fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion SWIFT_DEPRECATED_MSG("Event extended data are no longer supported. Event will be engaged without extended data."); - (void)queryCanShowInteractionForEvent:(NSString * _Nonnull)event completion:(void (^ _Nonnull)(BOOL))completion; -+ (NSDictionary * _Nonnull)extendedDataDate:(NSDate * _Nonnull)date SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported."); -+ (NSDictionary * _Nonnull)extendedDataLocationForLatitude:(double)latitude longitude:(double)longitude SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported."); -+ (NSDictionary * _Nonnull)extendedDataCommerceWithTransactionID:(NSString * _Nullable)transactionID affiliation:(NSString * _Nullable)affiliation revenue:(NSNumber * _Nullable)revenue shipping:(NSNumber * _Nullable)shipping tax:(NSNumber * _Nullable)tax currency:(NSString * _Nullable)currency commerceItems:(NSArray * _Nullable)commerceItems SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported."); -+ (NSDictionary * _Nonnull)extendedDataCommerceItemWithItemID:(NSString * _Nullable)itemID name:(NSString * _Nullable)name category:(NSString * _Nullable)category price:(NSNumber * _Nullable)price quantity:(NSNumber * _Nullable)quantity currency:(NSString * _Nullable)currency SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported."); - (void)queryCanShowMessageCenterWithCompletion:(void (^ _Nonnull)(BOOL))completion; - (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController; - (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion; - (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController withCustomData:(NSDictionary * _Nullable)customData; - (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController withCustomData:(NSDictionary * _Nullable)customData completion:(void (^ _Nullable)(BOOL))completion; -- (void)dismissMessageCenterWithAnimated:(BOOL)animated completion:(void (^ _Nullable)(void))completion SWIFT_DEPRECATED_MSG("This feature is not implemented and this method will always result in false."); -- (UIView * _Nonnull)unreadMessageCountAccessoryViewWithApptentiveHeart:(BOOL)apptentiveHeart SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("This feature is not implemented and this property will return an empty view."); -- (void)openAppStore SWIFT_DEPRECATED_MSG("This method is no longer implemented and will trigger an assertion failure."); -- (void)setPushProvider:(enum ApptentivePushProvider)pushProvider deviceToken:(NSData * _Nonnull)deviceToken SWIFT_DEPRECATED_MSG("Use the 'setRemoteNotificationToken()' method instead."); -- (BOOL)didReceveUserNotificationResponse:(UNNotificationResponse * _Nonnull)response from:(UIViewController * _Nullable)_ withCompletionHandler:(void (^ _Nonnull)(void))completionHandler SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:)."); -@property (nonatomic, copy) NSUUID * _Nullable advertisingIdentifier SWIFT_DEPRECATED_MSG("Advertising identifier collection is not implemented."); -@property (nonatomic, copy) NSString * _Nullable mParticleId SWIFT_DEPRECATED_MSG("mParticleId has been renamed to mParticleID."); - (void)removeCustomPersonDataWithKey:(NSString * _Nonnull)key; - (void)removeCustomDeviceDataWithKey:(NSString * _Nonnull)key; - (void)addCustomDeviceDataString:(NSString * _Nonnull)string withKey:(NSString * _Nonnull)key; @@ -486,12 +473,9 @@ enum ApptentiveLogLevel : NSUInteger; - (void)addCustomPersonDataString:(NSString * _Nonnull)string withKey:(NSString * _Nonnull)key; - (void)addCustomPersonDataNumber:(NSNumber * _Nonnull)number withKey:(NSString * _Nonnull)key; - (void)addCustomPersonDataBool:(BOOL)boolValue withKey:(NSString * _Nonnull)key; -@property (nonatomic) id _Nullable styleSheet SWIFT_DEPRECATED_MSG("Set style overrides defined in UIKit+Apptentive.swift extensions."); -- (void)checkSDKConfiguration SWIFT_DEPRECATED_MSG("This method is not currently implemented and will trigger an assertion failure."); - (void)logInWithToken:(NSString * _Nonnull)token completion:(void (^ _Nonnull)(BOOL, NSError * _Nullable))completion; - (void)logOut; @property (nonatomic, copy) void (^ _Nullable authenticationFailureCallback)(enum ApptentiveAuthenticationFailureReason, NSString * _Nullable); -@property (nonatomic, copy) BOOL (^ _Nullable preInteractionCallback)(NSString * _Nonnull, NSDictionary * _Nullable) SWIFT_DEPRECATED_MSG("This feature is no longer supported."); - (void)updateToken:(NSString * _Nonnull)token completion:(void (^ _Nullable)(BOOL))completion; @property (nonatomic) enum ApptentiveLogLevel logLevel; @end @@ -524,7 +508,6 @@ typedef SWIFT_ENUM(NSInteger, ApptentiveAuthenticationFailureReason, open) { }; @class NSURL; - SWIFT_CLASS("_TtC13ApptentiveKit23ApptentiveConfiguration") @interface ApptentiveConfiguration : NSObject /// The Apptentive App Key, obtained from your Apptentive dashboard. @@ -532,21 +515,17 @@ SWIFT_CLASS("_TtC13ApptentiveKit23ApptentiveConfiguration") /// The Apptentive App Signature, obtained from your Apptentive dashboard. @property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveSignature; /// The granularity of log messages to show. -@property (nonatomic) enum ApptentiveLogLevel logLevel; +@property (nonatomic) enum ApptentiveLogLevel logLevel SWIFT_DEPRECATED_MSG("Logging now uses iOS's Unified Logging features so logs are no longer filtered by the SDK."); /// If set, redacts potentially-sensitive information such as user data and credentials from logging. -@property (nonatomic) BOOL shouldSanitizeLogMessages; +@property (nonatomic) BOOL shouldSanitizeLogMessages SWIFT_DEPRECATED_MSG("Logging now uses iOS's Unified Logging features so redaction of sensitive information is handled automatically."); /// The server URL to use for API calls. Should only be used for testing. -@property (nonatomic, copy) NSURL * _Nullable baseURL SWIFT_DEPRECATED_MSG("This property is ignored. Use the designated initializer for 'Apptentive' to set this."); +@property (nonatomic, copy) NSURL * _Nullable overrideBaseURL; +/// The region to use when resolving the API server base URL. +@property (nonatomic, copy) NSString * _Nullable region; /// The name of the distribution that includes the Apptentive SDK. For example “Cordova”. @property (nonatomic, copy) NSString * _Nullable distributionName; /// The version of the distribution that includes the Apptentive SDK. @property (nonatomic, copy) NSString * _Nullable distributionVersion; -/// The iTunes store app ID of the app (used for Apptentive rating prompt). -@property (nonatomic, copy) NSString * _Nullable appID SWIFT_DEPRECATED_MSG("This property is ignored. An 'SKStoreReviewController' will be used for all ratings."); -/// If set, shows a button in Surveys and Message Center that presents information about Apptentive including a link to our privacy policy. -@property (nonatomic) BOOL showInfoButton SWIFT_DEPRECATED_MSG("This property is ignored. The info button no longer exists."); -/// If set, will show a link to terms and conditions in the bottom bar in Surveys. -@property (nonatomic, strong) TermsAndConditions * _Nullable surveyTermsAndConditions SWIFT_DEPRECATED_MSG("This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard."); - (nullable instancetype)initWithApptentiveKey:(NSString * _Nonnull)apptentiveKey apptentiveSignature:(NSString * _Nonnull)apptentiveSignature OBJC_DESIGNATED_INITIALIZER; /// Returns an instance of the ApptentiveConfiguration class initialized with the specified parameters. /// \param key The Apptentive App Key, obtained from your Apptentive dashboard. @@ -561,7 +540,6 @@ SWIFT_CLASS("_TtC13ApptentiveKit23ApptentiveConfiguration") + (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); @end - /// Describes an object that responds to authentication failures for logged-in conversations. SWIFT_PROTOCOL("_TtP13ApptentiveKit18ApptentiveDelegate_") @protocol ApptentiveDelegate @@ -588,7 +566,6 @@ typedef SWIFT_ENUM(NSUInteger, ApptentiveLogLevel, open) { @class NSBundle; @class NSCoder; - /// UINavigationController subclass intended primarily to facilitate scoping UIAppearance rules to Apptentive UI. SWIFT_CLASS("_TtC13ApptentiveKit30ApptentiveNavigationController") @interface ApptentiveNavigationController : UINavigationController @@ -603,21 +580,8 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class) BOOL prefersLargeHeader;) - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; @end -typedef SWIFT_ENUM(NSInteger, ApptentivePushProvider, open) { -/// Specifies the Apptentive push provider. - ApptentivePushProviderApptentive = 0, -/// Specifies the Urban Airship push provider. - ApptentivePushProviderUrbanAirship = 1, -/// Specifies the Amazon Simple Notification Service push provider. - ApptentivePushProviderAmazonSNS = 2, -/// Specifies the Parse push provider. - ApptentivePushProviderParse = 3, -}; - - @class UIFont; @class UIColor; - /// The buttons used in TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions. SWIFT_CLASS("_TtC13ApptentiveKit12DialogButton") @interface DialogButton : UIButton @@ -637,7 +601,6 @@ SWIFT_CLASS("_TtC13ApptentiveKit12DialogButton") - (void)didMoveToWindow; @end - /// Displays the contents of the dialog used for TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions. SWIFT_CLASS("_TtC13ApptentiveKit10DialogView") @interface DialogView : UIView @@ -664,73 +627,67 @@ SWIFT_CLASS("_TtC13ApptentiveKit10DialogView") @property (nonatomic, strong) UIColor * _Nonnull separatorColor; /// The amount by which to inset the header image from view’s edges and the title label. @property (nonatomic) UIEdgeInsets imageInset; +- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; - (void)didMoveToWindow; - (void)layoutSubviews; -- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; @end @class UIResponder; - /// A class used to display TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions. SWIFT_CLASS("_TtC13ApptentiveKit20DialogViewController") @interface DialogViewController : UIViewController @property (nonatomic, readonly, strong) UIResponder * _Nullable nextResponder; -- (void)viewDidLoad; - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; +- (void)viewDidLoad; - (void)viewDidAppear:(BOOL)animated; - (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil SWIFT_UNAVAILABLE; @end - /// A button used to dismiss a TextModal (“Note”) interaction. SWIFT_CLASS("_TtC13ApptentiveKit13DismissButton") @interface DismissButton : DialogButton @end - SWIFT_CLASS("_TtC13ApptentiveKit29EnjoymentDialogViewController") @interface EnjoymentDialogViewController : DialogViewController @end - +SWIFT_CLASS("_TtC13ApptentiveKit17GlassDialogButton") SWIFT_AVAILABILITY(ios,introduced=26) +@interface GlassDialogButton : UIView +- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; +@end /// A button used to launch a subsequent interaction from a TextModal (“Note”) interaction. SWIFT_CLASS("_TtC13ApptentiveKit17InteractionButton") @interface InteractionButton : DialogButton @end - /// A button used to indicate negative sentiment in the EnjoymentDialog (“Love Dialog”) interaction. SWIFT_CLASS("_TtC13ApptentiveKit8NoButton") @interface NoButton : DialogButton @end - -SWIFT_CLASS("_TtC13ApptentiveKit18TermsAndConditions") SWIFT_DEPRECATED_MSG("This class is provided for compatibility but this feature is not implemented.") -@interface TermsAndConditions : NSObject -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - SWIFT_CLASS("_TtC13ApptentiveKit23TextModalViewController") @interface TextModalViewController : DialogViewController @end - @interface UIBarButtonItem (SWIFT_EXTENSION(ApptentiveKit)) /// The bar button item to use for closing Apptentive UI. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIBarButtonItem * _Nonnull apptentiveClose;) + (UIBarButtonItem * _Nonnull)apptentiveClose SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveClose:(UIBarButtonItem * _Nonnull)value; +/// The bar button item to use for refreshing the Apptentive Web View. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIBarButtonItem * _Nonnull appentiveRefresh;) ++ (UIBarButtonItem * _Nonnull)appentiveRefresh SWIFT_WARN_UNUSED_RESULT; ++ (void)setAppentiveRefresh:(UIBarButtonItem * _Nonnull)value; /// The bar button item to use for editing the profile in message center. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIBarButtonItem * _Nonnull apptentiveProfileEdit;) + (UIBarButtonItem * _Nonnull)apptentiveProfileEdit SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveProfileEdit:(UIBarButtonItem * _Nonnull)value; @end - @interface UIButton (SWIFT_EXTENSION(ApptentiveKit)) SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) CGFloat apptentivePillRadius;) + (CGFloat)apptentivePillRadius SWIFT_WARN_UNUSED_RESULT; @@ -739,9 +696,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class) CGFloat apptentiveCornerRadius + (void)setApptentiveCornerRadius:(CGFloat)newValue; @end - - - @interface UIColor (SWIFT_EXTENSION(ApptentiveKit)) /// The color to use for the background in text inputs for message center. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextInputBackground;) @@ -839,10 +793,22 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull app SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSurveyIntroduction;) + (UIColor * _Nonnull)apptentiveSurveyIntroduction SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveSurveyIntroduction:(UIColor * _Nonnull)value; +/// The color to use for text fields/text views that are part of a survey (but not part of an “other” choice). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSurveyTextInputBackground;) ++ (UIColor * _Nonnull)apptentiveSurveyTextInputBackground SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveSurveyTextInputBackground:(UIColor * _Nonnull)value; /// The color to use for the borders of text fields and text views. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputBorder;) + (UIColor * _Nonnull)apptentiveTextInputBorder SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveTextInputBorder:(UIColor * _Nonnull)value; +/// The border color for survey “other” choice text fields. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveOtherTextInputBorder;) ++ (UIColor * _Nonnull)apptentiveOtherTextInputBorder SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveOtherTextInputBorder:(UIColor * _Nonnull)value; +/// The background color for survey “other” choice text fields. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveOtherTextInputBackground;) ++ (UIColor * _Nonnull)apptentiveOtherTextInputBackground SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveOtherTextInputBackground:(UIColor * _Nonnull)value; /// The color to use for text fields and text views. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputBackground;) + (UIColor * _Nonnull)apptentiveTextInputBackground SWIFT_WARN_UNUSED_RESULT; @@ -914,7 +880,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull app /// The color to use for the button that deletes the attachment from the draft message. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterAttachmentDeleteButton SWIFT_DEPRECATED_MSG("This property has been renamed to 'apptentiveAttachmentRemoveButton'.");) + (UIColor * _Nonnull)apptentiveMessageCenterAttachmentDeleteButton SWIFT_WARN_UNUSED_RESULT; -+ (void)setApptentiveMessageCenterAttachmentDeleteButton:(UIColor * _Nonnull)value; ++ (void)setApptentiveMessageCenterAttachmentDeleteButton:(UIColor * _Nonnull)newValue; /// The color to use for the button that deletes the attachment from the draft message. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveAttachmentRemoveButton;) + (UIColor * _Nonnull)apptentiveAttachmentRemoveButton SWIFT_WARN_UNUSED_RESULT; @@ -935,9 +901,36 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull app SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDisclaimerLabel;) + (UIColor * _Nonnull)apptentiveDisclaimerLabel SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveDisclaimerLabel:(UIColor * _Nonnull)value; +/// The color used for the background of the Enjoyment Dialog (“Love Dialog”) and Text Modals (“Prompts”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nullable apptentiveDialogBackground;) ++ (UIColor * _Nullable)apptentiveDialogBackground SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogBackground:(UIColor * _Nullable)value; +/// The text color used for the title of the Enjoyment Dialog (“Love Dialog”) or a Text Modal (“Prompt”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDialogTitle;) ++ (UIColor * _Nonnull)apptentiveDialogTitle SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogTitle:(UIColor * _Nonnull)value; +/// The text color used for the message of a Text Modal (“Prompt”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDialogMessage;) ++ (UIColor * _Nonnull)apptentiveDialogMessage SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogMessage:(UIColor * _Nonnull)value; +/// The text color used for the button labels in the Enjoyment Dialog (“Love Dialog”) and Text Modals (“Prompts”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDialogButtonBackground;) ++ (UIColor * _Nonnull)apptentiveDialogButtonBackground SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogButtonBackground:(UIColor * _Nonnull)value; +/// The text color used for the button labels in the Enjoyment Dialog (“Love Dialog”) and Text Modals (“Prompts”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDialogButtonLabel;) ++ (UIColor * _Nonnull)apptentiveDialogButtonLabel SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogButtonLabel:(UIColor * _Nonnull)value; +/// The color for button borders. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveButtonBorder;) ++ (UIColor * _Nonnull)apptentiveButtonBorder SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveButtonBorder:(UIColor * _Nonnull)value; +/// The color of the button separator of the Enjoyment Dialog (“Love Dialog”) and Text Modals (“Prompts”) on devices running iOS 18 and earlier. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDialogSeparator;) ++ (UIColor * _Nonnull)apptentiveDialogSeparator SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogSeparator:(UIColor * _Nonnull)value; @end - @interface UIFont (SWIFT_EXTENSION(ApptentiveKit)) /// The font to use for placeholder for text inputs in message center. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterTextInputPlaceholder;) @@ -1019,10 +1012,26 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull appt SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveTextInput;) + (UIFont * _Nonnull)apptentiveTextInput SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveTextInput:(UIFont * _Nonnull)value; +/// The font used for the title of a Text Modal (“Prompt”) that also has a message. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveDialogTitle;) ++ (UIFont * _Nonnull)apptentiveDialogTitle SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogTitle:(UIFont * _Nonnull)value; +/// The font used for the Enjoyment Dialog (“Love Dialog”) title, and the text on a Text Modal (“Prompt”) +/// when either the title or message is omitted. +/// This matches the iOS 26 system alert controller’s behavior. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveDialogText;) ++ (UIFont * _Nonnull)apptentiveDialogText SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogText:(UIFont * _Nonnull)value; +/// The font used for the message of a Text Modal (“Prompt”) that also has a title. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveDialogMessage;) ++ (UIFont * _Nonnull)apptentiveDialogMessage SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogMessage:(UIFont * _Nonnull)value; +/// The font used for the button labels in the Enjoyment Dialog (“Love Dialog”) and Text Modals (“Prompts”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveDialogButton;) ++ (UIFont * _Nonnull)apptentiveDialogButton SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogButton:(UIFont * _Nonnull)value; @end - - @interface UIImage (SWIFT_EXTENSION(ApptentiveKit)) /// The image to use for the add attachment button for message center. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveMessageAttachmentButton;) @@ -1068,11 +1077,11 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable ap SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveCheckboxSelected;) + (UIImage * _Nullable)apptentiveCheckboxSelected SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveCheckboxSelected:(UIImage * _Nullable)value; +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveDialogHeader;) ++ (UIImage * _Nullable)apptentiveDialogHeader SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogHeader:(UIImage * _Nullable)value; @end - - - @interface UITableView (SWIFT_EXTENSION(ApptentiveKit)) SWIFT_CLASS_PROPERTY(@property (nonatomic, class) NSInteger apptentiveStyle;) + (NSInteger)apptentiveStyle SWIFT_WARN_UNUSED_RESULT; @@ -1080,7 +1089,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class) NSInteger apptentiveStyle;) @end enum ToolbarMode : NSInteger; - @interface UIToolbar (SWIFT_EXTENSION(ApptentiveKit)) /// Determines when to show a toolbar in Apptentive view controllers. SWIFT_CLASS_PROPERTY(@property (nonatomic, class) enum ToolbarMode apptentiveMode;) @@ -1096,15 +1104,10 @@ typedef SWIFT_ENUM(NSInteger, ToolbarMode, open) { ToolbarModeHiddenWhenEmpty = 1, }; - - @interface UIViewController (SWIFT_EXTENSION(ApptentiveKit)) @property (nonatomic) UIModalPresentationStyle apptentiveModalPresentationStyle; @end - - - /// A button used to indicate positive sentiment in the EnjoymentDialog (“Love Dialog”) interaction. SWIFT_CLASS("_TtC13ApptentiveKit9YesButton") @interface YesButton : DialogButton @@ -1120,7 +1123,7 @@ SWIFT_CLASS("_TtC13ApptentiveKit9YesButton") #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// Generated by Apple Swift version 6.2.3 (swiftlang-6.2.3.3.21 clang-1700.6.3.2) #ifndef APPTENTIVEKIT_SWIFT_H #define APPTENTIVEKIT_SWIFT_H #pragma clang diagnostic push @@ -1162,6 +1165,8 @@ SWIFT_CLASS("_TtC13ApptentiveKit9YesButton") #include #endif #if defined(__cplusplus) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module" #if defined(__arm64e__) && __has_include() # include #else @@ -1175,6 +1180,7 @@ SWIFT_CLASS("_TtC13ApptentiveKit9YesButton") # endif #pragma clang diagnostic pop #endif +#pragma clang diagnostic pop #endif #if !defined(SWIFT_TYPEDEFS) @@ -1182,6 +1188,7 @@ SWIFT_CLASS("_TtC13ApptentiveKit9YesButton") # if __has_include() # include # elif !defined(__cplusplus) +typedef unsigned char char8_t; typedef uint_least16_t char16_t; typedef uint_least32_t char32_t; # endif @@ -1413,6 +1420,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" #pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" +#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -1422,12 +1430,12 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #if defined(__OBJC__) + @protocol ApptentiveDelegate; enum UITheme : NSInteger; @class NSString; @class UIImage; @class NSData; - /// The main interface to the Apptentive SDK. SWIFT_CLASS("_TtC13ApptentiveKit10Apptentive") @interface Apptentive : NSObject @@ -1440,6 +1448,10 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) Apptentive * /// The theme to apply to Apptentive UI. /// This property must be set before calling register(credentials:). @property (nonatomic) enum UITheme theme; +/// Whether to store sensitive conversation credentials in the iOS keychain. +/// This property must be set before calling register(credentials:). +/// It defaults to false for backward compatibility. +@property (nonatomic) BOOL shouldUseSecureTokenStorage; /// The name of the person using the app, if available. @property (nonatomic, copy) NSString * _Nullable personName; /// The email address of the person using the app, if available. @@ -1483,21 +1495,27 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) Apptentive * typedef SWIFT_ENUM(NSInteger, UITheme, open) { /// Apptentive cross-platform look and feel. UIThemeApptentive = 1, + UIThemeCustomerOnly = 2, + UIThemeCustomerBasedOnApptentive = 3, /// iOS default look and feel. UIThemeNone = 0, }; +@interface Apptentive (SWIFT_EXTENSION(ApptentiveKit)) +/// Overrides the system font in Apptentive interactions using the font with the specified name. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable fontName;) ++ (NSString * _Nullable)fontName SWIFT_WARN_UNUSED_RESULT; ++ (void)setFontName:(NSString * _Nullable)value; +@end @class UNNotificationResponse; @class UNNotification; @class UNUserNotificationCenter; - @interface Apptentive (SWIFT_EXTENSION(ApptentiveKit)) /// Sets the remote notification device token to the specified value. /// \param tokenData The remote notification device token passed into application(_:didRegisterForRemoteNotificationsWithDeviceToken:). /// - (void)setRemoteNotificationDeviceToken:(NSData * _Nonnull)tokenData; -- (void)setRemoteNotifcationDeviceToken:(NSData * _Nonnull)tokenData SWIFT_DEPRECATED_MSG("Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead."); /// Should be called in response to the application delegate receiving a remote notification. /// note: /// If the return value is false, the caller is responsible for calling the fetch completion handler. @@ -1553,51 +1571,23 @@ typedef SWIFT_ENUM(NSInteger, UITheme, open) { - (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center didReceiveNotificationResponse:(UNNotificationResponse * _Nonnull)response withCompletionHandler:(void (^ _Nonnull)(void))completionHandler; @end - - @class ApptentiveConfiguration; -@class TermsAndConditions; @class UIViewController; -@class NSDate; @class NSNumber; -@class UIView; -enum ApptentivePushProvider : NSInteger; -@class NSUUID; enum ApptentiveAuthenticationFailureReason : NSInteger; enum ApptentiveLogLevel : NSUInteger; - @interface Apptentive (SWIFT_EXTENSION(ApptentiveKit)) -+ (void)registerWithConfiguration:(ApptentiveConfiguration * _Nonnull)configuration SWIFT_DEPRECATED_MSG("Use the 'register(with:completion:)' method on the 'shared' instance instead."); - (void)registerWithConfiguration:(ApptentiveConfiguration * _Nonnull)configuration completion:(void (^ _Nullable)(BOOL))completion; -+ (Apptentive * _Nonnull)sharedConnection SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Use the 'shared' static property instead."); -@property (nonatomic, copy) NSString * _Nullable appID SWIFT_DEPRECATED_MSG("This property is ignored. SKStoreReviewController will be used for all ratings."); -@property (nonatomic) BOOL showInfoButton SWIFT_DEPRECATED_MSG("This property is ignored. The info button no longer exists."); -@property (nonatomic, strong) TermsAndConditions * _Nullable surveyTermsAndConditions SWIFT_DEPRECATED_MSG("This feature is not implemented."); -@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveKey SWIFT_DEPRECATED_MSG("This property is not available for reading."); -@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveSignature SWIFT_DEPRECATED_MSG("This property is not available for reading."); - (void)engage:(NSString * _Nonnull)event fromViewController:(UIViewController * _Nullable)viewController; - (void)engage:(NSString * _Nonnull)event fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion; - (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData fromViewController:(UIViewController * _Nullable)viewController; - (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion; -- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData withExtendedData:(NSArray * _Nullable)extendedData fromViewController:(UIViewController * _Nullable)viewController SWIFT_DEPRECATED_MSG("Event extended data are no longer supported. Event will be engaged without extended data."); -- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData withExtendedData:(NSArray * _Nullable)extendedData fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion SWIFT_DEPRECATED_MSG("Event extended data are no longer supported. Event will be engaged without extended data."); - (void)queryCanShowInteractionForEvent:(NSString * _Nonnull)event completion:(void (^ _Nonnull)(BOOL))completion; -+ (NSDictionary * _Nonnull)extendedDataDate:(NSDate * _Nonnull)date SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported."); -+ (NSDictionary * _Nonnull)extendedDataLocationForLatitude:(double)latitude longitude:(double)longitude SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported."); -+ (NSDictionary * _Nonnull)extendedDataCommerceWithTransactionID:(NSString * _Nullable)transactionID affiliation:(NSString * _Nullable)affiliation revenue:(NSNumber * _Nullable)revenue shipping:(NSNumber * _Nullable)shipping tax:(NSNumber * _Nullable)tax currency:(NSString * _Nullable)currency commerceItems:(NSArray * _Nullable)commerceItems SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported."); -+ (NSDictionary * _Nonnull)extendedDataCommerceItemWithItemID:(NSString * _Nullable)itemID name:(NSString * _Nullable)name category:(NSString * _Nullable)category price:(NSNumber * _Nullable)price quantity:(NSNumber * _Nullable)quantity currency:(NSString * _Nullable)currency SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported."); - (void)queryCanShowMessageCenterWithCompletion:(void (^ _Nonnull)(BOOL))completion; - (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController; - (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion; - (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController withCustomData:(NSDictionary * _Nullable)customData; - (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController withCustomData:(NSDictionary * _Nullable)customData completion:(void (^ _Nullable)(BOOL))completion; -- (void)dismissMessageCenterWithAnimated:(BOOL)animated completion:(void (^ _Nullable)(void))completion SWIFT_DEPRECATED_MSG("This feature is not implemented and this method will always result in false."); -- (UIView * _Nonnull)unreadMessageCountAccessoryViewWithApptentiveHeart:(BOOL)apptentiveHeart SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("This feature is not implemented and this property will return an empty view."); -- (void)openAppStore SWIFT_DEPRECATED_MSG("This method is no longer implemented and will trigger an assertion failure."); -- (void)setPushProvider:(enum ApptentivePushProvider)pushProvider deviceToken:(NSData * _Nonnull)deviceToken SWIFT_DEPRECATED_MSG("Use the 'setRemoteNotificationToken()' method instead."); -- (BOOL)didReceveUserNotificationResponse:(UNNotificationResponse * _Nonnull)response from:(UIViewController * _Nullable)_ withCompletionHandler:(void (^ _Nonnull)(void))completionHandler SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:)."); -@property (nonatomic, copy) NSUUID * _Nullable advertisingIdentifier SWIFT_DEPRECATED_MSG("Advertising identifier collection is not implemented."); -@property (nonatomic, copy) NSString * _Nullable mParticleId SWIFT_DEPRECATED_MSG("mParticleId has been renamed to mParticleID."); - (void)removeCustomPersonDataWithKey:(NSString * _Nonnull)key; - (void)removeCustomDeviceDataWithKey:(NSString * _Nonnull)key; - (void)addCustomDeviceDataString:(NSString * _Nonnull)string withKey:(NSString * _Nonnull)key; @@ -1606,12 +1596,9 @@ enum ApptentiveLogLevel : NSUInteger; - (void)addCustomPersonDataString:(NSString * _Nonnull)string withKey:(NSString * _Nonnull)key; - (void)addCustomPersonDataNumber:(NSNumber * _Nonnull)number withKey:(NSString * _Nonnull)key; - (void)addCustomPersonDataBool:(BOOL)boolValue withKey:(NSString * _Nonnull)key; -@property (nonatomic) id _Nullable styleSheet SWIFT_DEPRECATED_MSG("Set style overrides defined in UIKit+Apptentive.swift extensions."); -- (void)checkSDKConfiguration SWIFT_DEPRECATED_MSG("This method is not currently implemented and will trigger an assertion failure."); - (void)logInWithToken:(NSString * _Nonnull)token completion:(void (^ _Nonnull)(BOOL, NSError * _Nullable))completion; - (void)logOut; @property (nonatomic, copy) void (^ _Nullable authenticationFailureCallback)(enum ApptentiveAuthenticationFailureReason, NSString * _Nullable); -@property (nonatomic, copy) BOOL (^ _Nullable preInteractionCallback)(NSString * _Nonnull, NSDictionary * _Nullable) SWIFT_DEPRECATED_MSG("This feature is no longer supported."); - (void)updateToken:(NSString * _Nonnull)token completion:(void (^ _Nullable)(BOOL))completion; @property (nonatomic) enum ApptentiveLogLevel logLevel; @end @@ -1644,7 +1631,6 @@ typedef SWIFT_ENUM(NSInteger, ApptentiveAuthenticationFailureReason, open) { }; @class NSURL; - SWIFT_CLASS("_TtC13ApptentiveKit23ApptentiveConfiguration") @interface ApptentiveConfiguration : NSObject /// The Apptentive App Key, obtained from your Apptentive dashboard. @@ -1652,21 +1638,17 @@ SWIFT_CLASS("_TtC13ApptentiveKit23ApptentiveConfiguration") /// The Apptentive App Signature, obtained from your Apptentive dashboard. @property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveSignature; /// The granularity of log messages to show. -@property (nonatomic) enum ApptentiveLogLevel logLevel; +@property (nonatomic) enum ApptentiveLogLevel logLevel SWIFT_DEPRECATED_MSG("Logging now uses iOS's Unified Logging features so logs are no longer filtered by the SDK."); /// If set, redacts potentially-sensitive information such as user data and credentials from logging. -@property (nonatomic) BOOL shouldSanitizeLogMessages; +@property (nonatomic) BOOL shouldSanitizeLogMessages SWIFT_DEPRECATED_MSG("Logging now uses iOS's Unified Logging features so redaction of sensitive information is handled automatically."); /// The server URL to use for API calls. Should only be used for testing. -@property (nonatomic, copy) NSURL * _Nullable baseURL SWIFT_DEPRECATED_MSG("This property is ignored. Use the designated initializer for 'Apptentive' to set this."); +@property (nonatomic, copy) NSURL * _Nullable overrideBaseURL; +/// The region to use when resolving the API server base URL. +@property (nonatomic, copy) NSString * _Nullable region; /// The name of the distribution that includes the Apptentive SDK. For example “Cordova”. @property (nonatomic, copy) NSString * _Nullable distributionName; /// The version of the distribution that includes the Apptentive SDK. @property (nonatomic, copy) NSString * _Nullable distributionVersion; -/// The iTunes store app ID of the app (used for Apptentive rating prompt). -@property (nonatomic, copy) NSString * _Nullable appID SWIFT_DEPRECATED_MSG("This property is ignored. An 'SKStoreReviewController' will be used for all ratings."); -/// If set, shows a button in Surveys and Message Center that presents information about Apptentive including a link to our privacy policy. -@property (nonatomic) BOOL showInfoButton SWIFT_DEPRECATED_MSG("This property is ignored. The info button no longer exists."); -/// If set, will show a link to terms and conditions in the bottom bar in Surveys. -@property (nonatomic, strong) TermsAndConditions * _Nullable surveyTermsAndConditions SWIFT_DEPRECATED_MSG("This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard."); - (nullable instancetype)initWithApptentiveKey:(NSString * _Nonnull)apptentiveKey apptentiveSignature:(NSString * _Nonnull)apptentiveSignature OBJC_DESIGNATED_INITIALIZER; /// Returns an instance of the ApptentiveConfiguration class initialized with the specified parameters. /// \param key The Apptentive App Key, obtained from your Apptentive dashboard. @@ -1681,7 +1663,6 @@ SWIFT_CLASS("_TtC13ApptentiveKit23ApptentiveConfiguration") + (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); @end - /// Describes an object that responds to authentication failures for logged-in conversations. SWIFT_PROTOCOL("_TtP13ApptentiveKit18ApptentiveDelegate_") @protocol ApptentiveDelegate @@ -1708,7 +1689,6 @@ typedef SWIFT_ENUM(NSUInteger, ApptentiveLogLevel, open) { @class NSBundle; @class NSCoder; - /// UINavigationController subclass intended primarily to facilitate scoping UIAppearance rules to Apptentive UI. SWIFT_CLASS("_TtC13ApptentiveKit30ApptentiveNavigationController") @interface ApptentiveNavigationController : UINavigationController @@ -1723,21 +1703,8 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class) BOOL prefersLargeHeader;) - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; @end -typedef SWIFT_ENUM(NSInteger, ApptentivePushProvider, open) { -/// Specifies the Apptentive push provider. - ApptentivePushProviderApptentive = 0, -/// Specifies the Urban Airship push provider. - ApptentivePushProviderUrbanAirship = 1, -/// Specifies the Amazon Simple Notification Service push provider. - ApptentivePushProviderAmazonSNS = 2, -/// Specifies the Parse push provider. - ApptentivePushProviderParse = 3, -}; - - @class UIFont; @class UIColor; - /// The buttons used in TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions. SWIFT_CLASS("_TtC13ApptentiveKit12DialogButton") @interface DialogButton : UIButton @@ -1757,7 +1724,6 @@ SWIFT_CLASS("_TtC13ApptentiveKit12DialogButton") - (void)didMoveToWindow; @end - /// Displays the contents of the dialog used for TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions. SWIFT_CLASS("_TtC13ApptentiveKit10DialogView") @interface DialogView : UIView @@ -1784,73 +1750,67 @@ SWIFT_CLASS("_TtC13ApptentiveKit10DialogView") @property (nonatomic, strong) UIColor * _Nonnull separatorColor; /// The amount by which to inset the header image from view’s edges and the title label. @property (nonatomic) UIEdgeInsets imageInset; +- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; - (void)didMoveToWindow; - (void)layoutSubviews; -- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; @end @class UIResponder; - /// A class used to display TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions. SWIFT_CLASS("_TtC13ApptentiveKit20DialogViewController") @interface DialogViewController : UIViewController @property (nonatomic, readonly, strong) UIResponder * _Nullable nextResponder; -- (void)viewDidLoad; - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; +- (void)viewDidLoad; - (void)viewDidAppear:(BOOL)animated; - (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil SWIFT_UNAVAILABLE; @end - /// A button used to dismiss a TextModal (“Note”) interaction. SWIFT_CLASS("_TtC13ApptentiveKit13DismissButton") @interface DismissButton : DialogButton @end - SWIFT_CLASS("_TtC13ApptentiveKit29EnjoymentDialogViewController") @interface EnjoymentDialogViewController : DialogViewController @end - +SWIFT_CLASS("_TtC13ApptentiveKit17GlassDialogButton") SWIFT_AVAILABILITY(ios,introduced=26) +@interface GlassDialogButton : UIView +- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE; +@end /// A button used to launch a subsequent interaction from a TextModal (“Note”) interaction. SWIFT_CLASS("_TtC13ApptentiveKit17InteractionButton") @interface InteractionButton : DialogButton @end - /// A button used to indicate negative sentiment in the EnjoymentDialog (“Love Dialog”) interaction. SWIFT_CLASS("_TtC13ApptentiveKit8NoButton") @interface NoButton : DialogButton @end - -SWIFT_CLASS("_TtC13ApptentiveKit18TermsAndConditions") SWIFT_DEPRECATED_MSG("This class is provided for compatibility but this feature is not implemented.") -@interface TermsAndConditions : NSObject -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - SWIFT_CLASS("_TtC13ApptentiveKit23TextModalViewController") @interface TextModalViewController : DialogViewController @end - @interface UIBarButtonItem (SWIFT_EXTENSION(ApptentiveKit)) /// The bar button item to use for closing Apptentive UI. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIBarButtonItem * _Nonnull apptentiveClose;) + (UIBarButtonItem * _Nonnull)apptentiveClose SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveClose:(UIBarButtonItem * _Nonnull)value; +/// The bar button item to use for refreshing the Apptentive Web View. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIBarButtonItem * _Nonnull appentiveRefresh;) ++ (UIBarButtonItem * _Nonnull)appentiveRefresh SWIFT_WARN_UNUSED_RESULT; ++ (void)setAppentiveRefresh:(UIBarButtonItem * _Nonnull)value; /// The bar button item to use for editing the profile in message center. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIBarButtonItem * _Nonnull apptentiveProfileEdit;) + (UIBarButtonItem * _Nonnull)apptentiveProfileEdit SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveProfileEdit:(UIBarButtonItem * _Nonnull)value; @end - @interface UIButton (SWIFT_EXTENSION(ApptentiveKit)) SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) CGFloat apptentivePillRadius;) + (CGFloat)apptentivePillRadius SWIFT_WARN_UNUSED_RESULT; @@ -1859,9 +1819,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class) CGFloat apptentiveCornerRadius + (void)setApptentiveCornerRadius:(CGFloat)newValue; @end - - - @interface UIColor (SWIFT_EXTENSION(ApptentiveKit)) /// The color to use for the background in text inputs for message center. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextInputBackground;) @@ -1959,10 +1916,22 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull app SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSurveyIntroduction;) + (UIColor * _Nonnull)apptentiveSurveyIntroduction SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveSurveyIntroduction:(UIColor * _Nonnull)value; +/// The color to use for text fields/text views that are part of a survey (but not part of an “other” choice). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSurveyTextInputBackground;) ++ (UIColor * _Nonnull)apptentiveSurveyTextInputBackground SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveSurveyTextInputBackground:(UIColor * _Nonnull)value; /// The color to use for the borders of text fields and text views. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputBorder;) + (UIColor * _Nonnull)apptentiveTextInputBorder SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveTextInputBorder:(UIColor * _Nonnull)value; +/// The border color for survey “other” choice text fields. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveOtherTextInputBorder;) ++ (UIColor * _Nonnull)apptentiveOtherTextInputBorder SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveOtherTextInputBorder:(UIColor * _Nonnull)value; +/// The background color for survey “other” choice text fields. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveOtherTextInputBackground;) ++ (UIColor * _Nonnull)apptentiveOtherTextInputBackground SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveOtherTextInputBackground:(UIColor * _Nonnull)value; /// The color to use for text fields and text views. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputBackground;) + (UIColor * _Nonnull)apptentiveTextInputBackground SWIFT_WARN_UNUSED_RESULT; @@ -2034,7 +2003,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull app /// The color to use for the button that deletes the attachment from the draft message. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterAttachmentDeleteButton SWIFT_DEPRECATED_MSG("This property has been renamed to 'apptentiveAttachmentRemoveButton'.");) + (UIColor * _Nonnull)apptentiveMessageCenterAttachmentDeleteButton SWIFT_WARN_UNUSED_RESULT; -+ (void)setApptentiveMessageCenterAttachmentDeleteButton:(UIColor * _Nonnull)value; ++ (void)setApptentiveMessageCenterAttachmentDeleteButton:(UIColor * _Nonnull)newValue; /// The color to use for the button that deletes the attachment from the draft message. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveAttachmentRemoveButton;) + (UIColor * _Nonnull)apptentiveAttachmentRemoveButton SWIFT_WARN_UNUSED_RESULT; @@ -2055,9 +2024,36 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull app SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDisclaimerLabel;) + (UIColor * _Nonnull)apptentiveDisclaimerLabel SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveDisclaimerLabel:(UIColor * _Nonnull)value; +/// The color used for the background of the Enjoyment Dialog (“Love Dialog”) and Text Modals (“Prompts”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nullable apptentiveDialogBackground;) ++ (UIColor * _Nullable)apptentiveDialogBackground SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogBackground:(UIColor * _Nullable)value; +/// The text color used for the title of the Enjoyment Dialog (“Love Dialog”) or a Text Modal (“Prompt”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDialogTitle;) ++ (UIColor * _Nonnull)apptentiveDialogTitle SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogTitle:(UIColor * _Nonnull)value; +/// The text color used for the message of a Text Modal (“Prompt”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDialogMessage;) ++ (UIColor * _Nonnull)apptentiveDialogMessage SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogMessage:(UIColor * _Nonnull)value; +/// The text color used for the button labels in the Enjoyment Dialog (“Love Dialog”) and Text Modals (“Prompts”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDialogButtonBackground;) ++ (UIColor * _Nonnull)apptentiveDialogButtonBackground SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogButtonBackground:(UIColor * _Nonnull)value; +/// The text color used for the button labels in the Enjoyment Dialog (“Love Dialog”) and Text Modals (“Prompts”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDialogButtonLabel;) ++ (UIColor * _Nonnull)apptentiveDialogButtonLabel SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogButtonLabel:(UIColor * _Nonnull)value; +/// The color for button borders. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveButtonBorder;) ++ (UIColor * _Nonnull)apptentiveButtonBorder SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveButtonBorder:(UIColor * _Nonnull)value; +/// The color of the button separator of the Enjoyment Dialog (“Love Dialog”) and Text Modals (“Prompts”) on devices running iOS 18 and earlier. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDialogSeparator;) ++ (UIColor * _Nonnull)apptentiveDialogSeparator SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogSeparator:(UIColor * _Nonnull)value; @end - @interface UIFont (SWIFT_EXTENSION(ApptentiveKit)) /// The font to use for placeholder for text inputs in message center. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterTextInputPlaceholder;) @@ -2139,10 +2135,26 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull appt SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveTextInput;) + (UIFont * _Nonnull)apptentiveTextInput SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveTextInput:(UIFont * _Nonnull)value; +/// The font used for the title of a Text Modal (“Prompt”) that also has a message. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveDialogTitle;) ++ (UIFont * _Nonnull)apptentiveDialogTitle SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogTitle:(UIFont * _Nonnull)value; +/// The font used for the Enjoyment Dialog (“Love Dialog”) title, and the text on a Text Modal (“Prompt”) +/// when either the title or message is omitted. +/// This matches the iOS 26 system alert controller’s behavior. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveDialogText;) ++ (UIFont * _Nonnull)apptentiveDialogText SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogText:(UIFont * _Nonnull)value; +/// The font used for the message of a Text Modal (“Prompt”) that also has a title. +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveDialogMessage;) ++ (UIFont * _Nonnull)apptentiveDialogMessage SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogMessage:(UIFont * _Nonnull)value; +/// The font used for the button labels in the Enjoyment Dialog (“Love Dialog”) and Text Modals (“Prompts”). +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveDialogButton;) ++ (UIFont * _Nonnull)apptentiveDialogButton SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogButton:(UIFont * _Nonnull)value; @end - - @interface UIImage (SWIFT_EXTENSION(ApptentiveKit)) /// The image to use for the add attachment button for message center. SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveMessageAttachmentButton;) @@ -2188,11 +2200,11 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable ap SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveCheckboxSelected;) + (UIImage * _Nullable)apptentiveCheckboxSelected SWIFT_WARN_UNUSED_RESULT; + (void)setApptentiveCheckboxSelected:(UIImage * _Nullable)value; +SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveDialogHeader;) ++ (UIImage * _Nullable)apptentiveDialogHeader SWIFT_WARN_UNUSED_RESULT; ++ (void)setApptentiveDialogHeader:(UIImage * _Nullable)value; @end - - - @interface UITableView (SWIFT_EXTENSION(ApptentiveKit)) SWIFT_CLASS_PROPERTY(@property (nonatomic, class) NSInteger apptentiveStyle;) + (NSInteger)apptentiveStyle SWIFT_WARN_UNUSED_RESULT; @@ -2200,7 +2212,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class) NSInteger apptentiveStyle;) @end enum ToolbarMode : NSInteger; - @interface UIToolbar (SWIFT_EXTENSION(ApptentiveKit)) /// Determines when to show a toolbar in Apptentive view controllers. SWIFT_CLASS_PROPERTY(@property (nonatomic, class) enum ToolbarMode apptentiveMode;) @@ -2216,15 +2227,10 @@ typedef SWIFT_ENUM(NSInteger, ToolbarMode, open) { ToolbarModeHiddenWhenEmpty = 1, }; - - @interface UIViewController (SWIFT_EXTENSION(ApptentiveKit)) @property (nonatomic) UIModalPresentationStyle apptentiveModalPresentationStyle; @end - - - /// A button used to indicate positive sentiment in the EnjoymentDialog (“Love Dialog”) interaction. SWIFT_CLASS("_TtC13ApptentiveKit9YesButton") @interface YesButton : DialogButton diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Info.plist b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Info.plist index 7d73e0b..538fb5c 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Info.plist and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Info.plist differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.abi.json b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.abi.json index 0ccaadb..115afc1 100644 --- a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.abi.json +++ b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -1,8 +1,8 @@ { "ABIRoot": { "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", + "name": "ApptentiveKit", + "printedName": "ApptentiveKit", "children": [ { "kind": "Import", @@ -51,6 +51,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "UIKit", @@ -83,7 +90,10 @@ "name": "WebKit", "printedName": "WebKit", "declKind": "Import", - "moduleName": "ApptentiveKit" + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Preconcurrency" + ] }, { "kind": "Import", @@ -149,6 +159,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override", "AccessControl", @@ -209,6 +220,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override", "AccessControl", @@ -242,6 +254,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override", "AccessControl" @@ -353,6 +366,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override" ], @@ -364,6 +378,7 @@ "mangledName": "$s13ApptentiveKit20DialogViewControllerC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Preconcurrency", "Custom", "AccessControl", "RawDocComment", @@ -384,6 +399,20 @@ "usr": "s:13ApptentiveKit23DialogViewModelDelegateP", "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP" }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -440,6 +469,13 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, { "kind": "Conformance", "name": "UITraitChangeObservable", @@ -458,6 +494,7 @@ "mangledName": "$s13ApptentiveKit29EnjoymentDialogViewControllerC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Preconcurrency", "Custom", "AccessControl", "ObjC" @@ -479,6 +516,20 @@ "usr": "s:13ApptentiveKit23DialogViewModelDelegateP", "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP" }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -535,6 +586,13 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, { "kind": "Conformance", "name": "UITraitChangeObservable", @@ -553,6 +611,7 @@ "mangledName": "$s13ApptentiveKit23TextModalViewControllerC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Preconcurrency", "Custom", "AccessControl", "ObjC" @@ -574,6 +633,20 @@ "usr": "s:13ApptentiveKit23DialogViewModelDelegateP", "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP" }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -630,6 +703,13 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, { "kind": "Conformance", "name": "UITraitChangeObservable", @@ -679,6 +759,16 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -726,6 +816,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -763,6 +860,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -775,8 +879,8 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ @@ -785,8 +889,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "OSLog", + "printedName": "OSLog", "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ @@ -800,441 +904,6 @@ "declKind": "Import", "moduleName": "ApptentiveKit" }, - { - "kind": "TypeDecl", - "name": "HTMLTextAlignment", - "printedName": "HTMLTextAlignment", - "children": [ - { - "kind": "Var", - "name": "center", - "printedName": "center", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.HTMLTextAlignment.Type) -> ApptentiveKit.HTMLTextAlignment", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.HTMLTextAlignment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO6centeryA2CmF", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO6centeryA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "left", - "printedName": "left", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.HTMLTextAlignment.Type) -> ApptentiveKit.HTMLTextAlignment", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.HTMLTextAlignment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO4leftyA2CmF", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO4leftyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "right", - "printedName": "right", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.HTMLTextAlignment.Type) -> ApptentiveKit.HTMLTextAlignment", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.HTMLTextAlignment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO5rightyA2CmF", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO5rightyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.HTMLTextAlignment?", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO8rawValueACSgSS_tcfc", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO8rawValueACSgSS_tcfc", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit17HTMLTextAlignmentO8rawValueSSvp", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO8rawValueSSvp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO8rawValueSSvg", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO8rawValueSSvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "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": "TypeDecl", - "name": "SystemFontNames", - "printedName": "SystemFontNames", - "children": [ - { - "kind": "Var", - "name": "html", - "printedName": "html", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.SystemFontNames.Type) -> ApptentiveKit.SystemFontNames", - "children": [ - { - "kind": "TypeNominal", - "name": "SystemFontNames", - "printedName": "ApptentiveKit.SystemFontNames", - "usr": "s:13ApptentiveKit15SystemFontNamesO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.SystemFontNames.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "SystemFontNames", - "printedName": "ApptentiveKit.SystemFontNames", - "usr": "s:13ApptentiveKit15SystemFontNamesO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit15SystemFontNamesO4htmlyA2CmF", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO4htmlyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "os", - "printedName": "os", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.SystemFontNames.Type) -> ApptentiveKit.SystemFontNames", - "children": [ - { - "kind": "TypeNominal", - "name": "SystemFontNames", - "printedName": "ApptentiveKit.SystemFontNames", - "usr": "s:13ApptentiveKit15SystemFontNamesO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.SystemFontNames.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "SystemFontNames", - "printedName": "ApptentiveKit.SystemFontNames", - "usr": "s:13ApptentiveKit15SystemFontNamesO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit15SystemFontNamesO2osyA2CmF", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO2osyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.SystemFontNames?", - "children": [ - { - "kind": "TypeNominal", - "name": "SystemFontNames", - "printedName": "ApptentiveKit.SystemFontNames", - "usr": "s:13ApptentiveKit15SystemFontNamesO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit15SystemFontNamesO8rawValueACSgSS_tcfc", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO8rawValueACSgSS_tcfc", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit15SystemFontNamesO8rawValueSSvp", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO8rawValueSSvp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SystemFontNamesO8rawValueSSvg", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO8rawValueSSvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit15SystemFontNamesO", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "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": "Import", "name": "UIKit", @@ -1302,6 +971,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "QuickLook", @@ -1359,14 +1035,31 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", "printedName": "UIKit", "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ - "RawDocComment" + "Preconcurrency" ] }, { @@ -1389,6 +1082,23 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "Foundation", @@ -1426,34 +1136,120 @@ "declKind": "Import", "moduleName": "ApptentiveKit" }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "TypeDecl", + "name": "ApptentiveDelegate", + "printedName": "ApptentiveDelegate", + "children": [ + { + "kind": "Function", + "name": "authenticationDidFail", + "printedName": "authenticationDidFail(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate(im)authenticationDidFailWith:", + "mangledName": "$s13ApptentiveKit0A8DelegateP21authenticationDidFail4withys5Error_p_tF", + "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate", + "mangledName": "$s13ApptentiveKit0A8DelegateP", + "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + } + ] + }, { "kind": "TypeDecl", - "name": "ApptentiveLogger", - "printedName": "ApptentiveLogger", + "name": "Apptentive", + "printedName": "Apptentive", "children": [ { "kind": "Var", - "name": "shouldHideSensitiveLogs", - "printedName": "shouldHideSensitiveLogs", + "name": "shared", + "printedName": "shared", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Apptentive", + "printedName": "ApptentiveKit.Apptentive", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cpy)shared", + "mangledName": "$s13ApptentiveKit0A0C6sharedACvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", + "Custom", "AccessControl", + "ObjC", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -1463,87 +1259,51 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Apptentive", + "printedName": "ApptentiveKit.Apptentive", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cm)shared", + "mangledName": "$s13ApptentiveKit0A0C6sharedACvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final", + "ObjC" ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvMZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "logLevel", - "printedName": "logLevel", + "name": "delegate", + "printedName": "delegate", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "WeakStorage", + "printedName": "(any ApptentiveKit.ApptentiveDelegate)?" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovp", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovp", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)delegate", + "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Final", + "Custom", "HasStorage", + "ReferenceOwnership", "AccessControl", + "ObjC", "RawDocComment" ], + "ownership": 1, "hasStorage": true, "accessors": [ { @@ -1553,16 +1313,28 @@ "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Optional", + "printedName": "(any ApptentiveKit.ApptentiveDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveDelegate", + "printedName": "any ApptentiveKit.ApptentiveDelegate", + "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovg", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovg", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)delegate", + "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvg", "moduleName": "ApptentiveKit", "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -1577,16 +1349,28 @@ }, { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Optional", + "printedName": "(any ApptentiveKit.ApptentiveDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveDelegate", + "printedName": "any ApptentiveKit.ApptentiveDelegate", + "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovs", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovs", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDelegate:", + "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvs", "moduleName": "ApptentiveKit", "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -1601,38 +1385,40 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvM", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvM", + "usr": "s:13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvM", + "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvM", "moduleName": "ApptentiveKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "default", - "printedName": "default", + "name": "interactionPresenter", + "printedName": "interactionPresenter", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "InteractionPresenter", + "printedName": "ApptentiveKit.InteractionPresenter", + "usr": "s:13ApptentiveKit20InteractionPresenterC" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvpZ", + "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp", + "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", + "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, "hasStorage": true, "accessors": [ { @@ -1642,18 +1428,19 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "InteractionPresenter", + "printedName": "ApptentiveKit.InteractionPresenter", + "usr": "s:13ApptentiveKit20InteractionPresenterC" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvgZ", + "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg", + "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -1668,18 +1455,19 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "InteractionPresenter", + "printedName": "ApptentiveKit.InteractionPresenter", + "usr": "s:13ApptentiveKit20InteractionPresenterC" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvsZ", + "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs", + "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -1694,40 +1482,42 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvMZ", + "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM", + "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "engagement", - "printedName": "engagement", + "name": "theme", + "printedName": "theme", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)theme", + "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ "HasInitialValue", + "Final", + "Custom", "HasStorage", "AccessControl", + "ObjC", "RawDocComment" ], - "isFromExtension": true, "hasStorage": true, "accessors": [ { @@ -1737,18 +1527,20 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)theme", + "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -1763,18 +1555,20 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setTheme:", + "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -1789,40 +1583,42 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvMZ", + "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvM", + "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "interaction", - "printedName": "interaction", + "name": "shouldUseSecureTokenStorage", + "printedName": "shouldUseSecureTokenStorage", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)shouldUseSecureTokenStorage", + "mangledName": "$s13ApptentiveKit0A0C27shouldUseSecureTokenStorageSbvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ "HasInitialValue", + "Final", + "Custom", "HasStorage", "AccessControl", + "ObjC", "RawDocComment" ], - "isFromExtension": true, "hasStorage": true, "accessors": [ { @@ -1832,18 +1628,20 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)shouldUseSecureTokenStorage", + "mangledName": "$s13ApptentiveKit0A0C27shouldUseSecureTokenStorageSbvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -1858,18 +1656,20 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setShouldUseSecureTokenStorage:", + "mangledName": "$s13ApptentiveKit0A0C27shouldUseSecureTokenStorageSbvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -1884,41 +1684,49 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvMZ", + "usr": "s:13ApptentiveKit0A0C27shouldUseSecureTokenStorageSbvM", + "mangledName": "$s13ApptentiveKit0A0C27shouldUseSecureTokenStorageSbvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "network", - "printedName": "network", + "name": "personName", + "printedName": "personName", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV7networkACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)personName", + "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", + "Custom", "AccessControl", + "Custom", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -1927,18 +1735,28 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7networkACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personName", + "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -1953,18 +1771,28 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7networkACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setPersonName:", + "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -1979,41 +1807,49 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7networkACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvMZ", + "usr": "s:13ApptentiveKit0A0C10personNameSSSgvM", + "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "payload", - "printedName": "payload", + "name": "personEmailAddress", + "printedName": "personEmailAddress", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)personEmailAddress", + "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", + "Custom", "AccessControl", + "Custom", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2022,18 +1858,28 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personEmailAddress", + "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -2048,18 +1894,28 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setPersonEmailAddress:", + "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -2074,41 +1930,49 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvMZ", + "usr": "s:13ApptentiveKit0A0C18personEmailAddressSSSgvM", + "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "targeting", - "printedName": "targeting", + "name": "mParticleID", + "printedName": "mParticleID", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)mParticleID", + "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", + "Custom", "AccessControl", + "Custom", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2117,18 +1981,28 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)mParticleID", + "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -2143,18 +2017,28 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setMParticleID:", + "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -2169,41 +2053,40 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvMZ", + "usr": "s:13ApptentiveKit0A0C11mParticleIDSSSgvM", + "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "messages", - "printedName": "messages", + "name": "personCustomData", + "printedName": "personCustomData", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvpZ", + "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp", + "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", + "Custom", "AccessControl", + "Custom", "RawDocComment" ], - "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2212,18 +2095,19 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvgZ", + "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg", + "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -2238,18 +2122,19 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvsZ", + "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs", + "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -2264,41 +2149,40 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvMZ", + "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0VvM", + "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0VvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "attachments", - "printedName": "attachments", + "name": "deviceCustomData", + "printedName": "deviceCustomData", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvpZ", + "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp", + "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", + "Custom", "AccessControl", + "Custom", "RawDocComment" ], - "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2307,18 +2191,19 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvgZ", + "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg", + "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -2333,18 +2218,19 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvsZ", + "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs", + "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -2359,40 +2245,43 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvMZ", + "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM", + "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "resources", - "printedName": "resources", + "name": "unreadMessageCount", + "printedName": "unreadMessageCount", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV9resourcesACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9resourcesACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)unreadMessageCount", + "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ + "Final", "HasInitialValue", + "Custom", "HasStorage", "AccessControl", + "Dynamic", + "ObjC", "RawDocComment" ], - "isFromExtension": true, "hasStorage": true, "accessors": [ { @@ -2402,18 +2291,21 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9resourcesACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9resourcesACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)unreadMessageCount", + "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "Dynamic", + "ObjC" + ], "accessorKind": "get" }, { @@ -2428,64 +2320,57 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9resourcesACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9resourcesACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setUnreadMessageCount:", + "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final", + "Dynamic", + "ObjC" ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9resourcesACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9resourcesACvMZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + "accessorKind": "set" } ] }, { "kind": "Var", - "name": "logLevel", - "printedName": "logLevel", + "name": "distributionName", + "printedName": "distributionName", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)distributionName", + "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ + "Final", + "Custom", "AccessControl", + "Custom", + "ObjC", "RawDocComment" ], - "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2494,17 +2379,28 @@ "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionName", + "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvg", "moduleName": "ApptentiveKit", - "static": true, - "isFromExtension": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -2519,17 +2415,28 @@ }, { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDistributionName:", + "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvs", "moduleName": "ApptentiveKit", - "static": true, - "isFromExtension": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -2544,381 +2451,330 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvMZ", + "usr": "s:13ApptentiveKit0A0C16distributionNameSSSgvM", + "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:13ApptentiveKit0A6LoggerV", - "mangledName": "$s13ApptentiveKit0A6LoggerV", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "LogLevel", - "printedName": "LogLevel", - "children": [ + }, { "kind": "Var", - "name": "debug", - "printedName": "debug", + "name": "distributionVersion", + "printedName": "distributionVersion", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO5debugyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO5debugyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "info", - "printedName": "info", - "children": [ + "declKind": "Var", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)distributionVersion", + "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "Custom", + "ObjC", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO4infoyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO4infoyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "notice", - "printedName": "notice", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionVersion", + "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO6noticeyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO6noticeyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "warning", - "printedName": "warning", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDistributionVersion:", + "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C19distributionVersionSSSgvM", + "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvM", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO7warningyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO7warningyA2CmF", - "moduleName": "ApptentiveKit" + ] }, { - "kind": "Var", - "name": "error", - "printedName": "error", + "kind": "TypeDecl", + "name": "UITheme", + "printedName": "UITheme", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "Var", + "name": "apptentive", + "printedName": "apptentive", "children": [ { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.UITheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + } + ] } ] } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO5erroryA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO5erroryA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "critical", - "printedName": "critical", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "Var", + "name": "customerOnly", + "printedName": "customerOnly", "children": [ { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO8criticalyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO8criticalyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "fault", - "printedName": "fault", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.UITheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C7UIThemeO12customerOnlyyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO12customerOnlyyA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "customerBasedOnApptentive", + "printedName": "customerBasedOnApptentive", "children": [ { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.UITheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + } + ] } ] } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO5faultyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO5faultyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Function", - "name": "<", - "printedName": "<(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C7UIThemeO015customerBasedOnA0yA2EmF", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO015customerBasedOnA0yA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 }, { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit8LogLevelO1loiySbAC_ACtFZ", - "mangledName": "$s13ApptentiveKit8LogLevelO1loiySbAC_ACtFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.LogLevel?", + "kind": "Var", + "name": "none", + "printedName": "none", "children": [ { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.UITheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C7UIThemeO4noneyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO4noneyA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit8LogLevelO8rawValueACSgSi_tcfc", - "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueACSgSi_tcfc", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit8LogLevelO8rawValueSivp", - "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueSivp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ApptentiveKit.Apptentive.UITheme?", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Int", @@ -2926,49 +2782,17 @@ "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit8LogLevelO8rawValueSivg", - "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueSivg", + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueAESgSi_tcfc", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueAESgSi_tcfc", "moduleName": "ApptentiveKit", "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit8LogLevelO", - "mangledName": "$s13ApptentiveKit8LogLevelO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "Int", - "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": [ + "init_kind": "Designated" + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", @@ -2976,387 +2800,271 @@ "printedName": "Swift.Int", "usr": "s:Si" } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueSivp", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueSivp", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueSivg", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueSivg", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessorKind": "get" + } ] } ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ApptentiveDelegate", - "printedName": "ApptentiveDelegate", - "children": [ - { - "kind": "Function", - "name": "authenticationDidFail", - "printedName": "authenticationDidFail(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate(im)authenticationDidFailWith:", - "mangledName": "$s13ApptentiveKit0A8DelegateP21authenticationDidFail4withys5Error_p_tF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate", - "mangledName": "$s13ApptentiveKit0A8DelegateP", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Apptentive", - "printedName": "Apptentive", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "Apptentive", - "printedName": "ApptentiveKit.Apptentive", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cpy)shared", - "mangledName": "$s13ApptentiveKit0A0C6sharedACvpZ", + "declKind": "Enum", + "usr": "s:13ApptentiveKit0A0C7UIThemeO", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "ObjC", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "enumRawTypeName": "Int", + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "Apptentive", - "printedName": "ApptentiveKit.Apptentive", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cm)shared", - "mangledName": "$s13ApptentiveKit0A0C6sharedACvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, { - "kind": "Var", - "name": "delegate", - "printedName": "delegate", + "kind": "TypeDecl", + "name": "AppCredentials", + "printedName": "AppCredentials", "children": [ { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "(any ApptentiveKit.ApptentiveDelegate)?" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)delegate", - "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "key", + "printedName": "key", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ApptentiveKit.ApptentiveDelegate)?", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveDelegate", - "printedName": "any ApptentiveKit.ApptentiveDelegate", - "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)delegate", - "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvg", + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3keySSvp", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvp", "moduleName": "ApptentiveKit", - "implicit": true, "declAttributes": [ - "ObjC" + "HasStorage", + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ApptentiveKit.ApptentiveDelegate)?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveDelegate", - "printedName": "any ApptentiveKit.ApptentiveDelegate", - "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3keySSvg", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDelegate:", - "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "signature", + "printedName": "signature", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvM", - "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvM", + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp", "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "interactionPresenter", - "printedName": "interactionPresenter", - "children": [ - { - "kind": "TypeNominal", - "name": "InteractionPresenter", - "printedName": "ApptentiveKit.InteractionPresenter", - "usr": "s:13ApptentiveKit20InteractionPresenterC" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp", - "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "InteractionPresenter", - "printedName": "ApptentiveKit.InteractionPresenter", - "usr": "s:13ApptentiveKit20InteractionPresenterC" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg", - "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init(key:signature:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" }, { "kind": "TypeNominal", - "name": "InteractionPresenter", - "printedName": "ApptentiveKit.InteractionPresenter", - "usr": "s:13ApptentiveKit20InteractionPresenterC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs", - "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs", + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc", "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM", - "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "theme", - "printedName": "theme", - "children": [ - { - "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)theme", - "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" + }, { "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)theme", - "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvg", + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc", "moduleName": "ApptentiveKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "throwing": true, + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", @@ -3365,163 +3073,274 @@ }, { "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setTheme:", - "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvs", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF", "moduleName": "ApptentiveKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" + }, + { + "kind": "TypeNominal", + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvM", - "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvM", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, - "accessorKind": "_modify" + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, { - "kind": "Var", - "name": "personName", - "printedName": "personName", + "kind": "TypeDecl", + "name": "Region", + "printedName": "Region", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "us", + "printedName": "us", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.Region.Type) -> ApptentiveKit.Apptentive.Region", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.Region.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)personName", - "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C6RegionO2usyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C6RegionO2usyA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "eu", + "printedName": "eu", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.Region.Type) -> ApptentiveKit.Apptentive.Region", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.Region.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personName", - "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvg", + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C6RegionO2euyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C6RegionO2euyA2EmF", "moduleName": "ApptentiveKit", "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "RawDocComment" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "au", + "printedName": "au", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.Region.Type) -> ApptentiveKit.Apptentive.Region", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.Region.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setPersonName:", - "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvs", + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C6RegionO2auyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C6RegionO2auyA2EmF", "moduleName": "ApptentiveKit", "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "RawDocComment" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ApptentiveKit.Apptentive.Region?", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C10personNameSSSgvM", - "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvM", + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C6RegionO8rawValueAESgSS_tcfc", + "mangledName": "$s13ApptentiveKit0A0C6RegionO8rawValueAESgSS_tcfc", "moduleName": "ApptentiveKit", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "personEmailAddress", - "printedName": "personEmailAddress", - "children": [ + "init_kind": "Designated" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", @@ -3530,28 +3349,16 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)personEmailAddress", - "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C6RegionO8rawValueSSvp", + "mangledName": "$s13ApptentiveKit0A0C6RegionO8rawValueSSvp", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -3560,32 +3367,63 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C6RegionO8rawValueSSvg", + "mangledName": "$s13ApptentiveKit0A0C6RegionO8rawValueSSvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personEmailAddress", - "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + ] + } + ], + "declKind": "Enum", + "usr": "s:13ApptentiveKit0A0C6RegionO", + "mangledName": "$s13ApptentiveKit0A0C6RegionO", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", @@ -3593,837 +3431,640 @@ "printedName": "Swift.String", "usr": "s:SS" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setPersonEmailAddress:", - "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:SY", + "mangledName": "$sSY" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C18personEmailAddressSSSgvM", - "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, { - "kind": "Var", - "name": "mParticleID", - "printedName": "mParticleID", + "kind": "TypeDecl", + "name": "Environment", + "printedName": "Environment", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)mParticleID", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, ApptentiveKit.Apptentive.Region) -> Swift.String", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, ApptentiveKit.Apptentive.Region)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)mParticleID", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvg", + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C11EnvironmentVyAES2S_AC6RegionOtYbccfc", + "mangledName": "$s13ApptentiveKit0A0C11EnvironmentVyAES2S_AC6RegionOtYbccfc", "moduleName": "ApptentiveKit", "declAttributes": [ - "ObjC" + "AccessControl" ], - "accessorKind": "get" + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "production", + "printedName": "production", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV10productionAEvpZ", + "mangledName": "$s13ApptentiveKit0A0C11EnvironmentV10productionAEvpZ", + "moduleName": "ApptentiveKit", + "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", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV10productionAEvgZ", + "mangledName": "$s13ApptentiveKit0A0C11EnvironmentV10productionAEvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setMParticleID:", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "custom", + "printedName": "custom(_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C11mParticleIDSSSgvM", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvM", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV6customyAE10Foundation3URLVFZ", + "mangledName": "$s13ApptentiveKit0A0C11EnvironmentV6customyAE10Foundation3URLVFZ", "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "personCustomData", - "printedName": "personCustomData", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp", - "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp", + "declKind": "Struct", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV", + "mangledName": "$s13ApptentiveKit0A0C11EnvironmentV", "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "accessors": [ + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg", - "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg", - "moduleName": "ApptentiveKit", - "accessorKind": "get" + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs", - "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs", - "moduleName": "ApptentiveKit", - "accessorKind": "set" + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0VvM", - "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0VvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, { - "kind": "Var", - "name": "deviceCustomData", - "printedName": "deviceCustomData", + "kind": "Function", + "name": "register", + "printedName": "register(with:region:environment:completion:)", "children": [ { "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp", - "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg", - "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg", - "moduleName": "ApptentiveKit", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs", - "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs", - "moduleName": "ApptentiveKit", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "hasDefaultArg": true, + "usr": "s:13ApptentiveKit0A0C6RegionO" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "hasDefaultArg": true, + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Result<(), any Swift.Error>) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<(), any Swift.Error>", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s6ResultO" + } + ] } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM", - "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C8register4with6region11environment10completionyAC14AppCredentialsV_AC6RegionOAC11EnvironmentVys6ResultOyyts5Error_pGYbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C8register4with6region11environment10completionyAC14AppCredentialsV_AC6RegionOAC11EnvironmentVys6ResultOyyts5Error_pGYbcSgtF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "unreadMessageCount", - "printedName": "unreadMessageCount", + "kind": "Function", + "name": "register", + "printedName": "register(with:region:environment:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" + }, + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "hasDefaultArg": true, + "usr": "s:13ApptentiveKit0A0C6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "hasDefaultArg": true, + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" } ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)unreadMessageCount", - "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivp", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C8register4with6region11environmentyAC14AppCredentialsV_AC6RegionOAC11EnvironmentVtYaKF", + "mangledName": "$s13ApptentiveKit0A0C8register4with6region11environmentyAC14AppCredentialsV_AC6RegionOAC11EnvironmentVtYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "Dynamic", - "ObjC", + "Nonisolated", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "engage", + "printedName": "engage(event:from:completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "ApptentiveKit.Event", + "usr": "s:13ApptentiveKit5EventV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)unreadMessageCount", - "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Result) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s6ResultO" + } + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setUnreadMessageCount:", - "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "set" + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGYbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGYbcSgtF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "distributionName", - "printedName": "distributionName", + "kind": "Function", + "name": "engage", + "printedName": "engage(event:from:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "ApptentiveKit.Event", + "usr": "s:13ApptentiveKit5EventV" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "UIKit.UIViewController?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], + "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)distributionName", - "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvp", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C6engage5event4fromSbAA5EventV_So16UIViewControllerCSgtYaKF", + "mangledName": "$s13ApptentiveKit0A0C6engage5event4fromSbAA5EventV_So16UIViewControllerCSgtYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", - "ObjC", + "Nonisolated", "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": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionName", - "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "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": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDistributionName:", - "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16distributionNameSSSgvM", - "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "distributionVersion", - "printedName": "distributionVersion", + "kind": "Function", + "name": "dismissAllInteractions", + "printedName": "dismissAllInteractions(animated:)", "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)distributionVersion", - "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvp", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF", + "mangledName": "$s13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenter", + "printedName": "presentMessageCenter(from:with:completion:)", + "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": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionVersion", - "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", "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": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDistributionVersion:", - "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ApptentiveKit.CustomData?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C19distributionVersionSSSgvM", - "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UITheme", - "printedName": "UITheme", - "children": [ + "hasDefaultArg": true, + "usr": "s:Sq" + }, { - "kind": "Var", - "name": "apptentive", - "printedName": "apptentive", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Result) -> ())?", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", + "printedName": "(Swift.Result) -> ()", "children": [ { "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Apptentive.UITheme.Type", + "name": "Result", + "printedName": "Swift.Result", "children": [ { "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 0 - }, - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", - "children": [ - { - "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Apptentive.UITheme.Type", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:s6ResultO" } ] } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A0C7UIThemeO4noneyA2EmF", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO4noneyA2EmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 1 + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGYbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGYbcSgtF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenter", + "printedName": "presentMessageCenter(from:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.Apptentive.UITheme?", - "children": [ - { - "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueAESgSi_tcfc", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueAESgSi_tcfc", - "moduleName": "ApptentiveKit", - "implicit": true, - "init_kind": "Designated" + "usr": "s:Sq" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ApptentiveKit.CustomData?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueSivp", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueSivp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueSivg", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueSivg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit0A0C7UIThemeO", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from4withSbSo16UIViewControllerCSg_AA10CustomDataVSgtYaKF", + "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from4withSbSo16UIViewControllerCSg_AA10CustomDataVSgtYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", - "ObjC", + "Nonisolated", "RawDocComment" ], - "enumRawTypeName": "Int", - "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": "Function", - "name": "register", - "printedName": "register(with:completion:)", - "children": [ + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAttachment", + "printedName": "sendAttachment(_:)", + "children": [ { "kind": "TypeNominal", "name": "Void", @@ -4431,65 +4072,29 @@ }, { "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Result<(), any Swift.Error>) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result<(), any Swift.Error>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C8register4with10completionyAC14AppCredentialsV_ys6ResultOyyts5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C8register4with10completionyAC14AppCredentialsV_ys6ResultOyyts5Error_pGcSgtF", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentText:", + "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySSF", "moduleName": "ApptentiveKit", + "objc_name": "sendAttachmentText:", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", + "ObjC", "RawDocComment" ], "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "register", - "printedName": "register(with:)", + "name": "sendAttachment", + "printedName": "sendAttachment(_:)", "children": [ { "kind": "TypeNominal", @@ -4498,271 +4103,66 @@ }, { "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C8register4withyAC14AppCredentialsV_tYaKF", - "mangledName": "$s13ApptentiveKit0A0C8register4withyAC14AppCredentialsV_tYaKF", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentImage:", + "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySo7UIImageCF", "moduleName": "ApptentiveKit", + "objc_name": "sendAttachmentImage:", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", + "ObjC", "RawDocComment" ], - "throwing": true, "funcSelfKind": "NonMutating" }, { - "kind": "TypeDecl", - "name": "AppCredentials", - "printedName": "AppCredentials", + "kind": "Function", + "name": "sendAttachment", + "printedName": "sendAttachment(_:mediaType:)", "children": [ { - "kind": "Var", - "name": "key", - "printedName": "key", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3keySSvp", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvp", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit0A0C14AppCredentialsV3keySSvg", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "signature", - "printedName": "signature", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(key:signature:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc", - "moduleName": "ApptentiveKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF", - "moduleName": "ApptentiveKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" - }, - { - "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Struct", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV", + "declKind": "Func", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentFile:withMimeType:", + "mangledName": "$s13ApptentiveKit0A0C14sendAttachment_9mediaTypey10Foundation4DataV_SStF", "moduleName": "ApptentiveKit", + "objc_name": "sendAttachmentFile:withMimeType:", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", + "ObjC", "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": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "engage", - "printedName": "engage(event:from:completion:)", + "name": "canShowInteraction", + "printedName": "canShowInteraction(event:completion:)", "children": [ { "kind": "TypeNominal", @@ -4775,21 +4175,6 @@ "printedName": "ApptentiveKit.Event", "usr": "s:13ApptentiveKit5EventV" }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, { "kind": "TypeNominal", "name": "Optional", @@ -4833,10 +4218,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGcSgtF", + "usr": "s:13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGYbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGYbcSgtF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", + "Custom", "AccessControl", "RawDocComment" ], @@ -4844,8 +4231,8 @@ }, { "kind": "Function", - "name": "engage", - "printedName": "engage(event:from:)", + "name": "canShowInteraction", + "printedName": "canShowInteraction(event:)", "children": [ { "kind": "TypeNominal", @@ -4858,29 +4245,16 @@ "name": "Event", "printedName": "ApptentiveKit.Event", "usr": "s:13ApptentiveKit5EventV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C6engage5event4fromSbAA5EventV_So16UIViewControllerCSgtYaKF", - "mangledName": "$s13ApptentiveKit0A0C6engage5event4fromSbAA5EventV_So16UIViewControllerCSgtYaKF", + "usr": "s:13ApptentiveKit0A0C18canShowInteraction5eventSbAA5EventV_tYaKF", + "mangledName": "$s13ApptentiveKit0A0C18canShowInteraction5eventSbAA5EventV_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", "RawDocComment" ], "throwing": true, @@ -4888,55 +4262,14 @@ }, { "kind": "Function", - "name": "dismissAllInteractions", - "printedName": "dismissAllInteractions(animated:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF", - "mangledName": "$s13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentMessageCenter", - "printedName": "presentMessageCenter(from:completion:)", + "name": "canShowMessageCenter", + "printedName": "canShowMessageCenter(completion:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - }, { "kind": "TypeNominal", "name": "Optional", @@ -4980,10 +4313,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from10completionySo16UIViewControllerCSg_ys6ResultOySbs5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from10completionySo16UIViewControllerCSg_ys6ResultOySbs5Error_pGcSgtF", + "usr": "s:13ApptentiveKit0A0C20canShowMessageCenter10completionyys6ResultOySbs5Error_pGYbcSg_tF", + "mangledName": "$s13ApptentiveKit0A0C20canShowMessageCenter10completionyys6ResultOySbs5Error_pGYbcSg_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", + "Custom", "AccessControl", "RawDocComment" ], @@ -4991,8 +4326,33 @@ }, { "kind": "Function", - "name": "presentMessageCenter", - "printedName": "presentMessageCenter(from:with:completion:)", + "name": "canShowMessageCenter", + "printedName": "canShowMessageCenter()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C20canShowMessageCenterSbyYaKF", + "mangledName": "$s13ApptentiveKit0A0C20canShowMessageCenterSbyYaKF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "AccessControl", + "Nonisolated", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(with:completion:)", "children": [ { "kind": "TypeNominal", @@ -5001,437 +4361,20 @@ }, { "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" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.CustomData?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", "children": [ { "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Result) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGcSgtF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentMessageCenter", - "printedName": "presentMessageCenter(from:with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.CustomData?", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from4withSbSo16UIViewControllerCSg_AA10CustomDataVSgtYaKF", - "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from4withSbSo16UIViewControllerCSg_AA10CustomDataVSgtYaKF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAttachment", - "printedName": "sendAttachment(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentText:", - "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySSF", - "moduleName": "ApptentiveKit", - "objc_name": "sendAttachmentText:", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAttachment", - "printedName": "sendAttachment(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentImage:", - "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySo7UIImageCF", - "moduleName": "ApptentiveKit", - "objc_name": "sendAttachmentImage:", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAttachment", - "printedName": "sendAttachment(_:mediaType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentFile:withMimeType:", - "mangledName": "$s13ApptentiveKit0A0C14sendAttachment_9mediaTypey10Foundation4DataV_SStF", - "moduleName": "ApptentiveKit", - "objc_name": "sendAttachmentFile:withMimeType:", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "canShowInteraction", - "printedName": "canShowInteraction(event:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Event", - "printedName": "ApptentiveKit.Event", - "usr": "s:13ApptentiveKit5EventV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Result) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGcSgtF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "canShowInteraction", - "printedName": "canShowInteraction(event:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Event", - "printedName": "ApptentiveKit.Event", - "usr": "s:13ApptentiveKit5EventV" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C18canShowInteraction5eventSbAA5EventV_tYaKF", - "mangledName": "$s13ApptentiveKit0A0C18canShowInteraction5eventSbAA5EventV_tYaKF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "canShowMessageCenter", - "printedName": "canShowMessageCenter(completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Result) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C20canShowMessageCenter10completionyys6ResultOySbs5Error_pGcSg_tF", - "mangledName": "$s13ApptentiveKit0A0C20canShowMessageCenter10completionyys6ResultOySbs5Error_pGcSg_tF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "canShowMessageCenter", - "printedName": "canShowMessageCenter()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C20canShowMessageCenterSbyYaKF", - "mangledName": "$s13ApptentiveKit0A0C20canShowMessageCenterSbyYaKF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "logIn", - "printedName": "logIn(with:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Result", @@ -5455,10 +4398,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C5logIn4with10completionySS_ys6ResultOyyts5Error_pGctF", - "mangledName": "$s13ApptentiveKit0A0C5logIn4with10completionySS_ys6ResultOyyts5Error_pGctF", + "usr": "s:13ApptentiveKit0A0C5logIn4with10completionySS_ys6ResultOyyts5Error_pGYbctF", + "mangledName": "$s13ApptentiveKit0A0C5logIn4with10completionySS_ys6ResultOyyts5Error_pGYbctF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], @@ -5486,7 +4431,9 @@ "mangledName": "$s13ApptentiveKit0A0C5logIn4withySS_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", "RawDocComment" ], "throwing": true, @@ -5543,10 +4490,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C6logOut10completionyys6ResultOyyts5Error_pGcSg_tF", - "mangledName": "$s13ApptentiveKit0A0C6logOut10completionyys6ResultOyyts5Error_pGcSg_tF", + "usr": "s:13ApptentiveKit0A0C6logOut10completionyys6ResultOyyts5Error_pGYbcSg_tF", + "mangledName": "$s13ApptentiveKit0A0C6logOut10completionyys6ResultOyyts5Error_pGYbcSg_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], @@ -5568,7 +4517,9 @@ "mangledName": "$s13ApptentiveKit0A0C6logOutyyYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", "RawDocComment" ], "throwing": true, @@ -5632,10 +4583,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C11updateToken_10completionySS_ys6ResultOyyts5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C11updateToken_10completionySS_ys6ResultOyyts5Error_pGcSgtF", + "usr": "s:13ApptentiveKit0A0C11updateToken_10completionySS_ys6ResultOyyts5Error_pGYbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C11updateToken_10completionySS_ys6ResultOyyts5Error_pGYbcSgtF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", + "Custom", "AccessControl", "RawDocComment" ], @@ -5663,40 +4616,131 @@ "mangledName": "$s13ApptentiveKit0A0C11updateTokenyySSYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", "RawDocComment" ], "throwing": true, "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(apiBaseURL:)", + "kind": "TypeDecl", + "name": "BackendSync", + "printedName": "BackendSync", "children": [ { - "kind": "TypeNominal", - "name": "Apptentive", - "printedName": "ApptentiveKit.Apptentive", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "kind": "Var", + "name": "wrappedValue", + "printedName": "wrappedValue", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvp", + "mangledName": "$s13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvg", + "mangledName": "$s13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvg", + "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvs", + "mangledName": "$s13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvs", + "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvM", + "mangledName": "$s13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvM", + "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] } ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A0C10apiBaseURLAC10Foundation0E0V_tcfc", - "mangledName": "$s13ApptentiveKit0A0C10apiBaseURLAC10Foundation0E0V_tcfc", + "declKind": "Struct", + "usr": "s:13ApptentiveKit0A0C11BackendSyncV", + "mangledName": "$s13ApptentiveKit0A0C11BackendSyncV", "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "Convenience", "AccessControl", + "PropertyWrapper", "RawDocComment" ], - "init_kind": "Convenience" + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } + ] }, { "kind": "Constructor", @@ -5720,6 +4764,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Custom", "Override" ], "init_kind": "Designated" @@ -5746,7 +4791,8 @@ "mangledName": "$s13ApptentiveKit0A0C32setRemoteNotificationDeviceTokenyy10Foundation4DataVF", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -5756,46 +4802,14 @@ }, { "kind": "Function", - "name": "setRemoteNotifcationDeviceToken", - "printedName": "setRemoteNotifcationDeviceToken(_:)", + "name": "didReceiveRemoteNotification", + "printedName": "didReceiveRemoteNotification(_:fetchCompletionHandler:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setRemoteNotifcationDeviceToken:", - "mangledName": "$s13ApptentiveKit0A0C31setRemoteNotifcationDeviceTokenyy10Foundation4DataVF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "didReceiveRemoteNotification", - "printedName": "didReceiveRemoteNotification(_:fetchCompletionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", @@ -5837,10 +4851,11 @@ ], "declKind": "Func", "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)didReceiveRemoteNotification:fetchCompletionHandler:", - "mangledName": "$s13ApptentiveKit0A0C28didReceiveRemoteNotification_22fetchCompletionHandlerSbSDys11AnyHashableVypG_ySo23UIBackgroundFetchResultVctF", + "mangledName": "$s13ApptentiveKit0A0C28didReceiveRemoteNotification_22fetchCompletionHandlerSbSDys11AnyHashableVypG_ySo23UIBackgroundFetchResultVYbctF", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -5888,7 +4903,8 @@ "mangledName": "$s13ApptentiveKit0A0C33didReceveUserNotificationResponse_21withCompletionHandlerSbSo014UNNotificationG0C_yyctF", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -5937,7 +4953,8 @@ "mangledName": "$s13ApptentiveKit0A0C11willPresent_21withCompletionHandlerSbSo14UNNotificationC_ySo0H19PresentationOptionsVctF", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -5988,12 +5005,13 @@ ], "declKind": "Func", "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)userNotificationCenter:willPresentNotification:withCompletionHandler:", - "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_11willPresent21withCompletionHandlerySo06UNUserdE0C_So14UNNotificationCySo0L19PresentationOptionsVctF", + "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_11willPresent21withCompletionHandlerySo06UNUserdE0C_So14UNNotificationCySo0L19PresentationOptionsVYbctF", "moduleName": "ApptentiveKit", "objc_name": "userNotificationCenter:willPresentNotification:withCompletionHandler:", "declAttributes": [ - "Dynamic", + "Final", "ObjC", + "Custom", "AccessControl", "RawDocComment" ], @@ -6042,12 +5060,13 @@ ], "declKind": "Func", "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:", - "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_10didReceive21withCompletionHandlerySo06UNUserdE0C_So22UNNotificationResponseCyyctF", + "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_10didReceive21withCompletionHandlerySo06UNUserdE0C_So22UNNotificationResponseCyyYbctF", "moduleName": "ApptentiveKit", "objc_name": "userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:", "declAttributes": [ - "Dynamic", + "Final", "ObjC", + "Custom", "AccessControl", "RawDocComment" ], @@ -6079,6 +5098,8 @@ "mangledName": "$s13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", + "Custom", "AccessControl", "RawDocComment" ], @@ -6108,82 +5129,417 @@ "usr": "s:13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvg", "mangledName": "$s13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvg", "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final" + ], "isFromExtension": true, "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "loadEngagementManifest", - "printedName": "loadEngagementManifest(at:completion:)", + "kind": "TypeDecl", + "name": "ConversationState", + "printedName": "ConversationState", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO4noneyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO4noneyA2EmF", + "moduleName": "ApptentiveKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", + "kind": "Var", + "name": "placeholder", + "printedName": "placeholder", "children": [ { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO11placeholderyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO11placeholderyA2EmF", + "moduleName": "ApptentiveKit" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", + "kind": "Var", + "name": "anonymousPending", + "printedName": "anonymousPending", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO16anonymousPendingyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO16anonymousPendingyA2EmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "legacyPending", + "printedName": "legacyPending", + "children": [ { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result<(), any Swift.Error>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" }, { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO13legacyPendingyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO13legacyPendingyA2EmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "anonymous", + "printedName": "anonymous", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO9anonymousyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO9anonymousyA2EmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "loggedIn", + "printedName": "loggedIn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO8loggedInyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO8loggedInyA2EmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "loggedOut", + "printedName": "loggedOut", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO9loggedOutyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO9loggedOutyA2EmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ApptentiveKit.Apptentive.ConversationState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" } ], - "usr": "s:s6ResultO" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO8rawValueAESgSS_tcfc", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO8rawValueAESgSS_tcfc", + "moduleName": "ApptentiveKit", + "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:13ApptentiveKit0A0C17ConversationStateO8rawValueSSvp", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO8rawValueSSvp", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO8rawValueSSvg", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO8rawValueSSvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessorKind": "get" } ] } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C22loadEngagementManifest2at10completiony10Foundation3URLVSg_ys6ResultOyyts5Error_pGctF", - "mangledName": "$s13ApptentiveKit0A0C22loadEngagementManifest2at10completiony10Foundation3URLVSg_ys6ResultOyyts5Error_pGctF", + "declKind": "Enum", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO", "moduleName": "ApptentiveKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "Function", - "name": "getInteractionList", - "printedName": "getInteractionList(_:)", + "name": "loadEngagementManifest", + "printedName": "loadEngagementManifest(at:)", "children": [ { "kind": "TypeNominal", @@ -6191,37 +5547,61 @@ "printedName": "()" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([ApptentiveKit.Apptentive.InteractionListItem]) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C22loadEngagementManifest2aty10Foundation3URLVSg_tYaKF", + "mangledName": "$s13ApptentiveKit0A0C22loadEngagementManifest2aty10Foundation3URLVSg_tYaKF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getInteractionList", + "printedName": "getInteractionList()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ApptentiveKit.Apptentive.InteractionListItem]", + "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ApptentiveKit.Apptentive.InteractionListItem]", - "children": [ - { - "kind": "TypeNominal", - "name": "InteractionListItem", - "printedName": "ApptentiveKit.Apptentive.InteractionListItem", - "usr": "s:13ApptentiveKit0A0C19InteractionListItemV" - } - ], - "usr": "s:Sa" + "name": "InteractionListItem", + "printedName": "ApptentiveKit.Apptentive.InteractionListItem", + "usr": "s:13ApptentiveKit0A0C19InteractionListItemV" } - ] + ], + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C18getInteractionListyyySayAC0dE4ItemVGcF", - "mangledName": "$s13ApptentiveKit0A0C18getInteractionListyyySayAC0dE4ItemVGcF", + "usr": "s:13ApptentiveKit0A0C18getInteractionListSayAC0dE4ItemVGyYaF", + "mangledName": "$s13ApptentiveKit0A0C18getInteractionListSayAC0dE4ItemVGyYaF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], @@ -6231,7 +5611,7 @@ { "kind": "Function", "name": "presentInteraction", - "printedName": "presentInteraction(with:completion:)", + "printedName": "presentInteraction(with:)", "children": [ { "kind": "TypeNominal", @@ -6243,54 +5623,26 @@ "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result<(), any Swift.Error>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C18presentInteraction4with10completionySS_ys6ResultOyyts5Error_pGctF", - "mangledName": "$s13ApptentiveKit0A0C18presentInteraction4with10completionySS_ys6ResultOyyts5Error_pGctF", + "usr": "s:13ApptentiveKit0A0C18presentInteraction4withySS_tYaKF", + "mangledName": "$s13ApptentiveKit0A0C18presentInteraction4withySS_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", "name": "presentInteraction", - "printedName": "presentInteraction(at:completion:)", + "printedName": "presentInteraction(at:)", "children": [ { "kind": "TypeNominal", @@ -6302,48 +5654,20 @@ "name": "URL", "printedName": "Foundation.URL", "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result<(), any Swift.Error>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C18presentInteraction2at10completiony10Foundation3URLV_ys6ResultOyyts5Error_pGctF", - "mangledName": "$s13ApptentiveKit0A0C18presentInteraction2at10completiony10Foundation3URLV_ys6ResultOyyts5Error_pGctF", + "usr": "s:13ApptentiveKit0A0C18presentInteraction2aty10Foundation3URLV_tYaKF", + "mangledName": "$s13ApptentiveKit0A0C18presentInteraction2aty10Foundation3URLV_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -6495,7 +5819,23 @@ "AccessControl", "RawDocComment" ], - "isFromExtension": true + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } + ] }, { "kind": "Function", @@ -6539,6 +5879,8 @@ "mangledName": "$s13ApptentiveKit0A0C12getEventListyyySaySSGcF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], @@ -6548,237 +5890,67 @@ { "kind": "Function", "name": "getConnectionInfo", - "printedName": "getConnectionInfo(_:)", + "printedName": "getConnectionInfo()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String?, Swift.String?, Swift.String?, Swift.String?, Swift.String?) -> ()", + "name": "Tuple", + "printedName": "(ApptentiveKit.Apptentive.ConversationState, Swift.String?, Swift.String?)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String?, Swift.String?, Swift.String?, Swift.String?, Swift.String?)", + "name": "Optional", + "printedName": "Swift.String?", "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": "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" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "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": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "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" } - ] + ], + "usr": "s:Sq" } ] } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C17getConnectionInfoyyySSSg_A4EtcF", - "mangledName": "$s13ApptentiveKit0A0C17getConnectionInfoyyySSSg_A4EtcF", + "usr": "s:13ApptentiveKit0A0C17getConnectionInfoAC17ConversationStateO_SSSgAGtyYaF", + "mangledName": "$s13ApptentiveKit0A0C17getConnectionInfoAC17ConversationStateO_SSSgAGtyYaF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, - { - "kind": "Function", - "name": "register", - "printedName": "register(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveConfiguration", - "printedName": "ApptentiveKit.ApptentiveConfiguration", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)registerWithConfiguration:", - "mangledName": "$s13ApptentiveKit0A0C8register4withyAA0A13ConfigurationC_tFZ", - "moduleName": "ApptentiveKit", - "static": true, - "deprecated": true, - "objc_name": "registerWithConfiguration:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "register", - "printedName": "register(with:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveConfiguration", - "printedName": "ApptentiveKit.ApptentiveConfiguration", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Bool) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)registerWithConfiguration:completion:", - "mangledName": "$s13ApptentiveKit0A0C8register4with10completionyAA0A13ConfigurationC_ySbcSgtF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "registerWithConfiguration:completion:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sharedConnection", - "printedName": "sharedConnection()", - "children": [ - { - "kind": "TypeNominal", - "name": "Apptentive", - "printedName": "ApptentiveKit.Apptentive", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)sharedConnection", - "mangledName": "$s13ApptentiveKit0A0C16sharedConnectionACyFZ", - "moduleName": "ApptentiveKit", - "static": true, - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, { "kind": "Var", - "name": "appID", - "printedName": "appID", + "name": "fontName", + "printedName": "fontName", "children": [ { "kind": "TypeNominal", @@ -6796,17 +5968,21 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)appID", - "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvp", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cpy)fontName", + "mangledName": "$s13ApptentiveKit0A0C8fontNameSSSgvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ - "Dynamic", + "HasInitialValue", + "Final", + "Custom", + "HasStorage", "AccessControl", "ObjC", - "Available" + "RawDocComment" ], "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -6829,12 +6005,14 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)appID", - "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvg", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)fontName", + "mangledName": "$s13ApptentiveKit0A0C8fontNameSSSgvgZ", "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "get" @@ -6865,297 +6043,102 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAppID:", - "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvs", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)setFontName:", + "mangledName": "$s13ApptentiveKit0A0C8fontNameSSSgvsZ", "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "set" - } - ] - }, - { - "kind": "Var", - "name": "showInfoButton", - "printedName": "showInfoButton", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)showInfoButton", - "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)showInfoButton", - "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" }, { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setShowInfoButton:", - "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvs", + "usr": "s:13ApptentiveKit0A0C8fontNameSSSgvMZ", + "mangledName": "$s13ApptentiveKit0A0C8fontNameSSSgvMZ", "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "Final" ], "isFromExtension": true, - "accessorKind": "set" + "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "surveyTermsAndConditions", - "printedName": "surveyTermsAndConditions", + "kind": "Function", + "name": "register", + "printedName": "register(with:completion:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", - "children": [ - { - "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)surveyTermsAndConditions", - "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", - "children": [ - { - "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)surveyTermsAndConditions", - "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "ApptentiveConfiguration", + "printedName": "ApptentiveKit.ApptentiveConfiguration", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Bool) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", "children": [ { "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setSurveyTermsAndConditions:", - "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" - } - ] - }, - { - "kind": "Var", - "name": "apptentiveKey", - "printedName": "apptentiveKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)apptentiveKey", - "mangledName": "$s13ApptentiveKit0A0C13apptentiveKeySSvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)apptentiveKey", - "mangledName": "$s13ApptentiveKit0A0C13apptentiveKeySSvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "apptentiveSignature", - "printedName": "apptentiveSignature", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)apptentiveSignature", - "mangledName": "$s13ApptentiveKit0A0C19apptentiveSignatureSSvp", + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)registerWithConfiguration:completion:", + "mangledName": "$s13ApptentiveKit0A0C8register4with10completionyAA0A13ConfigurationC_ySbYbcSgtF", "moduleName": "ApptentiveKit", "deprecated": true, + "objc_name": "registerWithConfiguration:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" ], "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)apptentiveSignature", - "mangledName": "$s13ApptentiveKit0A0C19apptentiveSignatureSSvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { "kind": "Function", @@ -7194,7 +6177,8 @@ "moduleName": "ApptentiveKit", "objc_name": "engage:fromViewController:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC" ], @@ -7261,11 +6245,12 @@ ], "declKind": "Func", "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:fromViewController:completion:", - "mangledName": "$s13ApptentiveKit0A0C6engage_18fromViewController10completionySS_So06UIViewF0CSgySbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C6engage_18fromViewController10completionySS_So06UIViewF0CSgySbYbcSgtF", "moduleName": "ApptentiveKit", "objc_name": "engage:fromViewController:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC" ], @@ -7337,7 +6322,8 @@ "deprecated": true, "objc_name": "engage:withCustomData:fromViewController:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7432,12 +6418,13 @@ ], "declKind": "Func", "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:fromViewController:completion:", - "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData4from10completionySS_SDys11AnyHashableVypGSgSo16UIViewControllerCSgySbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData4from10completionySS_SDys11AnyHashableVypGSgSo16UIViewControllerCSgySbYbcSgtF", "moduleName": "ApptentiveKit", "deprecated": true, "objc_name": "engage:withCustomData:fromViewController:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7447,8 +6434,8 @@ }, { "kind": "Function", - "name": "engage", - "printedName": "engage(event:withCustomData:withExtendedData:from:)", + "name": "queryCanShowInteraction", + "printedName": "queryCanShowInteraction(forEvent:completion:)", "children": [ { "kind": "TypeNominal", @@ -7462,90 +6449,33 @@ "usr": "s:SS" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[Swift.AnyHashable : Any]]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.AnyHashable : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ], - "usr": "s:Sq" + ] } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:withExtendedData:fromViewController:", - "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData0e8ExtendedG04fromySS_SDys11AnyHashableVypGSgSayAKGSgSo16UIViewControllerCSgtF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowInteractionForEvent:completion:", + "mangledName": "$s13ApptentiveKit0A0C23queryCanShowInteraction8forEvent10completionySS_ySbYbctF", "moduleName": "ApptentiveKit", "deprecated": true, - "objc_name": "engage:withCustomData:withExtendedData:fromViewController:", + "objc_name": "queryCanShowInteractionForEvent:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7555,9 +6485,54 @@ }, { "kind": "Function", - "name": "engage", - "printedName": "engage(event:withCustomData:withExtendedData:from:completion:)", - "children": [ + "name": "queryCanShowMessageCenter", + "printedName": "queryCanShowMessageCenter(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowMessageCenterWithCompletion:", + "mangledName": "$s13ApptentiveKit0A0C25queryCanShowMessageCenter10completionyySbYbc_tF", + "moduleName": "ApptentiveKit", + "deprecated": true, + "objc_name": "queryCanShowMessageCenterWithCompletion:", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenterCompat", + "printedName": "presentMessageCenterCompat(from:)", + "children": [ { "kind": "TypeNominal", "name": "Void", @@ -7565,9 +6540,124 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "UIKit.UIViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:", + "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4fromySo16UIViewControllerCSg_tF", + "moduleName": "ApptentiveKit", + "objc_name": "presentMessageCenterFromViewController:", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenterCompat", + "printedName": "presentMessageCenterCompat(from:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Bool) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:completion:", + "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from10completionySo16UIViewControllerCSg_ySbYbcSgtF", + "moduleName": "ApptentiveKit", + "deprecated": true, + "objc_name": "presentMessageCenterFromViewController:completion:", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenterCompat", + "printedName": "presentMessageCenterCompat(from:withCustomData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", @@ -7595,38 +6685,42 @@ } ], "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:", + "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomDataySo16UIViewControllerCSg_SDys11AnyHashableVypGSgtF", + "moduleName": "ApptentiveKit", + "objc_name": "presentMessageCenterFromViewController:withCustomData:", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenterCompat", + "printedName": "presentMessageCenterCompat(from:withCustomData:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[[Swift.AnyHashable : Any]]?", + "printedName": "UIKit.UIViewController?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.AnyHashable : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], "usr": "s:Sq" @@ -7634,13 +6728,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIViewController?", + "printedName": "[Swift.AnyHashable : Any]?", "children": [ { "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" + "name": "Dictionary", + "printedName": "[Swift.AnyHashable : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHashable", + "printedName": "Swift.AnyHashable", + "usr": "s:s11AnyHashableV" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], "usr": "s:Sq" @@ -7674,13 +6781,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:withExtendedData:fromViewController:completion:", - "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData0e8ExtendedG04from10completionySS_SDys11AnyHashableVypGSgSayALGSgSo16UIViewControllerCSgySbcSgtF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:completion:", + "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomData10completionySo16UIViewControllerCSg_SDys11AnyHashableVypGSgySbYbcSgtF", "moduleName": "ApptentiveKit", "deprecated": true, - "objc_name": "engage:withCustomData:withExtendedData:fromViewController:completion:", + "objc_name": "presentMessageCenterFromViewController:withCustomData:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7690,8 +6798,8 @@ }, { "kind": "Function", - "name": "queryCanShowInteraction", - "printedName": "queryCanShowInteraction(forEvent:completion:)", + "name": "removeCustomPersonData", + "printedName": "removeCustomPersonData(withKey:)", "children": [ { "kind": "TypeNominal", @@ -7703,34 +6811,17 @@ "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowInteractionForEvent:completion:", - "mangledName": "$s13ApptentiveKit0A0C23queryCanShowInteraction8forEvent10completionySS_ySbctF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomPersonDataWithKey:", + "mangledName": "$s13ApptentiveKit0A0C22removeCustomPersonData7withKeyySS_tF", "moduleName": "ApptentiveKit", "deprecated": true, - "objc_name": "queryCanShowInteractionForEvent:completion:", + "objc_name": "removeCustomPersonDataWithKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7740,44 +6831,30 @@ }, { "kind": "Function", - "name": "extendedData", - "printedName": "extendedData(date:)", + "name": "removeCustomDeviceData", + "printedName": "removeCustomDeviceData(withKey:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataDate:", - "mangledName": "$s13ApptentiveKit0A0C12extendedData4dateSDys11AnyHashableVypG10Foundation4DateV_tFZ", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomDeviceDataWithKey:", + "mangledName": "$s13ApptentiveKit0A0C22removeCustomDeviceData7withKeyySS_tF", "moduleName": "ApptentiveKit", - "static": true, "deprecated": true, - "objc_name": "extendedDataDate:", + "objc_name": "removeCustomDeviceDataWithKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7787,50 +6864,36 @@ }, { "kind": "Function", - "name": "extendedData", - "printedName": "extendedData(latitude:longitude:)", + "name": "addCustomDeviceData", + "printedName": "addCustomDeviceData(_:withKey:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataLocationForLatitude:longitude:", - "mangledName": "$s13ApptentiveKit0A0C12extendedData8latitude9longitudeSDys11AnyHashableVypGSd_SdtFZ", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataString:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySS_SStF", "moduleName": "ApptentiveKit", - "static": true, "deprecated": true, - "objc_name": "extendedDataLocationForLatitude:longitude:", + "objc_name": "addCustomDeviceDataString:withKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7840,157 +6903,75 @@ }, { "kind": "Function", - "name": "extendedData", - "printedName": "extendedData(transactionID:affiliation:revenue:shipping:tax:currency:commerceItems:)", + "name": "addCustomDeviceData", + "printedName": "addCustomDeviceData(_:withKey:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "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": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataNumber:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySo8NSNumberC_SStF", + "moduleName": "ApptentiveKit", + "deprecated": true, + "objc_name": "addCustomDeviceDataNumber:withKey:", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addCustomDeviceData", + "printedName": "addCustomDeviceData(_:withKey:)", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[Swift.AnyHashable : Any]]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.AnyHashable : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:", - "mangledName": "$s13ApptentiveKit0A0C12extendedData13transactionID11affiliation7revenue8shipping3tax8currency13commerceItemsSDys11AnyHashableVypGSSSg_AOSo8NSNumberCSgA2rOSayANGSgtFZ", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataBool:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySb_SStF", "moduleName": "ApptentiveKit", - "static": true, "deprecated": true, - "objc_name": "extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:", + "objc_name": "addCustomDeviceDataBool:withKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8000,122 +6981,36 @@ }, { "kind": "Function", - "name": "extendedData", - "printedName": "extendedData(itemID:name:category:price:quantity:currency:)", + "name": "addCustomPersonData", + "printedName": "addCustomPersonData(_:withKey:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" }, { "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": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "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.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" + "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" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:", - "mangledName": "$s13ApptentiveKit0A0C12extendedData6itemID4name8category5price8quantity8currencySDys11AnyHashableVypGSSSg_A2NSo8NSNumberCSgAqNtFZ", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataString:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySS_SStF", "moduleName": "ApptentiveKit", - "static": true, "deprecated": true, - "objc_name": "extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:", + "objc_name": "addCustomPersonDataString:withKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8125,8 +7020,8 @@ }, { "kind": "Function", - "name": "queryCanShowMessageCenter", - "printedName": "queryCanShowMessageCenter(completion:)", + "name": "addCustomPersonData", + "printedName": "addCustomPersonData(_:withKey:)", "children": [ { "kind": "TypeNominal", @@ -8134,32 +7029,27 @@ "printedName": "()" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowMessageCenterWithCompletion:", - "mangledName": "$s13ApptentiveKit0A0C25queryCanShowMessageCenter10completionyySbc_tF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataNumber:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySo8NSNumberC_SStF", "moduleName": "ApptentiveKit", "deprecated": true, - "objc_name": "queryCanShowMessageCenterWithCompletion:", + "objc_name": "addCustomPersonDataNumber:withKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8169,8 +7059,8 @@ }, { "kind": "Function", - "name": "presentMessageCenterCompat", - "printedName": "presentMessageCenterCompat(from:)", + "name": "addCustomPersonData", + "printedName": "addCustomPersonData(_:withKey:)", "children": [ { "kind": "TypeNominal", @@ -8179,36 +7069,37 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:", - "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4fromySo16UIViewControllerCSg_tF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataBool:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySb_SStF", "moduleName": "ApptentiveKit", - "objc_name": "presentMessageCenterFromViewController:", + "deprecated": true, + "objc_name": "addCustomPersonDataBool:withKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", - "ObjC" + "ObjC", + "Available" ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "presentMessageCenterCompat", - "printedName": "presentMessageCenterCompat(from:completion:)", + "name": "logIn", + "printedName": "logIn(withToken:completion:)", "children": [ { "kind": "TypeNominal", @@ -8217,54 +7108,59 @@ }, { "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" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Bool) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, (any Swift.Error)?) -> ()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, (any Swift.Error)?)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Bool", "printedName": "Swift.Bool", "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:completion:", - "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from10completionySo16UIViewControllerCSg_ySbcSgtF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logInWithToken:completion:", + "mangledName": "$s13ApptentiveKit0A0C5logIn9withToken10completionySS_ySb_s5Error_pSgtYbctF", "moduleName": "ApptentiveKit", "deprecated": true, - "objc_name": "presentMessageCenterFromViewController:completion:", + "objc_name": "logInWithToken:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8274,119 +7170,271 @@ }, { "kind": "Function", - "name": "presentMessageCenterCompat", - "printedName": "presentMessageCenterCompat(from:withCustomData:)", + "name": "logOut", + "printedName": "logOut()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - }, + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logOut", + "mangledName": "$s13ApptentiveKit0A0C6logOutyyF", + "moduleName": "ApptentiveKit", + "deprecated": true, + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "authenticationFailureCallback", + "printedName": "authenticationFailureCallback", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", + "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Tuple", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveAuthenticationFailureReason", + "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", + "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] } - ], - "usr": "s:SD" + ] } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:", - "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomDataySo16UIViewControllerCSg_SDys11AnyHashableVypGSgtF", + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)authenticationFailureCallback", + "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvp", "moduleName": "ApptentiveKit", - "objc_name": "presentMessageCenterFromViewController:withCustomData:", + "deprecated": true, "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", - "ObjC" + "ObjC", + "Available" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentMessageCenterCompat", - "printedName": "presentMessageCenterCompat(from:withCustomData:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" + "name": "Optional", + "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveAuthenticationFailureReason", + "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", + "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)authenticationFailureCallback", + "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvg", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveAuthenticationFailureReason", + "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", + "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAuthenticationFailureCallback:", + "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvs", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvM", + "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvM", + "moduleName": "ApptentiveKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "updateToken", + "printedName": "updateToken(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", @@ -8417,229 +7465,13 @@ } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:completion:", - "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomData10completionySo16UIViewControllerCSg_SDys11AnyHashableVypGSgySbcSgtF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "presentMessageCenterFromViewController:withCustomData:completion:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dismissMessageCenter", - "printedName": "dismissMessageCenter(animated:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)dismissMessageCenterWithAnimated:completion:", - "mangledName": "$s13ApptentiveKit0A0C20dismissMessageCenter8animated10completionySb_yycSgtF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "dismissMessageCenterWithAnimated:completion:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unreadMessageCountAccessoryView", - "printedName": "unreadMessageCountAccessoryView(apptentiveHeart:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)unreadMessageCountAccessoryViewWithApptentiveHeart:", - "mangledName": "$s13ApptentiveKit0A0C31unreadMessageCountAccessoryView15apptentiveHeartSo6UIViewCSb_tF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "unreadMessageCountAccessoryViewWithApptentiveHeart:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "openAppStore", - "printedName": "openAppStore()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)openAppStore", - "mangledName": "$s13ApptentiveKit0A0C12openAppStoreyyF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setPushProvider", - "printedName": "setPushProvider(_:deviceToken:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setPushProvider:deviceToken:", - "mangledName": "$s13ApptentiveKit0A0C15setPushProvider_11deviceTokenyAA0adE0O_10Foundation4DataVtF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "didReceveUserNotificationResponse", - "printedName": "didReceveUserNotificationResponse(_:from:withCompletionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "UNNotificationResponse", - "printedName": "UserNotifications.UNNotificationResponse", - "usr": "c:objc(cs)UNNotificationResponse" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)didReceveUserNotificationResponse:from:withCompletionHandler:", - "mangledName": "$s13ApptentiveKit0A0C33didReceveUserNotificationResponse_4from21withCompletionHandlerSbSo014UNNotificationG0C_So16UIViewControllerCSgyyctF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)updateToken:completion:", + "mangledName": "$s13ApptentiveKit0A0C11updateToken_10completionySS_ySbYbcSgtF", "moduleName": "ApptentiveKit", "deprecated": true, "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8649,31 +7481,24 @@ }, { "kind": "Var", - "name": "advertisingIdentifier", - "printedName": "advertisingIdentifier", + "name": "logLevel", + "printedName": "logLevel", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.UUID?", - "children": [ - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" - } - ], - "usr": "s:Sq" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)advertisingIdentifier", - "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvp", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)logLevel", + "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovp", "moduleName": "ApptentiveKit", "deprecated": true, "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8687,26 +7512,18 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.UUID?", - "children": [ - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" - } - ], - "usr": "s:Sq" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)advertisingIdentifier", - "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvg", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logLevel", + "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovg", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "get" @@ -8723,1302 +7540,661 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.UUID?", - "children": [ - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" - } - ], - "usr": "s:Sq" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAdvertisingIdentifier:", - "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvs", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setLogLevel:", + "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovs", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C8logLevelAA0a3LogD0OvM", + "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0OvM", + "moduleName": "ApptentiveKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } ] + } + ], + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive", + "mangledName": "$s13ApptentiveKit0A0C", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "AccessControl", + "Custom", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ApptentiveError", + "printedName": "ApptentiveError", + "children": [ { "kind": "Var", - "name": "mParticleId", - "printedName": "mParticleId", + "name": "internalInconsistency", + "printedName": "internalInconsistency", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)mParticleId", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "invalidCustomDataType", + "printedName": "invalidCustomDataType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)mParticleId", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyA2CmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "fileExistsAtContainerDirectoryPath", + "printedName": "fileExistsAtContainerDirectoryPath", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setMParticleId:", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF", + "moduleName": "ApptentiveKit" }, { - "kind": "Function", - "name": "removeCustomPersonData", - "printedName": "removeCustomPersonData(withKey:)", + "kind": "Var", + "name": "unsupportedBackendStateTransition", + "printedName": "unsupportedBackendStateTransition", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomPersonDataWithKey:", - "mangledName": "$s13ApptentiveKit0A0C22removeCustomPersonData7withKeyySS_tF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "removeCustomPersonDataWithKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "removeCustomDeviceData", - "printedName": "removeCustomDeviceData(withKey:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomDeviceDataWithKey:", - "mangledName": "$s13ApptentiveKit0A0C22removeCustomDeviceData7withKeyySS_tF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "removeCustomDeviceDataWithKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomDeviceData", - "printedName": "addCustomDeviceData(_:withKey:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataString:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySS_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomDeviceDataString:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomDeviceData", - "printedName": "addCustomDeviceData(_:withKey:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataNumber:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySo8NSNumberC_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomDeviceDataNumber:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomDeviceData", - "printedName": "addCustomDeviceData(_:withKey:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "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@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataBool:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySb_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomDeviceDataBool:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomPersonData", - "printedName": "addCustomPersonData(_:withKey:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataString:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySS_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomPersonDataString:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomPersonData", - "printedName": "addCustomPersonData(_:withKey:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataNumber:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySo8NSNumberC_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomPersonDataNumber:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomPersonData", - "printedName": "addCustomPersonData(_:withKey:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "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@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataBool:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySb_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomPersonDataBool:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "styleSheet", - "printedName": "styleSheet", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)styleSheet", - "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)styleSheet", - "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO33unsupportedBackendStateTransitionyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO33unsupportedBackendStateTransitionyA2CmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "emptyEventName", + "printedName": "emptyEventName", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setStyleSheet:", - "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" - } - ] - }, - { - "kind": "Function", - "name": "checkSDKConfiguration", - "printedName": "checkSDKConfiguration()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)checkSDKConfiguration", - "mangledName": "$s13ApptentiveKit0A0C21checkSDKConfigurationyyF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO14emptyEventNameyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO14emptyEventNameyA2CmF", + "moduleName": "ApptentiveKit" }, { - "kind": "Function", - "name": "logIn", - "printedName": "logIn(withToken:completion:)", + "kind": "Var", + "name": "notLoggedIn", + "printedName": "notLoggedIn", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Swift.Bool, (any Swift.Error)?) -> ()", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Bool, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } ] } ] } ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logInWithToken:completion:", - "mangledName": "$s13ApptentiveKit0A0C5logIn9withToken10completionySS_ySb_s5Error_pSgtctF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "logInWithToken:completion:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "logOut", - "printedName": "logOut()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logOut", - "mangledName": "$s13ApptentiveKit0A0C6logOutyyF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO11notLoggedInyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO11notLoggedInyA2CmF", + "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "authenticationFailureCallback", - "printedName": "authenticationFailureCallback", + "name": "alreadyLoggedIn", + "printedName": "alreadyLoggedIn", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (Swift.String, Swift.String) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", + "printedName": "(Swift.String, Swift.String) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", "name": "Tuple", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", + "printedName": "(subject: Swift.String, id: Swift.String)", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveAuthenticationFailureReason", - "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", - "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" + "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" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)authenticationFailureCallback", - "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveAuthenticationFailureReason", - "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", - "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)authenticationFailureCallback", - "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO15alreadyLoggedInyACSS_SStcACmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO15alreadyLoggedInyACSS_SStcACmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "loginCalledBeforeRegister", + "printedName": "loginCalledBeforeRegister", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveAuthenticationFailureReason", - "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", - "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAuthenticationFailureCallback:", - "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO25loginCalledBeforeRegisteryA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO25loginCalledBeforeRegisteryA2CmF", + "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "preInteractionCallback", - "printedName": "preInteractionCallback", + "name": "activeConversationPending", + "printedName": "activeConversationPending", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool", + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ] + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)preInteractionCallback", - "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO25activeConversationPendingyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO25activeConversationPendingyA2CmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "missingSubClaim", + "printedName": "missingSubClaim", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)preInteractionCallback", - "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO15missingSubClaimyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO15missingSubClaimyA2CmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "mismatchedSubClaim", + "printedName": "mismatchedSubClaim", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setPreInteractionCallback:", - "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO18mismatchedSubClaimyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO18mismatchedSubClaimyA2CmF", + "moduleName": "ApptentiveKit" }, { - "kind": "Function", - "name": "updateToken", - "printedName": "updateToken(_:completion:)", + "kind": "Var", + "name": "invalidEncryptionKey", + "printedName": "invalidEncryptionKey", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Bool) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)updateToken:completion:", - "mangledName": "$s13ApptentiveKit0A0C11updateToken_10completionySS_ySbcSgtF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO20invalidEncryptionKeyyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO20invalidEncryptionKeyyA2CmF", + "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "logLevel", - "printedName": "logLevel", + "name": "invalidAppCredentials", + "printedName": "invalidAppCredentials", "children": [ { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)logLevel", - "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logLevel", - "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setLogLevel:", - "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" + ] } - ] - } - ], - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive", - "mangledName": "$s13ApptentiveKit0A0C", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": 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" + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO21invalidAppCredentialsyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO21invalidAppCredentialsyA2CmF", + "moduleName": "ApptentiveKit" }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ApptentiveError", - "printedName": "ApptentiveError", - "children": [ { "kind": "Var", - "name": "internalInconsistency", - "printedName": "internalInconsistency", + "name": "noActiveConversation", + "printedName": "noActiveConversation", "children": [ { "kind": "TypeFunc", @@ -10048,24 +8224,24 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF", + "usr": "s:13ApptentiveKit0A5ErrorO20noActiveConversationyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO20noActiveConversationyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "invalidCustomDataType", - "printedName": "invalidCustomDataType", + "name": "authenticationFailed", + "printedName": "authenticationFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (Any?) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (ApptentiveKit.AuthenticationFailureReason?, Swift.String?) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Any?) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason?, Swift.String?) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", @@ -10075,16 +8251,38 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Tuple", + "printedName": "(reason: ApptentiveKit.AuthenticationFailureReason?, responseString: Swift.String?)", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "ApptentiveKit.AuthenticationFailureReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ] }, @@ -10105,14 +8303,14 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyACypSgcACmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyACypSgcACmF", + "usr": "s:13ApptentiveKit0A5ErrorO20authenticationFailedyAcA27AuthenticationFailureReasonOSg_SSSgtcACmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO20authenticationFailedyAcA27AuthenticationFailureReasonOSg_SSSgtcACmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "fileExistsAtContainerDirectoryPath", - "printedName": "fileExistsAtContainerDirectoryPath", + "name": "resourceNotDecodableAsImage", + "printedName": "resourceNotDecodableAsImage", "children": [ { "kind": "TypeFunc", @@ -10142,25 +8340,51 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF", + "usr": "s:13ApptentiveKit0A5ErrorO27resourceNotDecodableAsImageyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO27resourceNotDecodableAsImageyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "unsupportedBackendStateTransition", - "printedName": "unsupportedBackendStateTransition", + "name": "interactionExceededRateLimit", + "printedName": "interactionExceededRateLimit", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (Swift.Int, Swift.Int) -> ApptentiveKit.ApptentiveError", "children": [ { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int, Swift.Int) -> ApptentiveKit.ApptentiveError", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(count: Swift.Int, limit: Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] }, { "kind": "TypeNominal", @@ -10179,73 +8403,190 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO33unsupportedBackendStateTransitionyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO33unsupportedBackendStateTransitionyA2CmF", + "usr": "s:13ApptentiveKit0A5ErrorO28interactionExceededRateLimityACSi_SitcACmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO28interactionExceededRateLimityACSi_SitcACmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "emptyEventName", - "printedName": "emptyEventName", + "name": "errorDescription", + "printedName": "errorDescription", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvp", + "mangledName": "$s13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvg", + "mangledName": "$s13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvg", + "moduleName": "ApptentiveKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO14emptyEventNameyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO14emptyEventNameyA2CmF", - "moduleName": "ApptentiveKit" + "declKind": "Func", + "usr": "s:13ApptentiveKit0A5ErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s13ApptentiveKit0A5ErrorO2eeoiySbAC_ACtFZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13ApptentiveKit0A5ErrorO", + "mangledName": "$s13ApptentiveKit0A5ErrorO", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationFailureReason", + "printedName": "AuthenticationFailureReason", + "children": [ { "kind": "Var", - "name": "notLoggedIn", - "printedName": "notLoggedIn", + "name": "invalidAlgorithm", + "printedName": "invalidAlgorithm", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" } ] } @@ -10253,62 +8594,36 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO11notLoggedInyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO11notLoggedInyA2CmF", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO16invalidAlgorithmyA2CmF", + "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO16invalidAlgorithmyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "alreadyLoggedIn", - "printedName": "alreadyLoggedIn", + "name": "malformedToken", + "printedName": "malformedToken", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (Swift.String, Swift.String) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Swift.String) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(subject: Swift.String, id: 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": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" } ] } @@ -10316,36 +8631,36 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO15alreadyLoggedInyACSS_SStcACmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO15alreadyLoggedInyACSS_SStcACmF", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO14malformedTokenyA2CmF", + "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO14malformedTokenyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "loginCalledBeforeRegister", - "printedName": "loginCalledBeforeRegister", + "name": "invalidToken", + "printedName": "invalidToken", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" } ] } @@ -10353,36 +8668,36 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO25loginCalledBeforeRegisteryA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO25loginCalledBeforeRegisteryA2CmF", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO12invalidTokenyA2CmF", + "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO12invalidTokenyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "activeConversationPending", - "printedName": "activeConversationPending", + "name": "missingSubClaim", + "printedName": "missingSubClaim", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" } ] } @@ -10390,542 +8705,36 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO25activeConversationPendingyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO25activeConversationPendingyA2CmF", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO15missingSubClaimyA2CmF", + "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO15missingSubClaimyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "missingSubClaim", - "printedName": "missingSubClaim", + "name": "mismatchedSubClaim", + "printedName": "mismatchedSubClaim", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO15missingSubClaimyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO15missingSubClaimyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "mismatchedSubClaim", - "printedName": "mismatchedSubClaim", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO18mismatchedSubClaimyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO18mismatchedSubClaimyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "invalidEncryptionKey", - "printedName": "invalidEncryptionKey", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO20invalidEncryptionKeyyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO20invalidEncryptionKeyyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "noActiveConversation", - "printedName": "noActiveConversation", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO20noActiveConversationyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO20noActiveConversationyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "authenticationFailed", - "printedName": "authenticationFailed", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (ApptentiveKit.AuthenticationFailureReason?, Swift.String?) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason?, Swift.String?) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(reason: ApptentiveKit.AuthenticationFailureReason?, responseString: Swift.String?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.AuthenticationFailureReason?", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO20authenticationFailedyAcA27AuthenticationFailureReasonOSg_SSSgtcACmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO20authenticationFailedyAcA27AuthenticationFailureReasonOSg_SSSgtcACmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "resourceNotDecodableAsImage", - "printedName": "resourceNotDecodableAsImage", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO27resourceNotDecodableAsImageyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO27resourceNotDecodableAsImageyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "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:13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvp", - "mangledName": "$s13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvp", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvg", - "mangledName": "$s13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvg", - "moduleName": "ApptentiveKit", - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit0A5ErrorO", - "mangledName": "$s13ApptentiveKit0A5ErrorO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "AuthenticationFailureReason", - "printedName": "AuthenticationFailureReason", - "children": [ - { - "kind": "Var", - "name": "invalidAlgorithm", - "printedName": "invalidAlgorithm", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO16invalidAlgorithmyA2CmF", - "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO16invalidAlgorithmyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "malformedToken", - "printedName": "malformedToken", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO14malformedTokenyA2CmF", - "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO14malformedTokenyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "invalidToken", - "printedName": "invalidToken", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO12invalidTokenyA2CmF", - "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO12invalidTokenyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "missingSubClaim", - "printedName": "missingSubClaim", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO15missingSubClaimyA2CmF", - "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO15missingSubClaimyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "mismatchedSubClaim", - "printedName": "mismatchedSubClaim", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" } ] } @@ -11241,6 +9050,20 @@ ], "enumRawTypeName": "String", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -11290,9 +9113,23 @@ "printedName": "Encodable", "usr": "s:SE", "mangledName": "$sSE" - } - ] - }, + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, { "kind": "Var", "name": "apptentiveAssertionHandler", @@ -11359,6 +9196,7 @@ "HasInitialValue", "HasStorage", "AccessControl", + "Nonisolated", "RawDocComment" ], "hasStorage": true, @@ -11545,6 +9383,23 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -11700,6 +9555,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -11725,9 +9587,41 @@ "usr": "s:13ApptentiveKit20CustomDataCompatibleP", "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP", "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0 : Swift.Sendable>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } ] }, { @@ -12030,6 +9924,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -12050,6 +9958,20 @@ "printedName": "Encodable", "usr": "s:SE", "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, @@ -12103,6 +10025,7 @@ "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ + "Custom", "RawDocComment" ], "reqNewWitnessTableEntry": true, @@ -12133,6 +10056,7 @@ "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ + "Custom", "RawDocComment" ], "reqNewWitnessTableEntry": true, @@ -12163,6 +10087,7 @@ "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ + "Custom", "RawDocComment" ], "reqNewWitnessTableEntry": true, @@ -12193,6 +10118,7 @@ "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ + "Custom", "RawDocComment" ], "reqNewWitnessTableEntry": true, @@ -12223,6 +10149,7 @@ "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ + "Custom", "RawDocComment" ], "reqNewWitnessTableEntry": true, @@ -12237,7 +10164,24 @@ "sugared_genericSig": "", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + } ] }, { @@ -12271,6 +10215,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12328,6 +10273,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12377,6 +10323,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12415,17 +10362,18 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessage10Foundation16AttributedStringVvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessage10Foundation16AttributedStringVvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12440,14 +10388,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessage10Foundation16AttributedStringVvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessage10Foundation16AttributedStringVvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -12465,23 +10413,24 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC14disclaimerText10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerText10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12494,21 +10443,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC14disclaimerText10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerText10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "accessorKind": "get" } @@ -12525,6 +10474,22 @@ "declAttributes": [ "AccessControl", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } ] }, { @@ -12553,6 +10518,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12603,6 +10569,22 @@ "declAttributes": [ "AccessControl", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } ] }, { @@ -12623,6 +10605,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12671,6 +10654,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "ReferenceOwnership", "AccessControl", @@ -12775,6 +10759,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC11currentPageAC0G0Cvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12824,6 +10809,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC9questionsSayAC8QuestionCGvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12873,6 +10859,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC17isMarkedAsInvalidSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12905,23 +10892,24 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessage10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessage10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12934,21 +10922,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessage10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessage10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "accessorKind": "get" } @@ -12962,23 +10950,24 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC12introductionSSSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introductionSSSgvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC12introduction10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introduction10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12991,21 +10980,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC12introductionSSSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introductionSSSgvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC12introduction10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introduction10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "accessorKind": "get" } @@ -13028,6 +11017,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC17advanceButtonTextSSvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13069,6 +11059,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC22invalidQuestionIndexes10Foundation8IndexSetVvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13111,6 +11102,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -13198,6 +11190,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -13303,6 +11296,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8setValue_3forySSSg_10Foundation9IndexPathVtF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13330,6 +11324,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC20selectValueFromRange2aty10Foundation9IndexPathV_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13351,6 +11346,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC22openTermsAndConditionsyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13368,10 +11364,11 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit15SurveyViewModelC7advanceyyF", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC7advanceyyF", + "usr": "s:13ApptentiveKit15SurveyViewModelC7advanceyyYaF", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC7advanceyyYaF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13394,6 +11391,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC7isValidSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13609,6 +11607,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -13642,6 +11654,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC11displayModeAC07DisplayG0Ovp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13683,6 +11696,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC19shouldConfirmCancelSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13732,6 +11746,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC27currentSelectedSegmentIndexSiSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13764,6 +11779,90 @@ } ] }, + { + "kind": "Var", + "name": "isIntroPage", + "printedName": "isIntroPage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit15SurveyViewModelC11isIntroPageSbvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC11isIntroPageSbvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit15SurveyViewModelC11isIntroPageSbvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC11isIntroPageSbvg", + "moduleName": "ApptentiveKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSuccessPage", + "printedName": "isSuccessPage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit15SurveyViewModelC13isSuccessPageSbvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC13isSuccessPageSbvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit15SurveyViewModelC13isSuccessPageSbvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC13isSuccessPageSbvg", + "moduleName": "ApptentiveKit", + "accessorKind": "get" + } + ] + }, { "kind": "Function", "name": "launch", @@ -13780,6 +11879,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC6launchyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13801,6 +11901,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC15continuePartialyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13828,6 +11929,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC6cancel7partialySb_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13856,6 +11958,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -13905,6 +12008,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -13962,6 +12066,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14027,6 +12132,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14092,6 +12198,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "SetterAccess", "AccessControl", @@ -14153,6 +12260,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC5valueSiSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14210,6 +12318,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC12choiceLabelsSaySSGvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14264,6 +12373,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC11selectValue2atySi_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14286,6 +12396,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC27accessibilityHintForSegmentSSvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14316,6 +12427,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14325,6 +12437,22 @@ "inheritsConvenienceInitializers": true, "superclassNames": [ "ApptentiveKit.SurveyViewModel.Question" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } ] }, { @@ -14358,6 +12486,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14419,6 +12548,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC06toggleF02atySi_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14441,6 +12571,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14selectionStyleAE09SelectionI0Ovp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14656,6 +12787,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -14684,17 +12829,18 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5label10Foundation16AttributedStringVvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5label10Foundation16AttributedStringVvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14709,14 +12855,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5label10Foundation16AttributedStringVvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5label10Foundation16AttributedStringVvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -14726,117 +12872,6 @@ } ] }, - { - "kind": "Var", - "name": "htmlLabel", - "printedName": "htmlLabel", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSAttributedString?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSAttributedString", - "printedName": "Foundation.NSAttributedString", - "usr": "c:objc(cs)NSAttributedString" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSAttributedString?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSAttributedString", - "printedName": "Foundation.NSAttributedString", - "usr": "c:objc(cs)NSAttributedString" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSAttributedString?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSAttributedString", - "printedName": "Foundation.NSAttributedString", - "usr": "c:objc(cs)NSAttributedString" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvs", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvM", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, { "kind": "Var", "name": "placeholderText", @@ -14863,6 +12898,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14920,6 +12956,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14968,6 +13005,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C10isSelectedSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "SetterAccess", "AccessControl", @@ -15013,6 +13051,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C17isMarkedAsInvalidSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "SetterAccess", "AccessControl", @@ -15067,6 +13106,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15158,10 +13198,34 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] } ], "declKind": "Class", @@ -15169,6 +13233,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -15178,6 +13243,36 @@ "inheritsConvenienceInitializers": true, "superclassNames": [ "ApptentiveKit.SurveyViewModel.Question" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } ] }, { @@ -15203,6 +13298,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15242,24 +13338,25 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC11description10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11description10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15275,21 +13372,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC11description10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11description10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -15307,24 +13404,25 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC10disclaimerSSSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC10disclaimerSSSgvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC10disclaimer10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC10disclaimer10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15340,21 +13438,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC10disclaimerSSSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC10disclaimerSSSgvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC10disclaimer10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC10disclaimer10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -15390,6 +13488,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15447,6 +13546,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15504,6 +13604,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15550,10 +13651,34 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" ], "isFromExtension": true, - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { "kind": "TypeDecl", @@ -15567,16 +13692,17 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4text10Foundation16AttributedStringVvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4text10Foundation16AttributedStringVvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "Final", "AccessControl", @@ -15592,14 +13718,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4text10Foundation16AttributedStringVvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4text10Foundation16AttributedStringVvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -15626,6 +13752,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC10isRequiredSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "Final", "AccessControl", @@ -15683,6 +13810,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12requiredTextSSSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "Final", "AccessControl", @@ -15740,6 +13868,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12errorMessageSSvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "Final", "AccessControl", @@ -15797,6 +13926,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12instructionsSSSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "Final", "AccessControl", @@ -15855,6 +13985,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15941,6 +14072,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC18accessibilityLabelSSvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -15972,10 +14104,34 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" ], "isFromExtension": true, - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { "kind": "TypeDecl", @@ -16008,6 +14164,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -16065,6 +14222,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -16122,6 +14280,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -16213,6 +14372,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -16222,6 +14382,36 @@ "inheritsConvenienceInitializers": true, "superclassNames": [ "ApptentiveKit.SurveyViewModel.Question" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } ] } ], @@ -16231,9 +14421,33 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { "kind": "Import", @@ -16277,14 +14491,21 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "SwiftUI", + "printedName": "SwiftUI", "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment" ] }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -16305,6 +14526,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -16345,6 +14573,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "UIKit", @@ -16381,6 +14616,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16414,6 +14652,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16447,6 +14688,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16488,6 +14732,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16529,6 +14776,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16570,6 +14820,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16597,6 +14850,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16624,6 +14880,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16651,234 +14910,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:didFailToRemoveAttachmentAt:with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27didFailToRemoveAttachmentAt4withyAA0cdeF0C_Sis5Error_ptF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27didFailToRemoveAttachmentAt4withyAA0cdeF0C_Sis5Error_ptF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:didFailToAddAttachmentWith:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_26didFailToAddAttachmentWithyAA0cdeF0C_s5Error_ptF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_26didFailToAddAttachmentWithyAA0cdeF0C_s5Error_ptF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:didFailToSendMessageWith:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_013didFailToSendC4WithyAA0cdeF0C_s5Error_ptF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_013didFailToSendC4WithyAA0cdeF0C_s5Error_ptF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:attachmentDownloadDidFinishAt:inMessageAt:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "IndexPath", - "printedName": "Foundation.IndexPath", - "usr": "s:10Foundation9IndexPathV" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_29attachmentDownloadDidFinishAt02incM0yAA0cdeF0C_Si10Foundation9IndexPathVtF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_29attachmentDownloadDidFinishAt02incM0yAA0cdeF0C_Si10Foundation9IndexPathVtF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:attachmentDownloadDidFailAt:inMessageAt:with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "IndexPath", - "printedName": "Foundation.IndexPath", - "usr": "s:10Foundation9IndexPathV" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27attachmentDownloadDidFailAt02incM04withyAA0cdeF0C_Si10Foundation9IndexPathVs5Error_ptF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27attachmentDownloadDidFailAt02incM04withyAA0cdeF0C_Si10Foundation9IndexPathVs5Error_ptF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:profilePhoto:didDownloadFor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - }, - { - "kind": "TypeNominal", - "name": "IndexPath", - "printedName": "Foundation.IndexPath", - "usr": "s:10Foundation9IndexPathV" - } + "declAttributes": [ + "Custom" ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_12profilePhoto14didDownloadForyAA0cdeF0C_So7UIImageC10Foundation9IndexPathVtF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_12profilePhoto14didDownloadForyAA0cdeF0C_So7UIImageC10Foundation9IndexPathVtF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" } @@ -16891,7 +14925,24 @@ "sugared_genericSig": "", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + } ] }, { @@ -16917,6 +14968,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -16974,6 +15026,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17031,6 +15084,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17080,6 +15134,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17129,6 +15184,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17178,6 +15234,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17227,6 +15284,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17276,6 +15334,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17325,6 +15384,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17374,6 +15434,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17423,6 +15484,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17472,6 +15534,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17529,6 +15592,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17601,6 +15665,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17719,6 +15784,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17806,6 +15872,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17893,6 +15960,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17942,6 +16010,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17991,6 +16060,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18040,6 +16110,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18089,6 +16160,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18138,6 +16210,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18187,6 +16260,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18236,6 +16310,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18285,6 +16360,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18334,6 +16410,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18383,6 +16460,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18432,6 +16510,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18481,6 +16560,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18530,6 +16610,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18579,6 +16660,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18628,6 +16710,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18677,6 +16760,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18726,6 +16810,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18775,6 +16860,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18824,6 +16910,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18873,6 +16960,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18922,6 +17010,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18971,6 +17060,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19020,6 +17110,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19069,6 +17160,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19126,6 +17218,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19237,6 +17330,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19339,6 +17433,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19425,6 +17520,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19511,6 +17607,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC22shouldAllowProfileEditSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19802,6 +17899,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -19843,6 +17954,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC012oldestUnreadC9IndexPath10Foundation0iJ0VSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -19900,6 +18012,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC06newestC9IndexPath10Foundation0hI0VSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -19948,6 +18061,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18commitProfileEditsyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -19969,6 +18083,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18cancelProfileEditsyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -19990,6 +18105,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC6launchyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20011,6 +18127,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC6cancelyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20033,6 +18150,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC08numberOfC6GroupsSivp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20079,6 +18197,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC04markC6AsRead2aty10Foundation9IndexPathV_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20107,6 +18226,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23numberOfMessagesInGroup2atS2i_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20143,6 +18263,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28dateStringForMessagesInGroup2atSSSgSi_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20171,6 +18292,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC7message2atAC0C0C10Foundation9IndexPathV_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20200,13 +18322,15 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -20226,6 +18350,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC0AC0C0Cvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "SetterAccess", "AccessControl", @@ -20279,6 +18404,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20385,6 +18511,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16draftAttachmentsSayAC0C0C10AttachmentCGvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20449,13 +18576,15 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -20476,13 +18605,15 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -20503,13 +18634,15 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -20529,6 +18662,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC24remainingAttachmentSlotsSivp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20570,6 +18704,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16canAddAttachmentSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20611,6 +18746,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC07canSendC0Sbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20647,51 +18783,38 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC04sendC0yyF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC04sendC0yyF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC04sendC0yyYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC04sendC0yyYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", "name": "getGreetingImage", - "printedName": "getGreetingImage(completion:)", + "printedName": "getGreetingImage()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIImage) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ] + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC16getGreetingImage10completionyySo7UIImageCc_tF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16getGreetingImage10completionyySo7UIImageCc_tF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC16getGreetingImageSo7UIImageCyYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16getGreetingImageSo7UIImageCyYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -20701,8 +18824,17 @@ "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", @@ -20712,12 +18844,14 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC15getProfilePhoto3fory10Foundation9IndexPathV_tF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15getProfilePhoto3fory10Foundation9IndexPathV_tF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC15getProfilePhoto3forSo7UIImageCSg10Foundation9IndexPathV_tYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15getProfilePhoto3forSo7UIImageCSg10Foundation9IndexPathV_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -21524,6 +19658,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -21895,6 +20043,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Hashable", @@ -22131,6 +20293,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Decodable", @@ -22201,6 +20377,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -22929,6 +21119,20 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -22992,6 +21196,20 @@ "isFromExtension": true, "hasMissingDesignatedInitializers": true, "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -23008,9 +21226,40 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] }, { "kind": "TypeDecl", @@ -23196,6 +21445,20 @@ "AccessControl" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -23223,6 +21486,13 @@ "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, @@ -23267,13 +21537,121 @@ ] }, { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "kind": "TypeDecl", + "name": "GlassDialogButton", + "printedName": "GlassDialogButton", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)GlassDialogButton", + "mangledName": "$s13ApptentiveKit17GlassDialogButtonC", "moduleName": "ApptentiveKit", + "intro_iOS": "26", "declAttributes": [ - "RawDocComment" + "Preconcurrency", + "Custom", + "AccessControl", + "Available", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UIView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } ] }, { @@ -23288,8 +21666,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ @@ -23316,6 +21694,60 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", "name": "Event", @@ -23503,6 +21935,46 @@ "accessorKind": "get" } ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit5EventV11descriptionSSvp", + "mangledName": "$s13ApptentiveKit5EventV11descriptionSSvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit5EventV11descriptionSSvg", + "mangledName": "$s13ApptentiveKit5EventV11descriptionSSvg", + "moduleName": "ApptentiveKit", + "accessorKind": "get" + } + ] } ], "declKind": "Struct", @@ -23514,6 +21986,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "ExpressibleByStringLiteral", @@ -23543,6 +22029,20 @@ "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": "Conformance", "name": "ExpressibleByExtendedGraphemeClusterLiteral", @@ -23565,6 +22065,13 @@ "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, { "kind": "Conformance", "name": "ExpressibleByUnicodeScalarLiteral", @@ -23631,6 +22138,7 @@ "mangledName": "$s13ApptentiveKit20InteractionPresenterCACycfc", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23654,11 +22162,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tKF", - "mangledName": "$s13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tKF", + "usr": "s:13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tYaKF", + "mangledName": "$s13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tYaKF", "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23683,11 +22192,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tKF", - "mangledName": "$s13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tKF", + "usr": "s:13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tYaKF", + "mangledName": "$s13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tYaKF", "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23712,11 +22222,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tKF", - "mangledName": "$s13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tKF", + "usr": "s:13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tYaKF", + "mangledName": "$s13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tYaKF", "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23726,7 +22237,7 @@ { "kind": "Function", "name": "presentTextModal", - "printedName": "presentTextModal(with:completion:)", + "printedName": "presentTextModal(with:)", "children": [ { "kind": "TypeNominal", @@ -23738,54 +22249,25 @@ "name": "DialogViewModel", "printedName": "ApptentiveKit.DialogViewModel", "usr": "s:13ApptentiveKit15DialogViewModelC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result<(), any Swift.Error>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] } ], "declKind": "Func", - "usr": "s:13ApptentiveKit20InteractionPresenterC16presentTextModal4with10completionyAA15DialogViewModelC_ys6ResultOyyts5Error_pGctF", - "mangledName": "$s13ApptentiveKit20InteractionPresenterC16presentTextModal4with10completionyAA15DialogViewModelC_ys6ResultOyyts5Error_pGctF", + "usr": "s:13ApptentiveKit20InteractionPresenterC16presentTextModal4withyAA15DialogViewModelC_tYaKF", + "mangledName": "$s13ApptentiveKit20InteractionPresenterC16presentTextModal4withyAA15DialogViewModelC_tYaKF", "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", "name": "presentViewController", - "printedName": "presentViewController(_:completion:)", + "printedName": "presentViewController(_:)", "children": [ { "kind": "TypeNominal", @@ -23797,40 +22279,15 @@ "name": "UIViewController", "printedName": "UIKit.UIViewController", "usr": "c:objc(cs)UIViewController" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit20InteractionPresenterC21presentViewController_10completionySo06UIViewG0C_yycSgtKF", - "mangledName": "$s13ApptentiveKit20InteractionPresenterC21presentViewController_10completionySo06UIViewG0C_yycSgtKF", + "usr": "s:13ApptentiveKit20InteractionPresenterC21presentViewControlleryySo06UIViewG0CYaKF", + "mangledName": "$s13ApptentiveKit20InteractionPresenterC21presentViewControlleryySo06UIViewG0CYaKF", "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23862,6 +22319,7 @@ "mangledName": "$s13ApptentiveKit20InteractionPresenterC33validatedPresentingViewControllerSo06UIViewH0CSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23911,6 +22369,7 @@ "mangledName": "$s13ApptentiveKit20InteractionPresenterC31messageCenterCurrentlyPresentedSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23958,6 +22417,7 @@ "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -23970,7 +22430,31 @@ "isOpen": true, "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } ] }, { @@ -24140,6 +22624,38 @@ "usr": "s:13ApptentiveKit25InteractionPresenterErrorO26noPresentingViewControlleryA2CmF", "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO26noPresentingViewControlleryA2CmF", "moduleName": "ApptentiveKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InteractionPresenterError", + "printedName": "ApptentiveKit.InteractionPresenterError", + "usr": "s:13ApptentiveKit25InteractionPresenterErrorO" + }, + { + "kind": "TypeNominal", + "name": "InteractionPresenterError", + "printedName": "ApptentiveKit.InteractionPresenterError", + "usr": "s:13ApptentiveKit25InteractionPresenterErrorO" + } + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit25InteractionPresenterErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO2eeoiySbAC_ACtFZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" } ], "declKind": "Enum", @@ -24151,6 +22667,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Error", @@ -24158,12 +22688,26 @@ "usr": "s:s5ErrorP", "mangledName": "$ss5ErrorP" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, { "kind": "Conformance", "name": "Sendable", "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, @@ -24177,16 +22721,6 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "Import", "name": "UIKit", @@ -24257,6 +22791,16 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "PhotosUI", @@ -24264,7 +22808,7 @@ "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ - "RawDocComment" + "Preconcurrency" ] }, { @@ -24301,6 +22845,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -24313,8 +22864,8 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "OSLog", + "printedName": "OSLog", "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ @@ -24326,11 +22877,25 @@ "name": "UIKit", "printedName": "UIKit", "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment" ] }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "TypeDecl", "name": "DialogViewModelDelegate", @@ -24366,6 +22931,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.DialogViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -24387,6 +22955,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.DialogViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" } @@ -24399,7 +22970,24 @@ "sugared_genericSig": "", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + } ] }, { @@ -24415,24 +23003,25 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15DialogViewModelC5titleSSSgvp", - "mangledName": "$s13ApptentiveKit15DialogViewModelC5titleSSSgvp", + "usr": "s:13ApptentiveKit15DialogViewModelC5title10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15DialogViewModelC5title10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24448,21 +23037,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15DialogViewModelC5titleSSSgvg", - "mangledName": "$s13ApptentiveKit15DialogViewModelC5titleSSSgvg", + "usr": "s:13ApptentiveKit15DialogViewModelC5title10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15DialogViewModelC5title10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -24480,24 +23069,25 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15DialogViewModelC7messageSSSgvp", - "mangledName": "$s13ApptentiveKit15DialogViewModelC7messageSSSgvp", + "usr": "s:13ApptentiveKit15DialogViewModelC7message10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15DialogViewModelC7message10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24513,21 +23103,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15DialogViewModelC7messageSSSgvg", - "mangledName": "$s13ApptentiveKit15DialogViewModelC7messageSSSgvg", + "usr": "s:13ApptentiveKit15DialogViewModelC7message10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15DialogViewModelC7message10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -24555,6 +23145,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24612,6 +23203,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24669,6 +23261,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24755,6 +23348,7 @@ "mangledName": "$s13ApptentiveKit15DialogViewModelC5imageAC5ImageOvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24842,6 +23436,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24928,6 +23523,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "ReferenceOwnership", "AccessControl", @@ -25037,6 +23633,7 @@ "mangledName": "$s13ApptentiveKit15DialogViewModelC14buttonSelected2atySi_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -25058,6 +23655,7 @@ "mangledName": "$s13ApptentiveKit15DialogViewModelC6launchyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -25079,6 +23677,7 @@ "mangledName": "$s13ApptentiveKit15DialogViewModelC6cancelyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -25275,6 +23874,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -25404,12 +24017,12 @@ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.DialogViewModel.Image.Type) -> (UIKit.UIImage, Swift.String, ApptentiveKit.DialogViewModel.Image.Layout, CoreGraphics.CGFloat) -> ApptentiveKit.DialogViewModel.Image", + "printedName": "(ApptentiveKit.DialogViewModel.Image.Type) -> (UIKit.UIImage, Swift.String, ApptentiveKit.DialogViewModel.Image.Layout) -> ApptentiveKit.DialogViewModel.Image", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(UIKit.UIImage, Swift.String, ApptentiveKit.DialogViewModel.Image.Layout, CoreGraphics.CGFloat) -> ApptentiveKit.DialogViewModel.Image", + "printedName": "(UIKit.UIImage, Swift.String, ApptentiveKit.DialogViewModel.Image.Layout) -> ApptentiveKit.DialogViewModel.Image", "children": [ { "kind": "TypeNominal", @@ -25420,7 +24033,7 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout, maxHeight: CoreGraphics.CGFloat)", + "printedName": "(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout)", "children": [ { "kind": "TypeNominal", @@ -25439,12 +24052,6 @@ "name": "Layout", "printedName": "ApptentiveKit.DialogViewModel.Image.Layout", "usr": "s:13ApptentiveKit15DialogViewModelC5ImageO6LayoutO" - }, - { - "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" } ] } @@ -25467,8 +24074,8 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit15DialogViewModelC5ImageO6loadedyAESo7UIImageC_SSAE6LayoutO14CoreFoundation7CGFloatVtcAEmF", - "mangledName": "$s13ApptentiveKit15DialogViewModelC5ImageO6loadedyAESo7UIImageC_SSAE6LayoutO12CoreGraphics7CGFloatVtcAEmF", + "usr": "s:13ApptentiveKit15DialogViewModelC5ImageO6loadedyAESo7UIImageC_SSAE6LayoutOtcAEmF", + "mangledName": "$s13ApptentiveKit15DialogViewModelC5ImageO6loadedyAESo7UIImageC_SSAE6LayoutOtcAEmF", "moduleName": "ApptentiveKit" }, { @@ -25707,6 +24314,20 @@ ], "enumRawTypeName": "String", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -25787,6 +24408,20 @@ ], "isFromExtension": true, "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -25923,8 +24558,8 @@ } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvp", - "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvp", + "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyyYbScMYccvp", + "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyyYbScMYccvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", @@ -25959,8 +24594,8 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvg", - "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvg", + "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyyYbScMYccvg", + "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyyYbScMYccvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -26205,6 +24840,20 @@ ], "enumRawTypeName": "String", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -26253,7 +24902,23 @@ "RawDocComment" ], "isFromExtension": true, - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } + ] } ], "declKind": "Class", @@ -26262,9 +24927,33 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { "kind": "Import", @@ -26309,8 +24998,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26389,8 +25079,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26469,8 +25160,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26549,8 +25241,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26637,8 +25330,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26733,8 +25427,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26813,8 +25508,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26893,8 +25589,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26973,8 +25670,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -27053,8 +25751,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -27133,8 +25832,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -27215,6 +25915,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override", "AccessControl", @@ -27242,45 +25943,13 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override", "AccessControl", "RawDocComment" ], "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(frame:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DialogView", - "printedName": "ApptentiveKit.DialogView", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogView" - }, - { - "kind": "TypeNominal", - "name": "CGRect", - "printedName": "CoreFoundation.CGRect", - "usr": "c:@S@CGRect" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)initWithFrame:", - "mangledName": "$s13ApptentiveKit10DialogViewC5frameACSo6CGRectV_tcfc", - "moduleName": "ApptentiveKit", - "overriding": true, - "implicit": true, - "objc_name": "initWithFrame:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override" - ], - "init_kind": "Designated" } ], "declKind": "Class", @@ -27288,6 +25957,7 @@ "mangledName": "$s13ApptentiveKit10DialogViewC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Preconcurrency", "Custom", "AccessControl", "RawDocComment", @@ -27295,12 +25965,27 @@ ], "superclassUsr": "c:objc(cs)UIView", "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, "superclassNames": [ "UIKit.UIView", "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -27370,6 +26055,13 @@ "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, @@ -27450,6 +26142,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "UIKit", @@ -27540,6 +26239,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "TypeDecl", "name": "ApptentiveAuthenticationFailureReason", @@ -28134,6 +26840,20 @@ ], "enumRawTypeName": "Int", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -28373,6 +27093,7 @@ "deprecated": true, "implicit": true, "declAttributes": [ + "Available", "Available" ], "accessorKind": "_modify" @@ -28473,6 +27194,7 @@ "deprecated": true, "implicit": true, "declAttributes": [ + "Available", "Available" ], "accessorKind": "_modify" @@ -28481,8 +27203,8 @@ }, { "kind": "Var", - "name": "baseURL", - "printedName": "baseURL", + "name": "overrideBaseURL", + "printedName": "overrideBaseURL", "children": [ { "kind": "TypeNominal", @@ -28500,16 +27222,14 @@ } ], "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)baseURL", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvp", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)overrideBaseURL", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC15overrideBaseURL10Foundation0F0VSgvp", "moduleName": "ApptentiveKit", - "deprecated": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", "ObjC", - "Available", "RawDocComment" ], "hasStorage": true, @@ -28535,8 +27255,8 @@ } ], "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)baseURL", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvg", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)overrideBaseURL", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC15overrideBaseURL10Foundation0F0VSgvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -28570,8 +27290,130 @@ } ], "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setBaseURL:", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvs", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setOverrideBaseURL:", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC15overrideBaseURL10Foundation0F0VSgvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A13ConfigurationC15overrideBaseURL10Foundation0F0VSgvM", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC15overrideBaseURL10Foundation0F0VSgvM", + "moduleName": "ApptentiveKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "region", + "printedName": "region", + "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)region", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC6regionSSSgvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)region", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC6regionSSSgvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setRegion:", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC6regionSSSgvs", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -28591,8 +27433,8 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvM", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvM", + "usr": "s:13ApptentiveKit0A13ConfigurationC6regionSSSgvM", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC6regionSSSgvM", "moduleName": "ApptentiveKit", "deprecated": true, "implicit": true, @@ -28851,354 +27693,6 @@ } ] }, - { - "kind": "Var", - "name": "appID", - "printedName": "appID", - "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)appID", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "ObjC", - "Available", - "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)appID", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setAppID:", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A13ConfigurationC5appIDSSSgvM", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "showInfoButton", - "printedName": "showInfoButton", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)showInfoButton", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "ObjC", - "Available", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)showInfoButton", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setShowInfoButton:", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvM", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "surveyTermsAndConditions", - "printedName": "surveyTermsAndConditions", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", - "children": [ - { - "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)surveyTermsAndConditions", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "ObjC", - "Available", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", - "children": [ - { - "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)surveyTermsAndConditions", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", - "children": [ - { - "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setSurveyTermsAndConditions:", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvM", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" - } - ] - }, { "kind": "Constructor", "name": "init", @@ -29323,6 +27817,20 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -29376,35 +27884,35 @@ }, { "kind": "TypeDecl", - "name": "ApptentivePushProvider", - "printedName": "ApptentivePushProvider", + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveLogLevel", "children": [ { "kind": "Var", - "name": "apptentive", - "printedName": "apptentive", + "name": "undefined", + "printedName": "undefined", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider", + "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentivePushProvider.Type", + "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ] } @@ -29412,8 +27920,8 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderApptentive", - "mangledName": "$s13ApptentiveKit0A12PushProviderO10apptentiveyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelUndefined", + "mangledName": "$s13ApptentiveKit0A8LogLevelO9undefinedyA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", @@ -29423,30 +27931,30 @@ }, { "kind": "Var", - "name": "urbanAirship", - "printedName": "urbanAirship", + "name": "crit", + "printedName": "crit", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider", + "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentivePushProvider.Type", + "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ] } @@ -29454,8 +27962,8 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderUrbanAirship", - "mangledName": "$s13ApptentiveKit0A12PushProviderO12urbanAirshipyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelCrit", + "mangledName": "$s13ApptentiveKit0A8LogLevelO4crityA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", @@ -29465,30 +27973,30 @@ }, { "kind": "Var", - "name": "amazonSNS", - "printedName": "amazonSNS", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider", + "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentivePushProvider.Type", + "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ] } @@ -29496,8 +28004,8 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderAmazonSNS", - "mangledName": "$s13ApptentiveKit0A12PushProviderO9amazonSNSyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelError", + "mangledName": "$s13ApptentiveKit0A8LogLevelO5erroryA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", @@ -29507,30 +28015,30 @@ }, { "kind": "Var", - "name": "parse", - "printedName": "parse", + "name": "warn", + "printedName": "warn", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider", + "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentivePushProvider.Type", + "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ] } @@ -29538,8 +28046,8 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderParse", - "mangledName": "$s13ApptentiveKit0A12PushProviderO5parseyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelWarn", + "mangledName": "$s13ApptentiveKit0A8LogLevelO4warnyA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", @@ -29547,138 +28055,10 @@ ], "fixedbinaryorder": 3 }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.ApptentivePushProvider?", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A12PushProviderO8rawValueACSgSi_tcfc", - "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueACSgSi_tcfc", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit0A12PushProviderO8rawValueSivp", - "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueSivp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A12PushProviderO8rawValueSivg", - "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueSivg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider", - "mangledName": "$s13ApptentiveKit0A12PushProviderO", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "ObjC", - "Available" - ], - "enumRawTypeName": "Int", - "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": "TypeDecl", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveLogLevel", - "children": [ { "kind": "Var", - "name": "undefined", - "printedName": "undefined", + "name": "info", + "printedName": "info", "children": [ { "kind": "TypeFunc", @@ -29708,19 +28088,19 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelUndefined", - "mangledName": "$s13ApptentiveKit0A8LogLevelO9undefinedyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelInfo", + "mangledName": "$s13ApptentiveKit0A8LogLevelO4infoyA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", "ObjC" ], - "fixedbinaryorder": 0 + "fixedbinaryorder": 4 }, { "kind": "Var", - "name": "crit", - "printedName": "crit", + "name": "debug", + "printedName": "debug", "children": [ { "kind": "TypeFunc", @@ -29750,19 +28130,19 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelCrit", - "mangledName": "$s13ApptentiveKit0A8LogLevelO4crityA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelDebug", + "mangledName": "$s13ApptentiveKit0A8LogLevelO5debugyA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", "ObjC" ], - "fixedbinaryorder": 1 + "fixedbinaryorder": 5 }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "verbose", + "printedName": "verbose", "children": [ { "kind": "TypeFunc", @@ -29792,176 +28172,8 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelError", - "mangledName": "$s13ApptentiveKit0A8LogLevelO5erroryA2CmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 2 - }, - { - "kind": "Var", - "name": "warn", - "printedName": "warn", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelWarn", - "mangledName": "$s13ApptentiveKit0A8LogLevelO4warnyA2CmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 3 - }, - { - "kind": "Var", - "name": "info", - "printedName": "info", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelInfo", - "mangledName": "$s13ApptentiveKit0A8LogLevelO4infoyA2CmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 4 - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelDebug", - "mangledName": "$s13ApptentiveKit0A8LogLevelO5debugyA2CmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 5 - }, - { - "kind": "Var", - "name": "verbose", - "printedName": "verbose", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelVerbose", - "mangledName": "$s13ApptentiveKit0A8LogLevelO7verboseyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelVerbose", + "mangledName": "$s13ApptentiveKit0A8LogLevelO7verboseyA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", @@ -30054,6 +28266,20 @@ ], "enumRawTypeName": "UInt", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -30092,106 +28318,331 @@ } ] }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "CoreTelephony", + "printedName": "CoreTelephony", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "TermsAndConditions", - "printedName": "TermsAndConditions", + "name": "DialogButton", + "printedName": "DialogButton", "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(bodyText:linkText:linkURL:)", + "kind": "Var", + "name": "titleFont", + "printedName": "titleFont", "children": [ { "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - }, + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" + } + ], + "declKind": "Var", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)titleFont", + "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "HasInitialValue", + "Preconcurrency", + "Custom", + "HasStorage", + "Dynamic", + "AccessControl", + "ObjC", + "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": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)titleFont", + "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setTitleFont:", + "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit18TermsAndConditionsC8bodyText04linkG00H3URLACSSSg_AG10Foundation0I0VSgtcfc", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyText04linkG00H3URLACSSSg_AG10Foundation0I0VSgtcfc", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "bodyText", - "printedName": "bodyText", + "name": "cornerRadius", + "printedName": "cornerRadius", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvp", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvp", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)cornerRadius", + "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvp", "moduleName": "ApptentiveKit", "declAttributes": [ - "Final", + "HasInitialValue", + "Preconcurrency", + "Custom", "HasStorage", - "AccessControl" + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -30201,61 +28652,78 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvg", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvg", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)cornerRadius", + "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setCornerRadius:", + "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } ] }, { "kind": "Var", - "name": "linkText", - "printedName": "linkText", + "name": "borderWidth", + "printedName": "borderWidth", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvp", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvp", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderWidth", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvp", "moduleName": "ApptentiveKit", "declAttributes": [ - "Final", + "HasInitialValue", + "Preconcurrency", + "Custom", "HasStorage", - "AccessControl" + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -30265,62 +28733,160 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvg", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvg", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderWidth", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderWidth:", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } ] }, { "kind": "Var", - "name": "linkURL", - "printedName": "linkURL", + "name": "borderColor", + "printedName": "borderColor", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Var", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderColor", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "HasInitialValue", + "Preconcurrency", + "Custom", + "HasStorage", + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderColor", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderColor:", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "intrinsicContentSize", + "printedName": "intrinsicContentSize", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvp", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvp", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)intrinsicContentSize", + "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvp", "moduleName": "ApptentiveKit", + "overriding": true, + "objc_name": "intrinsicContentSize", "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "AccessControl", + "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -30329,73 +28895,118 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvg", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvg", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)intrinsicContentSize", + "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvg", "moduleName": "ApptentiveKit", - "implicit": true, + "overriding": true, + "objc_name": "intrinsicContentSize", "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", "children": [ { "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions(im)init", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsCACycfc", + "declKind": "Func", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)layoutSubviews", + "mangledName": "$s13ApptentiveKit12DialogButtonC14layoutSubviewsyyF", "moduleName": "ApptentiveKit", "overriding": true, - "implicit": true, - "objc_name": "init", + "objc_name": "layoutSubviews", "declAttributes": [ "Dynamic", "ObjC", - "Override" + "Preconcurrency", + "Custom", + "Override", + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didMoveToWindow", + "printedName": "didMoveToWindow()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)didMoveToWindow", + "mangledName": "$s13ApptentiveKit12DialogButtonC15didMoveToWindowyyF", + "moduleName": "ApptentiveKit", + "overriding": true, + "objc_name": "didMoveToWindow", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton", + "mangledName": "$s13ApptentiveKit12DialogButtonC", "moduleName": "ApptentiveKit", - "deprecated": true, "declAttributes": [ + "Preconcurrency", + "Custom", "AccessControl", - "Available", + "RawDocComment", "ObjC" ], - "superclassUsr": "c:objc(cs)NSObject", + "superclassUsr": "c:objc(cs)UIButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, "superclassNames": [ + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -30444,1052 +29055,1116 @@ "printedName": "CustomDebugStringConvertible", "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ApptentiveStyle", - "printedName": "ApptentiveStyle", - "children": [ + }, { - "kind": "Function", - "name": "font", - "printedName": "font(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A5StyleP4font3forSo6UIFontCAA0aC10IdentifierO_tF", - "mangledName": "$s13ApptentiveKit0A5StyleP4font3forSo6UIFontCAA0aC10IdentifierO_tF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveStyle>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { - "kind": "Function", - "name": "color", - "printedName": "color(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A5StyleP5color3forSo7UIColorCAA0aC10IdentifierO_tF", - "mangledName": "$s13ApptentiveKit0A5StyleP5color3forSo7UIColorCAA0aC10IdentifierO_tF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveStyle>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } - ], - "declKind": "Protocol", - "usr": "s:13ApptentiveKit0A5StyleP", - "mangledName": "$s13ApptentiveKit0A5StyleP", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" ] }, { "kind": "TypeDecl", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveStyleIdentifier", - "children": [ + "name": "DismissButton", + "printedName": "DismissButton", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)DismissButton", + "mangledName": "$s13ApptentiveKit13DismissButtonC", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ApptentiveKit.DialogButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ { - "kind": "Var", - "name": "body", - "printedName": "body", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO4bodyyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO4bodyyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { - "kind": "Var", - "name": "headerTitle", - "printedName": "headerTitle", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO11headerTitleyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO11headerTitleyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { - "kind": "Var", - "name": "headerMessage", - "printedName": "headerMessage", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO13headerMessageyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13headerMessageyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "messageDate", - "printedName": "messageDate", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO11messageDateyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO11messageDateyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "Var", - "name": "messageSender", - "printedName": "messageSender", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO13messageSenderyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13messageSenderyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { - "kind": "Var", - "name": "messageStatus", - "printedName": "messageStatus", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO13messageStatusyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13messageStatusyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" }, { - "kind": "Var", - "name": "messageCenterStatus", - "printedName": "messageCenterStatus", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO19messageCenterStatusyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO19messageCenterStatusyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" }, { - "kind": "Var", - "name": "surveyInstructions", - "printedName": "surveyInstructions", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO18surveyInstructionsyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO18surveyInstructionsyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { - "kind": "Var", - "name": "doneButton", - "printedName": "doneButton", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO10doneButtonyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO10doneButtonyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { - "kind": "Var", - "name": "button", - "printedName": "button", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO6buttonyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO6buttonyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { - "kind": "Var", - "name": "submitButton", - "printedName": "submitButton", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO12submitButtonyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO12submitButtonyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" }, { - "kind": "Var", - "name": "textInput", - "printedName": "textInput", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO9textInputyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9textInputyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { - "kind": "Var", - "name": "headerBackground", - "printedName": "headerBackground", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO16headerBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO16headerBackgroundyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "InteractionButton", + "printedName": "InteractionButton", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)InteractionButton", + "mangledName": "$s13ApptentiveKit17InteractionButtonC", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ApptentiveKit.DialogButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { - "kind": "Var", - "name": "footerBackground", - "printedName": "footerBackground", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO16footerBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO16footerBackgroundyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "YesButton", + "printedName": "YesButton", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)YesButton", + "mangledName": "$s13ApptentiveKit9YesButtonC", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ApptentiveKit.DialogButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoButton", + "printedName": "NoButton", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)NoButton", + "mangledName": "$s13ApptentiveKit8NoButtonC", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ApptentiveKit.DialogButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "Var", - "name": "failure", - "printedName": "failure", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO7failureyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO7failureyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { - "kind": "Var", - "name": "separator", - "printedName": "separator", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO9separatoryA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9separatoryA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "Import", + "name": "CryptoKit", + "printedName": "CryptoKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "MobileCoreServices", + "printedName": "MobileCoreServices", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "QuickLookThumbnailing", + "printedName": "QuickLookThumbnailing", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UniformTypeIdentifiers", + "printedName": "UniformTypeIdentifiers", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "CoreTelephony", + "printedName": "CoreTelephony", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "TypeDecl", + "name": "ApptentiveNavigationController", + "printedName": "ApptentiveNavigationController", + "children": [ { "kind": "Var", - "name": "background", - "printedName": "background", + "name": "preferredStatusBarStyle", + "printedName": "preferredStatusBarStyle", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "UIStatusBarStyle", + "printedName": "UIKit.UIStatusBarStyle", + "usr": "c:@E@UIStatusBarStyle" } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO10backgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO10backgroundyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "collectionBackground", - "printedName": "collectionBackground", - "children": [ + "declKind": "Var", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(py)preferredStatusBarStyle", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvp", + "moduleName": "ApptentiveKit", + "overriding": true, + "objc_name": "preferredStatusBarStyle", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] + "name": "UIStatusBarStyle", + "printedName": "UIKit.UIStatusBarStyle", + "usr": "c:@E@UIStatusBarStyle" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)preferredStatusBarStyle", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvg", + "moduleName": "ApptentiveKit", + "overriding": true, + "objc_name": "preferredStatusBarStyle", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO20collectionBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO20collectionBackgroundyA2CmF", - "moduleName": "ApptentiveKit" + ] }, { "kind": "Var", - "name": "textInputBackground", - "printedName": "textInputBackground", + "name": "prefersLargeHeader", + "printedName": "prefersLargeHeader", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO19textInputBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO19textInputBackgroundyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "textInputPlaceholder", - "printedName": "textInputPlaceholder", - "children": [ + "declKind": "Var", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cpy)prefersLargeHeader", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO20textInputPlaceholderyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO20textInputPlaceholderyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "messageBackground", - "printedName": "messageBackground", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)prefersLargeHeader", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO17messageBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO17messageBackgroundyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "replyBackground", - "printedName": "replyBackground", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)setPrefersLargeHeader:", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO15replyBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO15replyBackgroundyA2CmF", - "moduleName": "ApptentiveKit" + ] }, { - "kind": "Var", - "name": "contextBackground", - "printedName": "contextBackground", + "kind": "Constructor", + "name": "init", + "printedName": "init(navigationBarClass:toolbarClass:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", + "kind": "TypeNominal", + "name": "ApptentiveNavigationController", + "printedName": "ApptentiveKit.ApptentiveNavigationController", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any AnyObject.Type)?", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, + "name": "ExistentialMetatype", + "printedName": "any AnyObject.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any AnyObject.Type)?", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", + "name": "ExistentialMetatype", + "printedName": "any AnyObject.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" + "name": "ProtocolComposition", + "printedName": "AnyObject" } ] } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO17contextBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO17contextBackgroundyA2CmF", - "moduleName": "ApptentiveKit" + "declKind": "Constructor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNavigationBarClass:toolbarClass:", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18navigationBarClass07toolbarG0ACyXlXpSg_AFtcfc", + "moduleName": "ApptentiveKit", + "overriding": true, + "implicit": true, + "intro_iOS": "5.0", + "objc_name": "initWithNavigationBarClass:toolbarClass:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "Available" + ], + "init_kind": "Designated" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(rootViewController:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" + "name": "ApptentiveNavigationController", + "printedName": "ApptentiveKit.ApptentiveNavigationController", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" }, { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO2eeoiySbAC_ACtFZ", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO2eeoiySbAC_ACtFZ", + "declKind": "Constructor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithRootViewController:", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC08rootViewD0ACSo06UIViewD0C_tcfc", "moduleName": "ApptentiveKit", - "static": true, + "overriding": true, "implicit": true, - "funcSelfKind": "NonMutating" + "objc_name": "initWithRootViewController:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "Constructor", + "name": "init", + "printedName": "init(nibName:bundle:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO9hashValueSivp", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9hashValueSivp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ + "name": "ApptentiveNavigationController", + "printedName": "ApptentiveKit.ApptentiveNavigationController", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO9hashValueSivg", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9hashValueSivg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" + "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" } - ] + ], + "declKind": "Constructor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNibName:bundle:", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", + "moduleName": "ApptentiveKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithNibName:bundle:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override" + ], + "init_kind": "Designated" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ApptentiveKit.ApptentiveNavigationController?", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveNavigationController", + "printedName": "ApptentiveKit.ApptentiveNavigationController", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO4hash4intoys6HasherVz_tF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO4hash4intoys6HasherVz_tF", + "declKind": "Constructor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithCoder:", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC5coderACSgSo7NSCoderC_tcfc", "moduleName": "ApptentiveKit", + "overriding": true, "implicit": true, - "funcSelfKind": "NonMutating" + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Required" + ], + "init_kind": "Designated" } ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC", "moduleName": "ApptentiveKit", - "deprecated": true, "declAttributes": [ + "Preconcurrency", + "Custom", "AccessControl", - "Available" + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UINavigationController", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UINavigationController", + "UIKit.UIViewController", + "UIKit.UIResponder", + "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -31503,232 +30178,227 @@ "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": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "SwiftUI", + "printedName": "SwiftUI", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "DeveloperToolsSupport", + "printedName": "DeveloperToolsSupport", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "TypeDecl", - "name": "ApptentiveStyleSheet", - "printedName": "ApptentiveStyleSheet", - "children": [ + "name": "URLSession", + "printedName": "URLSession", + "declKind": "Class", + "usr": "c:objc(cs)NSURLSession", + "moduleName": "Foundation", + "isOpen": true, + "intro_iOS": "7.0", + "objc_name": "NSURLSession", + "declAttributes": [ + "Available", + "ObjC", + "SynthesizedProtocol", + "NonSendable", + "Sendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ { - "kind": "Function", - "name": "font", - "printedName": "font(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A10StyleSheetC4font3forSo6UIFontCAA0aC10IdentifierO_tF", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC4font3forSo6UIFontCAA0aC10IdentifierO_tF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { - "kind": "Function", - "name": "color", - "printedName": "color(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A10StyleSheetC5color3forSo7UIColorCAA0aC10IdentifierO_tF", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC5color3forSo7UIColorCAA0aC10IdentifierO_tF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(contentsOf:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.ApptentiveStyleSheet?", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleSheet", - "printedName": "ApptentiveKit.ApptentiveStyleSheet", - "usr": "s:13ApptentiveKit0A10StyleSheetC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A10StyleSheetC10contentsOfACSg10Foundation3URLV_tcfc", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC10contentsOfACSg10Foundation3URLV_tcfc", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Convenience", - "AccessControl", - "Available" - ], - "init_kind": "Convenience" + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { - "kind": "Var", - "name": "fontFamily", - "printedName": "fontFamily", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasStorage", - "AccessControl", - "Available" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvg", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit0A10StyleSheetC10fontFamilySSvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" - } - ] + "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": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Logger", + "printedName": "Logger", + "children": [ { "kind": "Var", - "name": "lightFaceAttribute", - "printedName": "lightFaceAttribute", + "name": "default", + "printedName": "default", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvp", + "usr": "s:2os6LoggerV13ApptentiveKitE7defaultACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7defaultACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -31738,113 +30408,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvg", + "usr": "s:2os6LoggerV13ApptentiveKitE7defaultACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7defaultACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": 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:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "regularFaceAttribute", - "printedName": "regularFaceAttribute", + "name": "engagement", + "printedName": "engagement", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvp", + "usr": "s:2os6LoggerV13ApptentiveKitE10engagementACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE10engagementACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -31854,113 +30458,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvg", + "usr": "s:2os6LoggerV13ApptentiveKitE10engagementACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE10engagementACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": 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:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "mediumFaceAttribute", - "printedName": "mediumFaceAttribute", + "name": "interaction", + "printedName": "interaction", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvp", + "usr": "s:2os6LoggerV13ApptentiveKitE11interactionACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE11interactionACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -31970,113 +30508,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvg", + "usr": "s:2os6LoggerV13ApptentiveKitE11interactionACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE11interactionACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": 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:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "boldFaceAttribute", - "printedName": "boldFaceAttribute", + "name": "network", + "printedName": "network", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvp", + "usr": "s:2os6LoggerV13ApptentiveKitE7networkACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7networkACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32086,104 +30558,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvg", + "usr": "s:2os6LoggerV13ApptentiveKitE7networkACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7networkACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": 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:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "primaryColor", - "printedName": "primaryColor", + "name": "payload", + "printedName": "payload", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvp", + "usr": "s:2os6LoggerV13ApptentiveKitE7payloadACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7payloadACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32193,88 +30608,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvg", + "usr": "s:2os6LoggerV13ApptentiveKitE7payloadACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7payloadACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondaryColor", - "printedName": "secondaryColor", + "name": "targeting", + "printedName": "targeting", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvp", + "usr": "s:2os6LoggerV13ApptentiveKitE9targetingACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE9targetingACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32284,88 +30658,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvg", + "usr": "s:2os6LoggerV13ApptentiveKitE9targetingACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE9targetingACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "failureColor", - "printedName": "failureColor", + "name": "messages", + "printedName": "messages", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvp", + "usr": "s:2os6LoggerV13ApptentiveKitE8messagesACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE8messagesACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32375,88 +30708,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvM", + "usr": "s:2os6LoggerV13ApptentiveKitE8messagesACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE8messagesACvgZ", "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "backgroundColor", - "printedName": "backgroundColor", + "name": "attachments", + "printedName": "attachments", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvp", + "usr": "s:2os6LoggerV13ApptentiveKitE11attachmentsACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE11attachmentsACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32466,88 +30758,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvg", + "usr": "s:2os6LoggerV13ApptentiveKitE11attachmentsACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE11attachmentsACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "separatorColor", - "printedName": "separatorColor", + "name": "resources", + "printedName": "resources", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvp", + "usr": "s:2os6LoggerV13ApptentiveKitE9resourcesACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE9resourcesACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32557,1077 +30808,1288 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvg", + "usr": "s:2os6LoggerV13ApptentiveKitE9resourcesACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE9resourcesACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Struct", + "usr": "s:2os6LoggerV", + "mangledName": "$s2os6LoggerV", + "moduleName": "os", + "intro_Macosx": "11.0", + "intro_iOS": "14.0", + "intro_tvOS": "14.0", + "intro_watchOS": "7.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "CustomDataCompatible", + "printedName": "CustomDataCompatible", + "usr": "s:13ApptentiveKit20CustomDataCompatibleP", + "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" + }, + { + "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": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" }, { - "kind": "Var", - "name": "collectionBackgroundColor", - "printedName": "collectionBackgroundColor", + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", "children": [ { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] } ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasStorage", - "AccessControl", - "Available" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "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": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:SK", + "mangledName": "$sSK" }, { - "kind": "Var", - "name": "placeholderColor", - "printedName": "placeholderColor", + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", "children": [ { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasStorage", - "AccessControl", - "Available" - ], - "hasStorage": true, - "accessors": [ + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:ST", + "mangledName": "$sST" }, { - "kind": "Var", - "name": "sizeAdjustment", - "printedName": "sizeAdjustment", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", "children": [ { - "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasStorage", - "AccessControl", - "Available" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:Sy", + "mangledName": "$sSy" }, { - "kind": "Function", - "name": "setFontDescriptor", - "printedName": "setFontDescriptor(_:forStyle:)", + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIFontDescriptor", - "printedName": "UIKit.UIFontDescriptor", - "usr": "c:objc(cs)UIFontDescriptor" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A10StyleSheetC17setFontDescriptor_03forC0ySo06UIFontG0C_SStF", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC17setFontDescriptor_03forC0ySo06UIFontG0C_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" }, { - "kind": "Function", - "name": "setColor", - "printedName": "setColor(_:forStyle:)", + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A10StyleSheetC8setColor_03forC0ySo7UIColorC_SStF", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC8setColor_03forC0ySo7UIColorC_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:13ApptentiveKit0A10StyleSheetC", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, { "kind": "Conformance", - "name": "ApptentiveStyle", - "printedName": "ApptentiveStyle", - "usr": "s:13ApptentiveKit0A5StyleP", - "mangledName": "$s13ApptentiveKit0A5StyleP" - } - ] - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "CoreTelephony", - "printedName": "CoreTelephony", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Transferable", + "printedName": "Transferable", + "children": [ + { + "kind": "TypeWitness", + "name": "Representation", + "printedName": "Representation", + "children": [ + { + "kind": "TypeNominal", + "name": "OpaqueTypeArchetype", + "printedName": "some CoreTransferable.TransferRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "TransferRepresentation", + "printedName": "CoreTransferable.TransferRepresentation", + "usr": "s:16CoreTransferable22TransferRepresentationP" + } + ] + } + ] + } + ], + "usr": "s:16CoreTransferable0B0P", + "mangledName": "$s16CoreTransferable0B0P" + } ] }, { "kind": "TypeDecl", - "name": "DialogButton", - "printedName": "DialogButton", - "children": [ + "name": "Double", + "printedName": "Double", + "declKind": "Struct", + "usr": "s:Sd", + "mangledName": "$sSd", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ { - "kind": "Var", - "name": "titleFont", - "printedName": "titleFont", + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "CustomDataCompatible", + "printedName": "CustomDataCompatible", + "usr": "s:13ApptentiveKit20CustomDataCompatibleP", + "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" + }, + { + "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": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "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": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", "children": [ { - "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)titleFont", - "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "Dynamic", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", "children": [ { "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)titleFont", - "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setTitleFont:", - "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "set" + ] } - ] + ], + "usr": "s:SB", + "mangledName": "$sSB" }, { - "kind": "Var", - "name": "cornerRadius", - "printedName": "cornerRadius", + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", "children": [ { - "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] } ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)cornerRadius", - "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "Dynamic", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)cornerRadius", - "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - }, + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setCornerRadius:", - "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "set" + ] } - ] + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" }, { - "kind": "Var", - "name": "borderWidth", - "printedName": "borderWidth", + "kind": "Conformance", + "name": "_ExpressibleByBuiltinFloatLiteral", + "printedName": "_ExpressibleByBuiltinFloatLiteral", + "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", + "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" + }, + { + "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": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", "children": [ { - "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] } ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderWidth", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "Dynamic", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderWidth", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Double.SIMD2Storage", + "usr": "s:Sd12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Double.SIMD4Storage", + "usr": "s:Sd12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Double.SIMD8Storage", + "usr": "s:Sd12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Double.SIMD16Storage", + "usr": "s:Sd13SIMD16StorageV" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "SIMD32Storage", + "printedName": "Swift.Double.SIMD32Storage", + "usr": "s:Sd13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "SIMD64Storage", + "printedName": "Swift.Double.SIMD64Storage", + "usr": "s:Sd13SIMD64StorageV" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderWidth:", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "set" + ] } - ] + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" }, { - "kind": "Var", - "name": "borderColor", - "printedName": "borderColor", + "kind": "Conformance", + "name": "BitwiseCopyable", + "printedName": "BitwiseCopyable", + "usr": "s:s15BitwiseCopyableP", + "mangledName": "$ss15BitwiseCopyableP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", "children": [ { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderColor", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "Dynamic", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderColor", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - }, + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderColor:", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "set" + ] } - ] + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { - "kind": "Var", - "name": "intrinsicContentSize", - "printedName": "intrinsicContentSize", + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", "children": [ { - "kind": "TypeNominal", - "name": "CGSize", - "printedName": "CoreFoundation.CGSize", - "usr": "c:@S@CGSize" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)intrinsicContentSize", - "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvp", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "intrinsicContentSize", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "CGSize", - "printedName": "CoreFoundation.CGSize", - "usr": "c:@S@CGSize" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)intrinsicContentSize", - "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvg", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "intrinsicContentSize", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" + ] } - ] + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" }, { - "kind": "Function", - "name": "layoutSubviews", - "printedName": "layoutSubviews()", + "kind": "Conformance", + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" + }, + { + "kind": "Conformance", + "name": "Animatable", + "printedName": "Animatable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "AnimatableData", + "printedName": "AnimatableData", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] } ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)layoutSubviews", - "mangledName": "$s13ApptentiveKit12DialogButtonC14layoutSubviewsyyF", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "layoutSubviews", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "usr": "s:7SwiftUI10AnimatableP", + "mangledName": "$s7SwiftUI10AnimatableP" }, { - "kind": "Function", - "name": "didMoveToWindow", - "printedName": "didMoveToWindow()", + "kind": "Conformance", + "name": "AtomicRepresentable", + "printedName": "AtomicRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "AtomicRepresentation", + "printedName": "AtomicRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "_Atomic64BitStorage", + "printedName": "Synchronization._Atomic64BitStorage", + "usr": "s:15Synchronization19_Atomic64BitStorageV" + } + ] } ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)didMoveToWindow", - "mangledName": "$s13ApptentiveKit12DialogButtonC15didMoveToWindowyyF", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "didMoveToWindow", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "usr": "s:15Synchronization19AtomicRepresentableP", + "mangledName": "$s15Synchronization19AtomicRepresentableP" } - ], - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton", - "mangledName": "$s13ApptentiveKit12DialogButtonC", - "moduleName": "ApptentiveKit", + ] + }, + { + "kind": "TypeDecl", + "name": "Float", + "printedName": "Float", + "declKind": "Struct", + "usr": "s:Sf", + "mangledName": "$sSf", + "moduleName": "Swift", "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)UIButton", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIButton", - "UIKit.UIControl", - "UIKit.UIView", - "UIKit.UIResponder", - "ObjectiveC.NSObject" + "Frozen" ], + "isExternal": true, "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "CustomDataCompatible", + "printedName": "CustomDataCompatible", + "usr": "s:13ApptentiveKit20CustomDataCompatibleP", + "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" + }, + { + "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": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" }, { "kind": "Conformance", @@ -33638,17 +32100,10 @@ }, { "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" + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" }, { "kind": "Conformance", @@ -33666,115 +32121,182 @@ }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" }, { "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "usr": "s:SB", + "mangledName": "$sSB" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DismissButton", - "printedName": "DismissButton", - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)DismissButton", - "mangledName": "$s13ApptentiveKit13DismissButtonC", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ApptentiveKit.DialogButton", - "UIKit.UIButton", - "UIKit.UIControl", - "UIKit.UIView", - "UIKit.UIResponder", - "ObjectiveC.NSObject" - ], - "conformances": [ + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "_ExpressibleByBuiltinFloatLiteral", + "printedName": "_ExpressibleByBuiltinFloatLiteral", + "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", + "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" }, { "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" }, { "kind": "Conformance", @@ -33782,167 +32304,316 @@ "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "InteractionButton", - "printedName": "InteractionButton", - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)InteractionButton", - "mangledName": "$s13ApptentiveKit17InteractionButtonC", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ApptentiveKit.DialogButton", - "UIKit.UIButton", - "UIKit.UIControl", - "UIKit.UIView", - "UIKit.UIResponder", - "ObjectiveC.NSObject" - ], - "conformances": [ + }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Float.SIMD2Storage", + "usr": "s:Sf12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Float.SIMD4Storage", + "usr": "s:Sf12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Float.SIMD8Storage", + "usr": "s:Sf12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Float.SIMD16Storage", + "usr": "s:Sf13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Float.SIMD32Storage", + "usr": "s:Sf13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Float.SIMD64Storage", + "usr": "s:Sf13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + "name": "BitwiseCopyable", + "printedName": "BitwiseCopyable", + "usr": "s:s15BitwiseCopyableP", + "mangledName": "$ss15BitwiseCopyableP" }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, { "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" }, { "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "AtomicRepresentable", + "printedName": "AtomicRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "AtomicRepresentation", + "printedName": "AtomicRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "_Atomic32BitStorage", + "printedName": "Synchronization._Atomic32BitStorage", + "usr": "s:15Synchronization19_Atomic32BitStorageV" + } + ] + } + ], + "usr": "s:15Synchronization19AtomicRepresentableP", + "mangledName": "$s15Synchronization19AtomicRepresentableP" } ] }, { "kind": "TypeDecl", - "name": "YesButton", - "printedName": "YesButton", - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)YesButton", - "mangledName": "$s13ApptentiveKit9YesButtonC", - "moduleName": "ApptentiveKit", + "name": "Int", + "printedName": "Int", + "declKind": "Struct", + "usr": "s:Si", + "mangledName": "$sSi", + "moduleName": "Swift", "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ApptentiveKit.DialogButton", - "UIKit.UIButton", - "UIKit.UIControl", - "UIKit.UIView", - "UIKit.UIResponder", - "ObjectiveC.NSObject" + "Frozen" ], + "isExternal": true, "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "SignedInteger", + "printedName": "SignedInteger", + "usr": "s:SZ", + "mangledName": "$sSZ" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ + { + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", + "children": [ + { + "kind": "TypeNominal", + "name": "Words", + "printedName": "Swift.Int.Words", + "usr": "s:Si5WordsV" + } + ] + } + ], + "usr": "s:Sz", + "mangledName": "$sSz" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" }, { "kind": "Conformance", @@ -33953,122 +32624,174 @@ }, { "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "CustomDataCompatible", + "printedName": "CustomDataCompatible", + "usr": "s:13ApptentiveKit20CustomDataCompatibleP", + "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "NoButton", - "printedName": "NoButton", - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)NoButton", - "mangledName": "$s13ApptentiveKit8NoButtonC", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ApptentiveKit.DialogButton", - "UIKit.UIButton", - "UIKit.UIControl", - "UIKit.UIView", - "UIKit.UIResponder", - "ObjectiveC.NSObject" - ], - "conformances": [ + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" }, { "kind": "Conformance", @@ -34076,1417 +32799,705 @@ "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "MobileCoreServices", - "printedName": "MobileCoreServices", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "QuickLookThumbnailing", - "printedName": "QuickLookThumbnailing", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Sysctl", - "printedName": "Sysctl", - "children": [ + }, { - "kind": "TypeDecl", - "name": "Error", - "printedName": "Error", - "children": [ - { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Sysctl.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO7unknownyA2EmF", - "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO7unknownyA2EmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "malformedUTF8", - "printedName": "malformedUTF8", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Sysctl.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO13malformedUTF8yA2EmF", - "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO13malformedUTF8yA2EmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "invalidSize", - "printedName": "invalidSize", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Sysctl.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO11invalidSizeyA2EmF", - "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO11invalidSizeyA2EmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "posixError", - "printedName": "posixError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> (Darwin.POSIXErrorCode) -> ApptentiveKit.Sysctl.Error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Darwin.POSIXErrorCode) -> ApptentiveKit.Sysctl.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "POSIXErrorCode", - "printedName": "Darwin.POSIXErrorCode", - "usr": "c:@M@Darwin@E@POSIXErrorCode" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Sysctl.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO05posixD0yAE6Darwin14POSIXErrorCodeOcAEmF", - "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO05posixD0yAE6Darwin14POSIXErrorCodeOcAEmF", - "moduleName": "ApptentiveKit" - } - ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO", - "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "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": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" }, { - "kind": "Function", - "name": "data", - "printedName": "data(for:)", + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int8]", + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "usr": "s:Sa" + ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV4data3forSays4Int8VGSays5Int32VG_tKFZ", - "mangledName": "$s13ApptentiveKit6SysctlV4data3forSays4Int8VGSays5Int32VG_tKFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "keys", - "printedName": "keys(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "SIMD2Storage", + "printedName": "Swift.Int.SIMD2Storage", + "usr": "s:Si12SIMD2StorageV" } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV4keys3forSays5Int32VGSS_tKFZ", - "mangledName": "$s13ApptentiveKit6SysctlV4keys3forSays5Int32VGSS_tKFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(ofType:forKeys:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + ] }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.Type", + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD4Storage", + "printedName": "Swift.Int.SIMD4Storage", + "usr": "s:Si12SIMD4StorageV" } ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "SIMD8Storage", + "printedName": "Swift.Int.SIMD8Storage", + "usr": "s:Si12SIMD8StorageV" } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_Says5Int32VGtKlFZ", - "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_Says5Int32VGtKlFZ", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(ofType:forKeys:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + ] }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.Type", + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD16Storage", + "printedName": "Swift.Int.SIMD16Storage", + "usr": "s:Si13SIMD16StorageV" } ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "SIMD32Storage", + "printedName": "Swift.Int.SIMD32Storage", + "usr": "s:Si13SIMD32StorageV" } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_s5Int32VdtKlFZ", - "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_s5Int32VdtKlFZ", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(ofType:forName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + ] }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.Type", + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD64Storage", + "printedName": "Swift.Int.SIMD64Storage", + "usr": "s:Si13SIMD64StorageV" } ] - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forNamexxm_SStKlFZ", - "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forNamexxm_SStKlFZ", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" }, { - "kind": "Function", - "name": "string", - "printedName": "string(for:)", + "kind": "Conformance", + "name": "BitwiseCopyable", + "printedName": "BitwiseCopyable", + "usr": "s:s15BitwiseCopyableP", + "mangledName": "$ss15BitwiseCopyableP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV6string3forSSSays5Int32VG_tKFZ", - "mangledName": "$s13ApptentiveKit6SysctlV6string3forSSSays5Int32VG_tKFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, { - "kind": "Function", - "name": "string", - "printedName": "string(for:)", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV6string3forSSs5Int32Vd_tKFZ", - "mangledName": "$s13ApptentiveKit6SysctlV6string3forSSs5Int32Vd_tKFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "string", - "printedName": "string(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV6string3forS2S_tKFZ", - "mangledName": "$s13ApptentiveKit6SysctlV6string3forS2S_tKFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { - "kind": "Var", - "name": "hostName", - "printedName": "hostName", + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV8hostNameSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV8hostNameSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV8hostNameSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV8hostNameSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" }, { - "kind": "Var", - "name": "machine", - "printedName": "machine", + "kind": "Conformance", + "name": "AtomicRepresentable", + "printedName": "AtomicRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV7machineSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV7machineSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "AtomicRepresentation", + "printedName": "AtomicRepresentation", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "_Atomic64BitStorage", + "printedName": "Synchronization._Atomic64BitStorage", + "usr": "s:15Synchronization19_Atomic64BitStorageV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV7machineSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV7machineSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:15Synchronization19AtomicRepresentableP", + "mangledName": "$s15Synchronization19AtomicRepresentableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Bool", + "printedName": "Bool", + "declKind": "Struct", + "usr": "s:Sb", + "mangledName": "$sSb", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { - "kind": "Var", - "name": "model", - "printedName": "model", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV5modelSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV5modelSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV5modelSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV5modelSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" - } - ] + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" }, { - "kind": "Var", - "name": "activeCPUs", - "printedName": "activeCPUs", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV10activeCPUss5Int32VvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV10activeCPUss5Int32VvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV10activeCPUss5Int32VvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV10activeCPUss5Int32VvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" - } - ] + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { - "kind": "Var", - "name": "osRelease", - "printedName": "osRelease", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV9osReleaseSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV9osReleaseSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV9osReleaseSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV9osReleaseSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" - } - ] + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { - "kind": "Var", - "name": "osType", - "printedName": "osType", + "kind": "Conformance", + "name": "CustomDataCompatible", + "printedName": "CustomDataCompatible", + "usr": "s:13ApptentiveKit20CustomDataCompatibleP", + "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinBooleanLiteral", + "printedName": "_ExpressibleByBuiltinBooleanLiteral", + "usr": "s:s35_ExpressibleByBuiltinBooleanLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinBooleanLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByBooleanLiteral", + "printedName": "ExpressibleByBooleanLiteral", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV6osTypeSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV6osTypeSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "BooleanLiteralType", + "printedName": "BooleanLiteralType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV6osTypeSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV6osTypeSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:s27ExpressibleByBooleanLiteralP", + "mangledName": "$ss27ExpressibleByBooleanLiteralP" }, { - "kind": "Var", - "name": "osVersion", - "printedName": "osVersion", + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "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": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "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": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "BitwiseCopyable", + "printedName": "BitwiseCopyable", + "usr": "s:s15BitwiseCopyableP", + "mangledName": "$ss15BitwiseCopyableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV9osVersionSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV9osVersionSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV9osVersionSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV9osVersionSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { - "kind": "Var", - "name": "version", - "printedName": "version", + "kind": "Conformance", + "name": "AtomicRepresentable", + "printedName": "AtomicRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV7versionSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV7versionSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "AtomicRepresentation", + "printedName": "AtomicRepresentation", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "_Atomic8BitStorage", + "printedName": "Synchronization._Atomic8BitStorage", + "usr": "s:15Synchronization18_Atomic8BitStorageV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV7versionSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV7versionSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:15Synchronization19AtomicRepresentableP", + "mangledName": "$s15Synchronization19AtomicRepresentableP" } - ], - "declKind": "Struct", - "usr": "s:13ApptentiveKit6SysctlV", - "mangledName": "$s13ApptentiveKit6SysctlV", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "TypeDecl", - "name": "ApptentiveNavigationController", - "printedName": "ApptentiveNavigationController", - "children": [ + "name": "Date", + "printedName": "Date", + "declKind": "Struct", + "usr": "s:10Foundation4DateV", + "mangledName": "$s10Foundation4DateV", + "moduleName": "Foundation", + "intro_Macosx": "10.10", + "intro_iOS": "8.0", + "intro_tvOS": "9.0", + "intro_watchOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ { - "kind": "Var", - "name": "preferredStatusBarStyle", - "printedName": "preferredStatusBarStyle", + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "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": "ReferenceConvertible", + "printedName": "ReferenceConvertible", "children": [ { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(py)preferredStatusBarStyle", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvp", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "preferredStatusBarStyle", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", "children": [ { "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" + "name": "NSDate", + "printedName": "Foundation.NSDate", + "usr": "c:objc(cs)NSDate" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)preferredStatusBarStyle", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvg", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "preferredStatusBarStyle", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" + ] } - ] + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" }, { - "kind": "Var", - "name": "prefersLargeHeader", - "printedName": "prefersLargeHeader", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cpy)prefersLargeHeader", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "Custom", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)prefersLargeHeader", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)setPrefersLargeHeader:", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvsZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "NSDate", + "printedName": "Foundation.NSDate", + "usr": "c:objc(cs)NSDate" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(navigationBarClass:toolbarClass:)", + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", "children": [ { - "kind": "TypeNominal", - "name": "ApptentiveNavigationController", - "printedName": "ApptentiveKit.ApptentiveNavigationController", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any AnyObject.Type)?", - "children": [ - { - "kind": "TypeNominal", - "name": "ExistentialMetatype", - "printedName": "any AnyObject.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ] - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any AnyObject.Type)?", + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", "children": [ { "kind": "TypeNominal", - "name": "ExistentialMetatype", - "printedName": "any AnyObject.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ] + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNavigationBarClass:toolbarClass:", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18navigationBarClass07toolbarG0ACyXlXpSg_AFtcfc", - "moduleName": "ApptentiveKit", - "overriding": true, - "implicit": true, - "intro_iOS": "5.0", - "objc_name": "initWithNavigationBarClass:toolbarClass:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "Available" - ], - "init_kind": "Designated" - }, + "usr": "s:Sx", + "mangledName": "$sSx" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIViewController", + "printedName": "UIViewController", + "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(rootViewController:)", + "kind": "Var", + "name": "apptentiveModalPresentationStyle", + "printedName": "apptentiveModalPresentationStyle", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveNavigationController", - "printedName": "ApptentiveKit.ApptentiveNavigationController", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" + "name": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" } ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithRootViewController:", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC08rootViewD0ACSo06UIViewD0C_tcfc", + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(py)apptentiveModalPresentationStyle", + "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvp", "moduleName": "ApptentiveKit", - "overriding": true, - "implicit": true, - "objc_name": "initWithRootViewController:", + "deprecated": true, "declAttributes": [ "Dynamic", - "ObjC", + "Preconcurrency", "Custom", - "Override" + "AccessControl", + "ObjC", + "Available" ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nibName:bundle:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveNavigationController", - "printedName": "ApptentiveKit.ApptentiveNavigationController", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, + "isFromExtension": 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": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" } ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNibName:bundle:", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", - "moduleName": "ApptentiveKit", - "overriding": true, - "implicit": true, - "objc_name": "initWithNibName:bundle:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)apptentiveModalPresentationStyle", + "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvg", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.ApptentiveNavigationController?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveNavigationController", - "printedName": "ApptentiveKit.ApptentiveNavigationController", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)setApptentiveModalPresentationStyle:", + "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvs", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "set" } - ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithCoder:", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "ApptentiveKit", - "overriding": true, - "implicit": true, - "objc_name": "initWithCoder:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Required" - ], - "init_kind": "Designated" + ] } ], "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC", - "moduleName": "ApptentiveKit", + "usr": "c:objc(cs)UIViewController", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIViewController", "declAttributes": [ + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", "Custom", - "AccessControl", - "RawDocComment", - "ObjC" + "Dynamic" ], - "superclassUsr": "c:objc(cs)UINavigationController", + "superclassUsr": "c:objc(cs)UIResponder", + "isExternal": true, "inheritsConvenienceInitializers": true, "superclassNames": [ - "UIKit.UINavigationController", - "UIKit.UIViewController", "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -35543,6 +33554,13 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, { "kind": "Conformance", "name": "UITraitChangeObservable", @@ -35552,255 +33570,255 @@ } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "DeveloperToolsSupport", - "printedName": "DeveloperToolsSupport", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, { "kind": "TypeDecl", - "name": "String", - "printedName": "String", + "name": "Name", + "printedName": "Name", "children": [ { - "kind": "Function", - "name": "attributedString", - "printedName": "attributedString(withFont:alignment:)", + "kind": "Var", + "name": "apptentiveEventEngaged", + "printedName": "apptentiveEventEngaged", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableAttributedString?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSMutableAttributedString", - "printedName": "Foundation.NSMutableAttributedString", - "usr": "c:objc(cs)NSMutableAttributedString" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" - }, - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" } ], - "declKind": "Func", - "usr": "s:SS13ApptentiveKitE16attributedString8withFont9alignmentSo019NSMutableAttributedD0CSgSo6UIFontC_AA17HTMLTextAlignmentOtF", - "mangledName": "$sSS13ApptentiveKitE16attributedString8withFont9alignmentSo019NSMutableAttributedD0CSgSo6UIFontC_AA17HTMLTextAlignmentOtF", + "declKind": "Var", + "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ", + "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ", "moduleName": "ApptentiveKit", + "static": true, "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ", + "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", "declAttributes": [ - "EagerMove", - "Frozen" + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" ], + "isFromExtension": true, "isExternal": true, "conformances": [ { "kind": "Conformance", - "name": "CustomDataCompatible", - "printedName": "CustomDataCompatible", - "usr": "s:13ApptentiveKit20CustomDataCompatibleP", - "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" }, { "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + "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": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FileManager", + "printedName": "FileManager", + "declKind": "Class", + "usr": "c:objc(cs)NSFileManager", + "moduleName": "Foundation", + "isOpen": true, + "objc_name": "NSFileManager", + "declAttributes": [ + "ObjC", + "NonSendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" }, { "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" }, { "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { "kind": "Conformance", @@ -35811,427 +33829,636 @@ }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIButton", + "printedName": "UIButton", + "children": [ + { + "kind": "Var", + "name": "apptentivePillRadius", + "printedName": "apptentivePillRadius", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentivePillRadius", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentivePillRadius", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "apptentiveCornerRadius", + "printedName": "apptentiveCornerRadius", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentiveCornerRadius", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentiveCornerRadius", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)setApptentiveCornerRadius:", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE22apptentiveCornerRadius14CoreFoundation7CGFloatVvMZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:SK", - "mangledName": "$sSK" + ] }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Var", + "name": "apptentiveClose", + "printedName": "apptentiveClose", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIButton?", "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" + "name": "UIButton", + "printedName": "UIKit.UIButton", + "usr": "c:objc(cs)UIButton" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" + "name": "Optional", + "printedName": "UIKit.UIButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIButton", + "printedName": "UIKit.UIButton", + "usr": "c:objc(cs)UIButton" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", + "name": "Optional", + "printedName": "UIKit.UIButton?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UIButton", + "printedName": "UIKit.UIButton", + "usr": "c:objc(cs)UIButton" } ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" + ] }, { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", + "kind": "TypeDecl", + "name": "ApptentiveButtonStyle", + "printedName": "ApptentiveButtonStyle", "children": [ { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", + "kind": "Var", + "name": "pill", + "printedName": "pill", "children": [ { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> UIKit.UIButton.ApptentiveButtonStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + } + ] + } + ] } + ], + "declKind": "EnumElement", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" ] }, { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", + "kind": "Var", + "name": "radius", + "printedName": "radius", "children": [ { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> (CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + } + ] + } + ] } + ], + "declKind": "EnumElement", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE14CoreFoundation7CGFloatVcAEmF", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE12CoreGraphics7CGFloatVcAEmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" ] }, { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + }, + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" } - ] + ], + "declKind": "Func", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO2eeoiySbAE_AEtFZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO2eeoiySbAE_AEtFZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" } ], - "usr": "s:Sy", - "mangledName": "$sSy" + "declKind": "Enum", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] }, { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", + "kind": "Var", + "name": "apptentiveStyle", + "printedName": "apptentiveStyle", "children": [ { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" } ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ + "declKind": "Var", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "Transferable", - "printedName": "Transferable", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "Representation", - "printedName": "Representation", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "OpaqueTypeArchetype", - "printedName": "some CoreTransferable.TransferRepresentation", - "children": [ - { - "kind": "TypeNominal", - "name": "TransferRepresentation", - "printedName": "CoreTransferable.TransferRepresentation", - "usr": "s:16CoreTransferable22TransferRepresentationP" - }, - { - "kind": "TypeNominal", - "name": "Sendable", - "printedName": "Swift.Sendable", - "usr": "s:s8SendableP" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:16CoreTransferable0B0P", - "mangledName": "$s16CoreTransferable0B0P" + ] } - ] - }, - { - "kind": "TypeDecl", - "name": "URLSession", - "printedName": "URLSession", + ], "declKind": "Class", - "usr": "c:objc(cs)NSURLSession", - "moduleName": "Foundation", + "usr": "c:objc(cs)UIButton", + "moduleName": "UIKit", "isOpen": true, - "intro_iOS": "7.0", - "objc_name": "NSURLSession", + "intro_iOS": "2.0", + "objc_name": "UIButton", "declAttributes": [ + "Preconcurrency", "Available", "ObjC", - "SynthesizedProtocol", "NonSendable", - "Sendable", + "Custom", "Dynamic" ], - "superclassUsr": "c:objc(cs)NSObject", + "superclassUsr": "c:objc(cs)UIControl", "isExternal": true, "inheritsConvenienceInitializers": true, "superclassNames": [ + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", @@ -36281,572 +34508,312 @@ "printedName": "CustomDebugStringConvertible", "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Double", - "printedName": "Double", - "declKind": "Struct", - "usr": "s:Sd", - "mangledName": "$sSd", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "CustomDataCompatible", - "printedName": "CustomDataCompatible", - "usr": "s:13ApptentiveKit20CustomDataCompatibleP", - "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" - }, - { - "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": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" - }, - { - "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "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": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SF", - "mangledName": "$sSF" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" }, { "kind": "Conformance", "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Double.SIMD2Storage", - "usr": "s:Sd12SIMD2StorageV" - } - ] - }, + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UITableView", + "printedName": "UITableView", + "children": [ + { + "kind": "Var", + "name": "apptentiveStyle", + "printedName": "apptentiveStyle", + "children": [ { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Double.SIMD4Storage", - "usr": "s:Sd12SIMD4StorageV" - } - ] - }, + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cpy)apptentiveStyle", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivpZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Double.SIMD8Storage", - "usr": "s:Sd12SIMD8StorageV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cm)apptentiveStyle", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivgZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Double.SIMD16Storage", - "usr": "s:Sd13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Double.SIMD32Storage", - "usr": "s:Sd13SIMD32StorageV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cm)setApptentiveStyle:", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivsZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Double.SIMD64Storage", - "usr": "s:Sd13SIMD64StorageV" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + ] }, { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "kind": "Var", + "name": "apptentiveQuestionSeparatorHeight", + "printedName": "apptentiveQuestionSeparatorHeight", "children": [ { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + "declKind": "Var", + "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvpZ", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "VectorArithmetic", - "printedName": "VectorArithmetic", - "usr": "s:7SwiftUI16VectorArithmeticP", - "mangledName": "$s7SwiftUI16VectorArithmeticP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvgZ", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } - ] - } - ], - "usr": "s:7SwiftUI18_FormatSpecifiableP", - "mangledName": "$s7SwiftUI18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "Animatable", - "printedName": "Animatable", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvsZ", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "AnimatableData", - "printedName": "AnimatableData", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvMZ", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:7SwiftUI10AnimatableP", - "mangledName": "$s7SwiftUI10AnimatableP" + ] } - ] - }, - { - "kind": "TypeDecl", - "name": "Float", - "printedName": "Float", - "declKind": "Struct", - "usr": "s:Sf", - "mangledName": "$sSf", - "moduleName": "Swift", + ], + "declKind": "Class", + "usr": "c:objc(cs)UITableView", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UITableView", "declAttributes": [ - "Frozen" + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" ], + "superclassUsr": "c:objc(cs)UIScrollView", "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIScrollView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], "conformances": [ { "kind": "Conformance", - "name": "CustomDataCompatible", - "printedName": "CustomDataCompatible", - "usr": "s:13ApptentiveKit20CustomDataCompatibleP", - "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" - }, - { - "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": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", @@ -36857,10 +34824,17 @@ }, { "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" + "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", @@ -36878,77 +34852,175 @@ }, { "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Style", + "printedName": "Style", + "children": [ + { + "kind": "Var", + "name": "apptentive", + "printedName": "apptentive", "children": [ { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", + "kind": "TypeNominal", + "name": "Style", + "printedName": "UIKit.UITableView.Style", + "usr": "c:@E@UITableViewStyle" + } + ], + "declKind": "Var", + "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ", + "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Style", + "printedName": "UIKit.UITableView.Style", + "usr": "c:@E@UITableViewStyle" } - ] + ], + "declKind": "Accessor", + "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ", + "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Style", + "printedName": "UIKit.UITableView.Style", + "usr": "c:@E@UITableViewStyle" } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ", + "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ", + "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" + ] + } + ], + "declKind": "Enum", + "usr": "c:@E@UITableViewStyle", + "moduleName": "UIKit", + "objc_name": "UITableViewStyle", + "declAttributes": [ + "SynthesizedProtocol", + "ObjC", + "SynthesizedProtocol", + "Sendable", + "NonSendable", + "Dynamic" + ], + "isFromExtension": true, + "enumRawTypeName": "Int", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", @@ -36959,87 +35031,198 @@ ] } ], - "usr": "s:SF", - "mangledName": "$sSF" + "usr": "s:SY", + "mangledName": "$sSY" }, { "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIModalPresentationStyle", + "printedName": "UIModalPresentationStyle", + "children": [ + { + "kind": "Var", + "name": "apptentive", + "printedName": "apptentive", "children": [ { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "kind": "TypeNominal", + "name": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" + } + ], + "declKind": "Var", + "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ", + "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" } - ] + ], + "declKind": "Accessor", + "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ", + "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" + } + ], + "declKind": "Accessor", + "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ", + "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ", + "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, + ] + } + ], + "declKind": "Enum", + "usr": "c:@E@UIModalPresentationStyle", + "moduleName": "UIKit", + "objc_name": "UIModalPresentationStyle", + "declAttributes": [ + "SynthesizedProtocol", + "ObjC", + "SynthesizedProtocol", + "Sendable", + "NonSendable", + "Dynamic" + ], + "enumRawTypeName": "Int", + "isExternal": true, + "conformances": [ { "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ] } ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" + "usr": "s:SY", + "mangledName": "$sSY" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", @@ -37050,291 +35233,429 @@ }, { "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIBarButtonItem", + "printedName": "UIBarButtonItem", + "children": [ { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", + "kind": "Var", + "name": "apptentiveClose", + "printedName": "apptentiveClose", "children": [ { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveClose", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveClose", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Float.SIMD2Storage", - "usr": "s:Sf12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Float.SIMD4Storage", - "usr": "s:Sf12SIMD4StorageV" + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveClose:", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Float.SIMD8Storage", - "usr": "s:Sf12SIMD8StorageV" + "name": "Void", + "printedName": "()" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:So15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appentiveRefresh", + "printedName": "appentiveRefresh", + "children": [ { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)appentiveRefresh", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE16appentiveRefreshABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Float.SIMD16Storage", - "usr": "s:Sf13SIMD16StorageV" + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)appentiveRefresh", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE16appentiveRefreshABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Float.SIMD32Storage", - "usr": "s:Sf13SIMD32StorageV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setAppentiveRefresh:", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE16appentiveRefreshABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Float.SIMD64Storage", - "usr": "s:Sf13SIMD64StorageV" + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So15UIBarButtonItemC13ApptentiveKitE16appentiveRefreshABvMZ", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE16appentiveRefreshABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + ] }, { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "kind": "Var", + "name": "apptentiveProfileEdit", + "printedName": "apptentiveProfileEdit", "children": [ { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveProfileEdit", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveProfileEdit", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "VectorArithmetic", - "printedName": "VectorArithmetic", - "usr": "s:7SwiftUI16VectorArithmeticP", - "mangledName": "$s7SwiftUI16VectorArithmeticP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveProfileEdit:", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:7SwiftUI18_FormatSpecifiableP", - "mangledName": "$s7SwiftUI18_FormatSpecifiableP" + ] } - ] - }, - { - "kind": "TypeDecl", - "name": "Int", - "printedName": "Int", - "declKind": "Struct", - "usr": "s:Si", - "mangledName": "$sSi", - "moduleName": "Swift", + ], + "declKind": "Class", + "usr": "c:objc(cs)UIBarButtonItem", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIBarButtonItem", "declAttributes": [ - "Frozen" + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" ], + "superclassUsr": "c:objc(cs)UIBarItem", "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIBarItem", + "ObjectiveC.NSObject" + ], "conformances": [ { "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "SignedInteger", - "printedName": "SignedInteger", - "usr": "s:SZ", - "mangledName": "$sSZ" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", - "children": [ - { - "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", - "children": [ - { - "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.Int.Words", - "usr": "s:Si5WordsV" - } - ] - } - ], - "usr": "s:Sz", - "mangledName": "$sSz" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" + "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", @@ -37345,509 +35666,459 @@ }, { "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIImage", + "printedName": "UIImage", + "children": [ + { + "kind": "Var", + "name": "apptentiveMessageAttachmentButton", + "printedName": "apptentiveMessageAttachmentButton", "children": [ { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageAttachmentButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageAttachmentButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "CustomDataCompatible", - "printedName": "CustomDataCompatible", - "usr": "s:13ApptentiveKit20CustomDataCompatibleP", - "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" - }, - { - "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": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "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": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageAttachmentButton:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Int.SIMD2Storage", - "usr": "s:Si12SIMD2StorageV" + "name": "Void", + "printedName": "()" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "apptentiveMessageSendButton", + "printedName": "apptentiveMessageSendButton", + "children": [ { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Int.SIMD4Storage", - "usr": "s:Si12SIMD4StorageV" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageSendButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Int.SIMD8Storage", - "usr": "s:Si12SIMD8StorageV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageSendButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Int.SIMD16Storage", - "usr": "s:Si13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Int.SIMD32Storage", - "usr": "s:Si13SIMD32StorageV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageSendButton:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Int.SIMD64Storage", - "usr": "s:Si13SIMD64StorageV" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + ] }, { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "kind": "Var", + "name": "apptentiveSentMessageBubble", + "printedName": "apptentiveSentMessageBubble", "children": [ { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveSentMessageBubble", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveSentMessageBubble", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] - } - ], - "usr": "s:7SwiftUI18_FormatSpecifiableP", - "mangledName": "$s7SwiftUI18_FormatSpecifiableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Bool", - "printedName": "Bool", - "declKind": "Struct", - "usr": "s:Sb", - "mangledName": "$sSb", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomDataCompatible", - "printedName": "CustomDataCompatible", - "usr": "s:13ApptentiveKit20CustomDataCompatibleP", - "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinBooleanLiteral", - "printedName": "_ExpressibleByBuiltinBooleanLiteral", - "usr": "s:s35_ExpressibleByBuiltinBooleanLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinBooleanLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByBooleanLiteral", - "printedName": "ExpressibleByBooleanLiteral", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveSentMessageBubble:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "BooleanLiteralType", - "printedName": "BooleanLiteralType", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s27ExpressibleByBooleanLiteralP", - "mangledName": "$ss27ExpressibleByBooleanLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "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": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "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": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + ] }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "Var", + "name": "apptentiveReceivedMessageBubble", + "printedName": "apptentiveReceivedMessageBubble", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIViewController", - "printedName": "UIViewController", - "children": [ - { - "kind": "Var", - "name": "apptentiveModalPresentationStyle", - "printedName": "apptentiveModalPresentationStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(py)apptentiveModalPresentationStyle", - "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvp", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveReceivedMessageBubble", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ - "Dynamic", + "HasInitialValue", + "Final", + "HasStorage", "Custom", "AccessControl", "ObjC", - "Available" + "RawDocComment" ], "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -37856,18 +36127,28 @@ "children": [ { "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)apptentiveModalPresentationStyle", - "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvg", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveReceivedMessageBubble", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvgZ", "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "get" @@ -37884,141 +36165,94 @@ }, { "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)setApptentiveModalPresentationStyle:", - "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvs", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveReceivedMessageBubble:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvsZ", "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIViewController", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIViewController", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIResponder", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "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": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ { "kind": "Var", - "name": "apptentiveEventEngaged", - "printedName": "apptentiveEventEngaged", + "name": "apptentiveAttachmentPlaceholder", + "printedName": "apptentiveAttachmentPlaceholder", "children": [ { "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ", - "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentPlaceholder", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", + "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -38028,214 +36262,122 @@ "children": [ { "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ", - "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentPlaceholder", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], "isFromExtension": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "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": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentPlaceholder:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "FileManager", - "printedName": "FileManager", - "declKind": "Class", - "usr": "c:objc(cs)NSFileManager", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSFileManager", - "declAttributes": [ - "ObjC", - "NonSendable", - "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" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIButton", - "printedName": "UIButton", - "children": [ { "kind": "Var", - "name": "apptentivePillRadius", - "printedName": "apptentivePillRadius", + "name": "apptentiveAttachmentRemoveButton", + "printedName": "apptentiveAttachmentRemoveButton", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentivePillRadius", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentRemoveButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ "HasInitialValue", "Final", @@ -38243,65 +36385,145 @@ "Custom", "AccessControl", "ObjC", - "Available" + "RawDocComment" ], "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentRemoveButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentRemoveButton:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentivePillRadius", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvgZ", + "usr": "s:So7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "intro_iOS": "2.0", "declAttributes": [ - "ObjC", + "Available", "Final" ], "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "apptentiveCornerRadius", - "printedName": "apptentiveCornerRadius", + "name": "apptentiveHeaderLogo", + "printedName": "apptentiveHeaderLogo", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentiveCornerRadius", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveHeaderLogo", + "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "Custom", "AccessControl", "ObjC", - "Available" + "RawDocComment" ], "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -38310,16 +36532,25 @@ "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentiveCornerRadius", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveHeaderLogo", + "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvgZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -38339,16 +36570,25 @@ }, { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)setApptentiveCornerRadius:", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveHeaderLogo:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvsZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -38368,15 +36608,13 @@ } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE22apptentiveCornerRadius14CoreFoundation7CGFloatVvMZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvMZ", + "usr": "s:So7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -38387,27 +36625,27 @@ }, { "kind": "Var", - "name": "apptentiveClose", - "printedName": "apptentiveClose", + "name": "apptentiveRadioButton", + "printedName": "apptentiveRadioButton", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIButton?", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "UIButton", - "printedName": "UIKit.UIButton", - "usr": "c:objc(cs)UIButton" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ @@ -38416,6 +36654,7 @@ "HasStorage", "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -38429,25 +36668,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIButton?", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "UIButton", - "printedName": "UIKit.UIButton", - "usr": "c:objc(cs)UIButton" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -38466,25 +36706,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIButton?", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "UIButton", - "printedName": "UIKit.UIButton", - "usr": "c:objc(cs)UIButton" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButton:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -38502,8 +36743,8 @@ } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ", + "usr": "s:So7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -38518,129 +36759,28 @@ ] }, { - "kind": "TypeDecl", - "name": "ApptentiveButtonStyle", - "printedName": "ApptentiveButtonStyle", + "kind": "Var", + "name": "apptentiveCheckbox", + "printedName": "apptentiveCheckbox", "children": [ { - "kind": "Var", - "name": "pill", - "printedName": "pill", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> UIKit.UIButton.ApptentiveButtonStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "radius", - "printedName": "radius", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> (CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" - }, - { - "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], - "declKind": "EnumElement", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE14CoreFoundation7CGFloatVcAEmF", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE12CoreGraphics7CGFloatVcAEmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - } - ], - "declKind": "Enum", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true - }, - { - "kind": "Var", - "name": "apptentiveStyle", - "printedName": "apptentiveStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckbox", + "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ @@ -38649,6 +36789,7 @@ "HasStorage", "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -38661,18 +36802,27 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckbox", + "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -38690,18 +36840,27 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckbox:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -38719,8 +36878,8 @@ } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ", + "usr": "s:So7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -38733,134 +36892,178 @@ "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIButton", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIButton", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIControl", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIControl", - "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": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "kind": "Var", + "name": "apptentiveRadioButtonSelected", + "printedName": "apptentiveRadioButtonSelected", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButtonSelected", + "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButtonSelected", + "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButtonSelected:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UITableView", - "printedName": "UITableView", - "children": [ { "kind": "Var", - "name": "apptentiveStyle", - "printedName": "apptentiveStyle", + "name": "apptentiveCheckboxSelected", + "printedName": "apptentiveCheckboxSelected", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cpy)apptentiveStyle", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckboxSelected", + "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "Custom", "AccessControl", "ObjC", - "Available" + "RawDocComment" ], "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -38869,16 +37072,25 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cm)apptentiveStyle", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckboxSelected", + "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvgZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -38898,16 +37110,25 @@ }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cm)setApptentiveStyle:", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckboxSelected:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvsZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -38927,15 +37148,13 @@ } ], "declKind": "Accessor", - "usr": "s:So11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ", + "usr": "s:So7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -38946,19 +37165,27 @@ }, { "kind": "Var", - "name": "apptentiveQuestionSeparatorHeight", - "printedName": "apptentiveQuestionSeparatorHeight", + "name": "apptentiveDialogHeader", + "printedName": "apptentiveDialogHeader", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvpZ", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveDialogHeader", + "mangledName": "$sSo7UIImageC13ApptentiveKitE22apptentiveDialogHeaderABSgvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ @@ -38967,7 +37194,7 @@ "HasStorage", "Custom", "AccessControl", - "RawDocComment" + "ObjC" ], "isFromExtension": true, "hasStorage": true, @@ -38979,18 +37206,27 @@ "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvgZ", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveDialogHeader", + "mangledName": "$sSo7UIImageC13ApptentiveKitE22apptentiveDialogHeaderABSgvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -39008,18 +37244,27 @@ }, { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvsZ", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveDialogHeader:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE22apptentiveDialogHeaderABSgvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -39037,8 +37282,8 @@ } ], "declKind": "Accessor", - "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvMZ", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvMZ", + "usr": "s:So7UIImageC13ApptentiveKitE22apptentiveDialogHeaderABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE22apptentiveDialogHeaderABSgvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39054,28 +37299,47 @@ } ], "declKind": "Class", - "usr": "c:objc(cs)UITableView", + "usr": "c:objc(cs)UIImage", "moduleName": "UIKit", "isOpen": true, "intro_iOS": "2.0", - "objc_name": "UITableView", + "objc_name": "UIImage", "declAttributes": [ "Available", "ObjC", + "SynthesizedProtocol", "NonSendable", - "Custom", + "Sendable", "Dynamic" ], - "superclassUsr": "c:objc(cs)UIScrollView", + "superclassUsr": "c:objc(cs)NSObject", "isExternal": true, "inheritsConvenienceInitializers": true, "superclassNames": [ - "UIKit.UIScrollView", - "UIKit.UIView", - "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -39127,53 +37391,49 @@ }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" - }, - { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "_ExpressibleByImageLiteral", + "printedName": "_ExpressibleByImageLiteral", + "usr": "s:s26_ExpressibleByImageLiteralP", + "mangledName": "$ss26_ExpressibleByImageLiteralP" } ] }, { "kind": "TypeDecl", - "name": "Style", - "printedName": "Style", + "name": "UIColor", + "printedName": "UIColor", "children": [ { "kind": "Var", - "name": "apptentive", - "printedName": "apptentive", + "name": "apptentiveMessageCenterTextInputBackground", + "printedName": "apptentiveMessageCenterTextInputBackground", "children": [ { "kind": "TypeNominal", - "name": "Style", - "printedName": "UIKit.UITableView.Style", - "usr": "c:@E@UITableViewStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ", - "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", + "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -39186,17 +37446,21 @@ "children": [ { "kind": "TypeNominal", - "name": "Style", - "printedName": "UIKit.UITableView.Style", - "usr": "c:@E@UITableViewStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ", - "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], "isFromExtension": true, "accessorKind": "get" }, @@ -39212,17 +37476,21 @@ }, { "kind": "TypeNominal", - "name": "Style", - "printedName": "UIKit.UITableView.Style", - "usr": "c:@E@UITableViewStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ", - "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], "isFromExtension": true, "accessorKind": "set" }, @@ -39238,104 +37506,45 @@ } ], "declKind": "Accessor", - "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ", - "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], "isFromExtension": true, "accessorKind": "_modify" } ] - } - ], - "declKind": "Enum", - "usr": "c:@E@UITableViewStyle", - "moduleName": "UIKit", - "objc_name": "UITableViewStyle", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "SynthesizedProtocol", - "Sendable", - "NonSendable", - "Dynamic" - ], - "isFromExtension": true, - "enumRawTypeName": "Int", - "isExternal": true, - "conformances": [ - { - "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": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIModalPresentationStyle", - "printedName": "UIModalPresentationStyle", - "children": [ { "kind": "Var", - "name": "apptentive", - "printedName": "apptentive", + "name": "apptentiveMessageCenterTextInputPlaceholder", + "printedName": "apptentiveMessageCenterTextInputPlaceholder", "children": [ { "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ", - "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", + "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -39348,17 +37557,21 @@ "children": [ { "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ", - "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], "isFromExtension": true, "accessorKind": "get" }, @@ -39374,17 +37587,21 @@ }, { "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ", - "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputPlaceholder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], "isFromExtension": true, "accessorKind": "set" }, @@ -39400,97 +37617,146 @@ } ], "declKind": "Accessor", - "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ", - "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], "isFromExtension": true, "accessorKind": "_modify" } ] - } - ], - "declKind": "Enum", - "usr": "c:@E@UIModalPresentationStyle", - "moduleName": "UIKit", - "objc_name": "UIModalPresentationStyle", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "SynthesizedProtocol", - "Sendable", - "NonSendable", - "Dynamic" - ], - "enumRawTypeName": "Int", - "isExternal": true, - "conformances": [ + }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Var", + "name": "apptentiveMessageTextViewPlaceholder", + "printedName": "apptentiveMessageTextViewPlaceholder", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextViewPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextViewPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextViewPlaceholder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + ] }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIBarButtonItem", - "printedName": "UIBarButtonItem", - "children": [ { "kind": "Var", - "name": "apptentiveClose", - "printedName": "apptentiveClose", + "name": "apptentiveMessageCenterTextInput", + "printedName": "apptentiveMessageCenterTextInput", "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveClose", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInput", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ @@ -39512,14 +37778,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveClose", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInput", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39542,14 +37808,14 @@ }, { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveClose:", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInput:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39572,8 +37838,8 @@ } ], "declKind": "Accessor", - "usr": "s:So15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39589,19 +37855,19 @@ }, { "kind": "Var", - "name": "apptentiveProfileEdit", - "printedName": "apptentiveProfileEdit", + "name": "apptentivetextInputTint", + "printedName": "apptentivetextInputTint", "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveProfileEdit", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentivetextInputTint", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ @@ -39623,14 +37889,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveProfileEdit", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentivetextInputTint", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39653,14 +37919,14 @@ }, { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveProfileEdit:", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentivetextInputTint:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39683,8 +37949,8 @@ } ], "declKind": "Accessor", - "usr": "s:So15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39697,114 +37963,29 @@ "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIBarButtonItem", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIBarButtonItem", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIBarItem", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIBarItem", - "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": "UIImage", - "printedName": "UIImage", - "children": [ { "kind": "Var", - "name": "apptentiveMessageAttachmentButton", - "printedName": "apptentiveMessageAttachmentButton", + "name": "apptentiveMessageCenterTextInputBorder", + "printedName": "apptentiveMessageCenterTextInputBorder", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageAttachmentButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -39819,22 +38000,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageAttachmentButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39857,22 +38030,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageAttachmentButton:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39895,8 +38060,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39912,39 +38077,31 @@ }, { "kind": "Var", - "name": "apptentiveMessageSendButton", - "printedName": "apptentiveMessageSendButton", + "name": "apptentiveMessageCenterTextViewBorder", + "printedName": "apptentiveMessageCenterTextViewBorder", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageSendButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextViewBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", + "Custom", "AccessControl", "ObjC", + "Available", "RawDocComment" ], "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -39953,25 +38110,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageSendButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextViewBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -39991,25 +38139,16 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageSendButton:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextViewBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -40029,13 +38168,15 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ + "Available", "Available", "Final" ], @@ -40046,33 +38187,26 @@ }, { "kind": "Var", - "name": "apptentiveSentMessageBubble", - "printedName": "apptentiveSentMessageBubble", + "name": "apptentiveMessageCenterAttachmentButton", + "printedName": "apptentiveMessageCenterAttachmentButton", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveSentMessageBubble", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40087,22 +38221,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveSentMessageBubble", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40125,22 +38251,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveSentMessageBubble:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentButton:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40163,8 +38281,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40180,33 +38298,26 @@ }, { "kind": "Var", - "name": "apptentiveReceivedMessageBubble", - "printedName": "apptentiveReceivedMessageBubble", + "name": "apptentiveMessageTextInputPlaceholder", + "printedName": "apptentiveMessageTextInputPlaceholder", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveReceivedMessageBubble", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40221,22 +38332,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveReceivedMessageBubble", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40259,22 +38362,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveReceivedMessageBubble:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextInputPlaceholder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40297,8 +38392,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40314,33 +38409,26 @@ }, { "kind": "Var", - "name": "apptentiveAttachmentPlaceholder", - "printedName": "apptentiveAttachmentPlaceholder", + "name": "apptentiveMessageCenterStatus", + "printedName": "apptentiveMessageCenterStatus", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentPlaceholder", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterStatus", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40355,22 +38443,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentPlaceholder", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterStatus", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40393,22 +38473,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentPlaceholder:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterStatus:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40431,8 +38503,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40448,33 +38520,26 @@ }, { "kind": "Var", - "name": "apptentiveAttachmentRemoveButton", - "printedName": "apptentiveAttachmentRemoveButton", + "name": "apptentiveMessageCenterGreetingBody", + "printedName": "apptentiveMessageCenterGreetingBody", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentRemoveButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingBody", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40489,22 +38554,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentRemoveButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingBody", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40527,22 +38584,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentRemoveButton:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingBody:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40565,8 +38614,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40582,33 +38631,26 @@ }, { "kind": "Var", - "name": "apptentiveHeaderLogo", - "printedName": "apptentiveHeaderLogo", + "name": "apptentiveMessageCenterGreetingTitle", + "printedName": "apptentiveMessageCenterGreetingTitle", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveHeaderLogo", - "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40623,22 +38665,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveHeaderLogo", - "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40661,22 +38695,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveHeaderLogo:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingTitle:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40699,8 +38725,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40716,33 +38742,26 @@ }, { "kind": "Var", - "name": "apptentiveRadioButton", - "printedName": "apptentiveRadioButton", + "name": "apptentiveMessageBubbleInbound", + "printedName": "apptentiveMessageBubbleInbound", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleInbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40757,22 +38776,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleInbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40795,22 +38806,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButton:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleInbound:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40833,8 +38836,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40850,33 +38853,26 @@ }, { "kind": "Var", - "name": "apptentiveCheckbox", - "printedName": "apptentiveCheckbox", + "name": "apptentiveMessageBubbleOutbound", + "printedName": "apptentiveMessageBubbleOutbound", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckbox", - "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleOutbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40891,22 +38887,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckbox", - "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleOutbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40929,22 +38917,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckbox:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleOutbound:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40967,8 +38947,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40984,33 +38964,26 @@ }, { "kind": "Var", - "name": "apptentiveRadioButtonSelected", - "printedName": "apptentiveRadioButtonSelected", + "name": "apptentiveMessageLabelInbound", + "printedName": "apptentiveMessageLabelInbound", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButtonSelected", - "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelInbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -41025,22 +38998,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButtonSelected", - "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelInbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41063,22 +39028,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButtonSelected:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelInbound:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41101,8 +39058,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41118,33 +39075,26 @@ }, { "kind": "Var", - "name": "apptentiveCheckboxSelected", - "printedName": "apptentiveCheckboxSelected", + "name": "apptentiveMessageLabelOutbound", + "printedName": "apptentiveMessageLabelOutbound", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckboxSelected", - "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelOutbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -41159,22 +39109,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckboxSelected", - "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelOutbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41197,22 +39139,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckboxSelected:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelOutbound:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41235,8 +39169,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41249,103 +39183,11 @@ "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIImage", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIImage", - "declAttributes": [ - "Available", - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "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": "_ExpressibleByImageLiteral", - "printedName": "_ExpressibleByImageLiteral", - "usr": "s:s26_ExpressibleByImageLiteralP", - "mangledName": "$ss26_ExpressibleByImageLiteralP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIColor", - "printedName": "UIColor", - "children": [ { "kind": "Var", - "name": "apptentiveMessageCenterTextInputBackground", - "printedName": "apptentiveMessageCenterTextInputBackground", + "name": "apptentiveQuestionLabel", + "printedName": "apptentiveQuestionLabel", "children": [ { "kind": "TypeNominal", @@ -41355,14 +39197,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -41383,8 +39226,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41413,8 +39256,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41437,8 +39280,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41454,8 +39297,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterTextInputPlaceholder", - "printedName": "apptentiveMessageCenterTextInputPlaceholder", + "name": "apptentiveInstructionsLabel", + "printedName": "apptentiveInstructionsLabel", "children": [ { "kind": "TypeNominal", @@ -41465,14 +39308,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveInstructionsLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -41493,8 +39337,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveInstructionsLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41523,118 +39367,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputPlaceholder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveInstructionsLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, - "intro_iOS": "2.0", - "declAttributes": [ - "Available", - "Final" - ], - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "apptentiveMessageTextViewPlaceholder", - "printedName": "apptentiveMessageTextViewPlaceholder", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextViewPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "deprecated": true, - "declAttributes": [ - "Final", - "AccessControl", - "ObjC", - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextViewPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextViewPlaceholder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvsZ", - "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ "ObjC", "Final" @@ -41654,15 +39391,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -41673,8 +39408,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterTextInput", - "printedName": "apptentiveMessageCenterTextInput", + "name": "apptentiveChoiceLabel", + "printedName": "apptentiveChoiceLabel", "children": [ { "kind": "TypeNominal", @@ -41684,14 +39419,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInput", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveChoiceLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -41712,8 +39448,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInput", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveChoiceLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41742,8 +39478,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInput:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveChoiceLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41766,8 +39502,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41783,8 +39519,8 @@ }, { "kind": "Var", - "name": "apptentivetextInputTint", - "printedName": "apptentivetextInputTint", + "name": "apptentiveError", + "printedName": "apptentiveError", "children": [ { "kind": "TypeNominal", @@ -41794,13 +39530,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentivetextInputTint", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveError", + "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -41822,8 +39559,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentivetextInputTint", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveError", + "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41852,8 +39589,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentivetextInputTint:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveError:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41876,8 +39613,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41893,8 +39630,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterTextInputBorder", - "printedName": "apptentiveMessageCenterTextInputBorder", + "name": "apptentiveTint", + "printedName": "apptentiveTint", "children": [ { "kind": "TypeNominal", @@ -41904,13 +39641,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTint", + "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -41932,8 +39670,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTint", + "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41962,8 +39700,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBorder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTint:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41986,8 +39724,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE14apptentiveTintABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42003,8 +39741,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterTextViewBorder", - "printedName": "apptentiveMessageCenterTextViewBorder", + "name": "apptentiveSecondaryLabel", + "printedName": "apptentiveSecondaryLabel", "children": [ { "kind": "TypeNominal", @@ -42014,19 +39752,21 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextViewBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ + "HasInitialValue", "Final", + "Custom", + "HasStorage", "AccessControl", "ObjC", - "Available", "RawDocComment" ], "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -42041,10 +39781,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextViewBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -42070,10 +39811,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextViewBorder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -42093,15 +39835,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -42112,8 +39852,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterAttachmentButton", - "printedName": "apptentiveMessageCenterAttachmentButton", + "name": "apptentiveRangeControlBorder", + "printedName": "apptentiveRangeControlBorder", "children": [ { "kind": "TypeNominal", @@ -42123,14 +39863,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveRangeControlBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -42151,8 +39892,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveRangeControlBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42181,8 +39922,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentButton:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveRangeControlBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42205,8 +39946,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42222,8 +39963,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageTextInputPlaceholder", - "printedName": "apptentiveMessageTextInputPlaceholder", + "name": "apptentiveSurveyIntroduction", + "printedName": "apptentiveSurveyIntroduction", "children": [ { "kind": "TypeNominal", @@ -42233,14 +39974,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSurveyIntroduction", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -42261,8 +40003,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSurveyIntroduction", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42291,8 +40033,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextInputPlaceholder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSurveyIntroduction:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42315,8 +40057,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42332,8 +40074,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterStatus", - "printedName": "apptentiveMessageCenterStatus", + "name": "apptentiveSurveyTextInputBackground", + "printedName": "apptentiveSurveyTextInputBackground", "children": [ { "kind": "TypeNominal", @@ -42343,14 +40085,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterStatus", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSurveyTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveSurveyTextInputBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -42371,8 +40114,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterStatus", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSurveyTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveSurveyTextInputBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42401,8 +40144,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterStatus:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSurveyTextInputBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveSurveyTextInputBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42425,8 +40168,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE35apptentiveSurveyTextInputBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveSurveyTextInputBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42442,8 +40185,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterGreetingBody", - "printedName": "apptentiveMessageCenterGreetingBody", + "name": "apptentiveTextInputBorder", + "printedName": "apptentiveTextInputBorder", "children": [ { "kind": "TypeNominal", @@ -42453,13 +40196,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingBody", - "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -42481,8 +40225,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingBody", - "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42511,8 +40255,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingBody:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42535,8 +40279,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42552,8 +40296,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterGreetingTitle", - "printedName": "apptentiveMessageCenterGreetingTitle", + "name": "apptentiveOtherTextInputBorder", + "printedName": "apptentiveOtherTextInputBorder", "children": [ { "kind": "TypeNominal", @@ -42563,13 +40307,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingTitle", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveOtherTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveOtherTextInputBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -42591,8 +40336,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingTitle", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveOtherTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveOtherTextInputBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42621,8 +40366,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingTitle:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveOtherTextInputBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveOtherTextInputBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42645,8 +40390,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveOtherTextInputBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveOtherTextInputBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42662,8 +40407,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageBubbleInbound", - "printedName": "apptentiveMessageBubbleInbound", + "name": "apptentiveOtherTextInputBackground", + "printedName": "apptentiveOtherTextInputBackground", "children": [ { "kind": "TypeNominal", @@ -42673,14 +40418,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleInbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveOtherTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE34apptentiveOtherTextInputBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -42701,8 +40447,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleInbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveOtherTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE34apptentiveOtherTextInputBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42731,8 +40477,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleInbound:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveOtherTextInputBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE34apptentiveOtherTextInputBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42755,8 +40501,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE34apptentiveOtherTextInputBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE34apptentiveOtherTextInputBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42772,8 +40518,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageBubbleOutbound", - "printedName": "apptentiveMessageBubbleOutbound", + "name": "apptentiveTextInputBackground", + "printedName": "apptentiveTextInputBackground", "children": [ { "kind": "TypeNominal", @@ -42783,13 +40529,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleOutbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -42811,8 +40558,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleOutbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42841,8 +40588,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleOutbound:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42865,8 +40612,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42882,8 +40629,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageLabelInbound", - "printedName": "apptentiveMessageLabelInbound", + "name": "apptentiveTextInput", + "printedName": "apptentiveTextInput", "children": [ { "kind": "TypeNominal", @@ -42893,13 +40640,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelInbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInput", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -42921,8 +40669,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelInbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInput", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42951,8 +40699,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelInbound:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInput:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42975,8 +40723,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42992,8 +40740,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageLabelOutbound", - "printedName": "apptentiveMessageLabelOutbound", + "name": "apptentiveTextInputPlaceholder", + "printedName": "apptentiveTextInputPlaceholder", "children": [ { "kind": "TypeNominal", @@ -43003,13 +40751,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelOutbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -43031,8 +40780,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelOutbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43061,8 +40810,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelOutbound:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputPlaceholder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43085,8 +40834,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43102,8 +40851,8 @@ }, { "kind": "Var", - "name": "apptentiveQuestionLabel", - "printedName": "apptentiveQuestionLabel", + "name": "apptentiveMinMaxLabel", + "printedName": "apptentiveMinMaxLabel", "children": [ { "kind": "TypeNominal", @@ -43113,14 +40862,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMinMaxLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43141,8 +40891,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMinMaxLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43171,8 +40921,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMinMaxLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43195,8 +40945,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43212,8 +40962,8 @@ }, { "kind": "Var", - "name": "apptentiveInstructionsLabel", - "printedName": "apptentiveInstructionsLabel", + "name": "apptentiveGroupedBackground", + "printedName": "apptentiveGroupedBackground", "children": [ { "kind": "TypeNominal", @@ -43223,14 +40973,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveInstructionsLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveGroupedBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43251,8 +41002,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveInstructionsLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveGroupedBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43281,8 +41032,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveInstructionsLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveGroupedBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43305,8 +41056,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43322,8 +41073,8 @@ }, { "kind": "Var", - "name": "apptentiveChoiceLabel", - "printedName": "apptentiveChoiceLabel", + "name": "apptentiveSecondaryGroupedBackground", + "printedName": "apptentiveSecondaryGroupedBackground", "children": [ { "kind": "TypeNominal", @@ -43333,14 +41084,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveChoiceLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryGroupedBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43361,8 +41113,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveChoiceLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryGroupedBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43391,8 +41143,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveChoiceLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryGroupedBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43415,8 +41167,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43432,8 +41184,8 @@ }, { "kind": "Var", - "name": "apptentiveError", - "printedName": "apptentiveError", + "name": "apptentiveSeparator", + "printedName": "apptentiveSeparator", "children": [ { "kind": "TypeNominal", @@ -43443,14 +41195,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveError", - "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43471,8 +41224,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveError", - "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43501,8 +41254,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveError:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSeparator:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43525,8 +41278,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43542,8 +41295,8 @@ }, { "kind": "Var", - "name": "apptentiveTint", - "printedName": "apptentiveTint", + "name": "apptentiveImageSelected", + "printedName": "apptentiveImageSelected", "children": [ { "kind": "TypeNominal", @@ -43553,14 +41306,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTint", - "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43581,8 +41335,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTint", - "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43611,8 +41365,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTint:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageSelected:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43635,8 +41389,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE14apptentiveTintABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43652,8 +41406,8 @@ }, { "kind": "Var", - "name": "apptentiveSecondaryLabel", - "printedName": "apptentiveSecondaryLabel", + "name": "apptentiveImageNotSelected", + "printedName": "apptentiveImageNotSelected", "children": [ { "kind": "TypeNominal", @@ -43663,14 +41417,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageNotSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43691,8 +41446,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageNotSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43721,8 +41476,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageNotSelected:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43745,8 +41500,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43762,8 +41517,8 @@ }, { "kind": "Var", - "name": "apptentiveRangeControlBorder", - "printedName": "apptentiveRangeControlBorder", + "name": "apptentiveSubmitButton", + "printedName": "apptentiveSubmitButton", "children": [ { "kind": "TypeNominal", @@ -43773,14 +41528,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveRangeControlBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43801,8 +41557,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveRangeControlBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43831,8 +41587,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveRangeControlBorder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButton:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43855,8 +41611,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43872,8 +41628,8 @@ }, { "kind": "Var", - "name": "apptentiveSurveyIntroduction", - "printedName": "apptentiveSurveyIntroduction", + "name": "apptentiveBranchedSurveyFooter", + "printedName": "apptentiveBranchedSurveyFooter", "children": [ { "kind": "TypeNominal", @@ -43883,14 +41639,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSurveyIntroduction", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveBranchedSurveyFooter", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43911,8 +41668,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSurveyIntroduction", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveBranchedSurveyFooter", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43941,8 +41698,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSurveyIntroduction:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveBranchedSurveyFooter:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43965,8 +41722,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43982,8 +41739,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInputBorder", - "printedName": "apptentiveTextInputBorder", + "name": "apptentiveSubmitLabel", + "printedName": "apptentiveSubmitLabel", "children": [ { "kind": "TypeNominal", @@ -43993,20 +41750,19 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvpZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", + "Custom", "AccessControl", - "ObjC", + "Available", "RawDocComment" ], "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -44021,13 +41777,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvgZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44051,13 +41805,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvsZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44075,13 +41827,15 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ + "Available", "Available", "Final" ], @@ -44092,8 +41846,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInputBackground", - "printedName": "apptentiveTextInputBackground", + "name": "apptentiveSubmitStatusLabel", + "printedName": "apptentiveSubmitStatusLabel", "children": [ { "kind": "TypeNominal", @@ -44103,13 +41857,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitStatusLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -44131,8 +41886,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitStatusLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44161,8 +41916,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitStatusLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44185,8 +41940,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44202,8 +41957,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInput", - "printedName": "apptentiveTextInput", + "name": "apptentiveTermsOfServiceLabel", + "printedName": "apptentiveTermsOfServiceLabel", "children": [ { "kind": "TypeNominal", @@ -44213,14 +41968,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInput", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTermsOfServiceLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -44241,8 +41997,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInput", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTermsOfServiceLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44271,8 +42027,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInput:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTermsOfServiceLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44295,8 +42051,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44312,8 +42068,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInputPlaceholder", - "printedName": "apptentiveTextInputPlaceholder", + "name": "apptentiveSubmitButtonTitle", + "printedName": "apptentiveSubmitButtonTitle", "children": [ { "kind": "TypeNominal", @@ -44323,14 +42079,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -44351,8 +42108,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44381,8 +42138,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputPlaceholder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonTitle:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44405,8 +42162,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44422,8 +42179,8 @@ }, { "kind": "Var", - "name": "apptentiveMinMaxLabel", - "printedName": "apptentiveMinMaxLabel", + "name": "apptentiveSubmitButtonBorder", + "printedName": "apptentiveSubmitButtonBorder", "children": [ { "kind": "TypeNominal", @@ -44433,14 +42190,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMinMaxLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -44461,8 +42219,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMinMaxLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44491,8 +42249,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMinMaxLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44515,8 +42273,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44532,8 +42290,8 @@ }, { "kind": "Var", - "name": "apptentiveGroupedBackground", - "printedName": "apptentiveGroupedBackground", + "name": "apptentiveQuestionSeparator", + "printedName": "apptentiveQuestionSeparator", "children": [ { "kind": "TypeNominal", @@ -44543,14 +42301,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveGroupedBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -44571,8 +42330,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveGroupedBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44601,8 +42360,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveGroupedBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionSeparator:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44625,8 +42384,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44642,8 +42401,8 @@ }, { "kind": "Var", - "name": "apptentiveSecondaryGroupedBackground", - "printedName": "apptentiveSecondaryGroupedBackground", + "name": "apptentiveUnselectedSurveyIndicatorSegment", + "printedName": "apptentiveUnselectedSurveyIndicatorSegment", "children": [ { "kind": "TypeNominal", @@ -44653,16 +42412,16 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryGroupedBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvpZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", - "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -44681,13 +42440,12 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryGroupedBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvgZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44711,13 +42469,12 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryGroupedBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvsZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44735,8 +42492,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44752,8 +42509,8 @@ }, { "kind": "Var", - "name": "apptentiveSeparator", - "printedName": "apptentiveSeparator", + "name": "apptentiveSelectedSurveyIndicatorSegment", + "printedName": "apptentiveSelectedSurveyIndicatorSegment", "children": [ { "kind": "TypeNominal", @@ -44763,16 +42520,16 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvpZ", + "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", - "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -44791,13 +42548,12 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvgZ", + "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44821,13 +42577,12 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSeparator:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvsZ", + "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44845,8 +42600,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44862,8 +42617,8 @@ }, { "kind": "Var", - "name": "apptentiveImageSelected", - "printedName": "apptentiveImageSelected", + "name": "apptentiveMessageCenterBackground", + "printedName": "apptentiveMessageCenterBackground", "children": [ { "kind": "TypeNominal", @@ -44873,14 +42628,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -44901,8 +42657,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44931,8 +42687,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageSelected:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44955,8 +42711,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44972,8 +42728,8 @@ }, { "kind": "Var", - "name": "apptentiveImageNotSelected", - "printedName": "apptentiveImageNotSelected", + "name": "apptentiveMessageCenterAttachmentDeleteButton", + "printedName": "apptentiveMessageCenterAttachmentDeleteButton", "children": [ { "kind": "TypeNominal", @@ -44983,20 +42739,20 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageNotSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentDeleteButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvpZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", + "Custom", "AccessControl", "ObjC", + "Available", "RawDocComment" ], "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -45011,11 +42767,10 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageNotSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentDeleteButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvgZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -45041,11 +42796,10 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageNotSelected:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentDeleteButton:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvsZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -45065,13 +42819,15 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ + "Available", "Available", "Final" ], @@ -45082,8 +42838,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitButton", - "printedName": "apptentiveSubmitButton", + "name": "apptentiveAttachmentRemoveButton", + "printedName": "apptentiveAttachmentRemoveButton", "children": [ { "kind": "TypeNominal", @@ -45093,14 +42849,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveAttachmentRemoveButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -45121,8 +42878,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveAttachmentRemoveButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45151,8 +42908,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButton:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveAttachmentRemoveButton:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45175,8 +42932,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45192,8 +42949,8 @@ }, { "kind": "Var", - "name": "apptentiveBranchedSurveyFooter", - "printedName": "apptentiveBranchedSurveyFooter", + "name": "apptentiveMessageCenterComposeBoxBackground", + "printedName": "apptentiveMessageCenterComposeBoxBackground", "children": [ { "kind": "TypeNominal", @@ -45203,14 +42960,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveBranchedSurveyFooter", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -45231,8 +42989,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveBranchedSurveyFooter", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45261,8 +43019,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveBranchedSurveyFooter:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45285,8 +43043,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45302,8 +43060,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitLabel", - "printedName": "apptentiveSubmitLabel", + "name": "apptentiveMessageCenterComposeBoxSeparator", + "printedName": "apptentiveMessageCenterComposeBoxSeparator", "children": [ { "kind": "TypeNominal", @@ -45313,17 +43071,17 @@ } ], "declKind": "Var", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", - "Available", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -45342,12 +43100,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -45371,12 +43130,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxSeparator:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -45394,15 +43154,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -45413,8 +43171,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitStatusLabel", - "printedName": "apptentiveSubmitStatusLabel", + "name": "apptentiveTextInputBorderSelected", + "printedName": "apptentiveTextInputBorderSelected", "children": [ { "kind": "TypeNominal", @@ -45424,14 +43182,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitStatusLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorderSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -45452,8 +43211,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitStatusLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorderSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45482,8 +43241,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitStatusLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorderSelected:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45506,8 +43265,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45523,8 +43282,8 @@ }, { "kind": "Var", - "name": "apptentiveTermsOfServiceLabel", - "printedName": "apptentiveTermsOfServiceLabel", + "name": "apptentiveDisclaimerLabel", + "printedName": "apptentiveDisclaimerLabel", "children": [ { "kind": "TypeNominal", @@ -45534,14 +43293,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTermsOfServiceLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDisclaimerLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -45562,8 +43322,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTermsOfServiceLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDisclaimerLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45592,8 +43352,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTermsOfServiceLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDisclaimerLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45616,8 +43376,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45633,67 +43393,14 @@ }, { "kind": "Var", - "name": "apptentiveSubmitButtonTitle", - "printedName": "apptentiveSubmitButtonTitle", + "name": "apptentiveDialogBackground", + "printedName": "apptentiveDialogBackground", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonTitle", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "isFromExtension": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonTitle", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Optional", + "printedName": "UIKit.UIColor?", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "UIColor", @@ -45701,67 +43408,19 @@ "usr": "c:objc(cs)UIColor" } ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonTitle:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "intro_iOS": "2.0", - "declAttributes": [ - "Available", - "Final" - ], - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "apptentiveSubmitButtonBorder", - "printedName": "apptentiveSubmitButtonBorder", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveDialogBackgroundABSgvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -45776,14 +43435,22 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.UIColor?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveDialogBackgroundABSgvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45806,14 +43473,22 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.UIColor?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonBorder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveDialogBackgroundABSgvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45836,8 +43511,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE26apptentiveDialogBackgroundABSgvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveDialogBackgroundABSgvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45853,8 +43528,8 @@ }, { "kind": "Var", - "name": "apptentiveQuestionSeparator", - "printedName": "apptentiveQuestionSeparator", + "name": "apptentiveDialogTitle", + "printedName": "apptentiveDialogTitle", "children": [ { "kind": "TypeNominal", @@ -45864,13 +43539,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveDialogTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -45892,8 +43568,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveDialogTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45922,8 +43598,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionSeparator:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogTitle:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveDialogTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45946,8 +43622,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveDialogTitleABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveDialogTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45963,8 +43639,8 @@ }, { "kind": "Var", - "name": "apptentiveUnselectedSurveyIndicatorSegment", - "printedName": "apptentiveUnselectedSurveyIndicatorSegment", + "name": "apptentiveDialogMessage", + "printedName": "apptentiveDialogMessage", "children": [ { "kind": "TypeNominal", @@ -45974,15 +43650,17 @@ } ], "declKind": "Var", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogMessage", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveDialogMessageABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -46001,12 +43679,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogMessage", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveDialogMessageABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -46030,12 +43709,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogMessage:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveDialogMessageABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -46053,8 +43733,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveDialogMessageABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveDialogMessageABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46070,8 +43750,8 @@ }, { "kind": "Var", - "name": "apptentiveSelectedSurveyIndicatorSegment", - "printedName": "apptentiveSelectedSurveyIndicatorSegment", + "name": "apptentiveDialogButtonBackground", + "printedName": "apptentiveDialogButtonBackground", "children": [ { "kind": "TypeNominal", @@ -46081,15 +43761,17 @@ } ], "declKind": "Var", - "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogButtonBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveDialogButtonBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -46108,12 +43790,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogButtonBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveDialogButtonBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -46137,12 +43820,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogButtonBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveDialogButtonBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -46160,8 +43844,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveDialogButtonBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveDialogButtonBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46177,8 +43861,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterBackground", - "printedName": "apptentiveMessageCenterBackground", + "name": "apptentiveDialogButtonLabel", + "printedName": "apptentiveDialogButtonLabel", "children": [ { "kind": "TypeNominal", @@ -46188,14 +43872,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogButtonLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveDialogButtonLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -46216,8 +43901,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogButtonLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveDialogButtonLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46246,8 +43931,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogButtonLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveDialogButtonLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46270,8 +43955,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveDialogButtonLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveDialogButtonLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46287,8 +43972,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterAttachmentDeleteButton", - "printedName": "apptentiveMessageCenterAttachmentDeleteButton", + "name": "apptentiveButtonBorder", + "printedName": "apptentiveButtonBorder", "children": [ { "kind": "TypeNominal", @@ -46298,18 +43983,17 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentDeleteButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveButtonBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveButtonBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", - "Available", "RawDocComment" ], "isFromExtension": true, @@ -46328,8 +44012,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentDeleteButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveButtonBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveButtonBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46358,8 +44042,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentDeleteButton:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveButtonBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveButtonBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46382,15 +44066,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE22apptentiveButtonBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveButtonBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -46401,8 +44083,8 @@ }, { "kind": "Var", - "name": "apptentiveAttachmentRemoveButton", - "printedName": "apptentiveAttachmentRemoveButton", + "name": "apptentiveDialogSeparator", + "printedName": "apptentiveDialogSeparator", "children": [ { "kind": "TypeNominal", @@ -46412,13 +44094,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveAttachmentRemoveButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDialogSeparatorABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -46440,8 +44123,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveAttachmentRemoveButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDialogSeparatorABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46470,8 +44153,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveAttachmentRemoveButton:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogSeparator:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDialogSeparatorABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46494,8 +44177,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveDialogSeparatorABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDialogSeparatorABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46508,27 +44191,141 @@ "accessorKind": "_modify" } ] + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UIColor", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIColor", + "declAttributes": [ + "Available", + "ObjC", + "SynthesizedProtocol", + "NonSendable", + "Sendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByColorLiteral", + "printedName": "_ExpressibleByColorLiteral", + "usr": "s:s26_ExpressibleByColorLiteralP", + "mangledName": "$ss26_ExpressibleByColorLiteralP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIFont", + "printedName": "UIFont", + "children": [ { "kind": "Var", - "name": "apptentiveMessageCenterComposeBoxBackground", - "printedName": "apptentiveMessageCenterComposeBoxBackground", + "name": "apptentiveMessageCenterTextInputPlaceholder", + "printedName": "apptentiveMessageCenterTextInputPlaceholder", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInputPlaceholder", + "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -46544,14 +44341,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInputPlaceholder", + "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46574,14 +44371,14 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInputPlaceholder:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46604,8 +44401,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46621,24 +44418,25 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterComposeBoxSeparator", - "printedName": "apptentiveMessageCenterComposeBoxSeparator", + "name": "apptentiveMessageCenterTextInput", + "printedName": "apptentiveMessageCenterTextInput", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInput", + "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -46654,14 +44452,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInput", + "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46684,14 +44482,14 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxSeparator:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInput:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46714,8 +44512,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46731,24 +44529,25 @@ }, { "kind": "Var", - "name": "apptentiveTextInputBorderSelected", - "printedName": "apptentiveTextInputBorderSelected", + "name": "apptentiveTextInputPlaceholder", + "printedName": "apptentiveTextInputPlaceholder", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorderSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInputPlaceholder", + "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -46764,14 +44563,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorderSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInputPlaceholder", + "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46794,14 +44593,14 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorderSelected:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInputPlaceholder:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46824,8 +44623,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46841,24 +44640,25 @@ }, { "kind": "Var", - "name": "apptentiveDisclaimerLabel", - "printedName": "apptentiveDisclaimerLabel", + "name": "apptentiveMessageCenterStatus", + "printedName": "apptentiveMessageCenterStatus", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDisclaimerLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterStatus", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -46874,14 +44674,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDisclaimerLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterStatus", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46904,14 +44704,14 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDisclaimerLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterStatus:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46934,8 +44734,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46948,103 +44748,11 @@ "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIColor", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIColor", - "declAttributes": [ - "Available", - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "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": "_ExpressibleByColorLiteral", - "printedName": "_ExpressibleByColorLiteral", - "usr": "s:s26_ExpressibleByColorLiteralP", - "mangledName": "$ss26_ExpressibleByColorLiteralP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIFont", - "printedName": "UIFont", - "children": [ { "kind": "Var", - "name": "apptentiveMessageCenterTextInputPlaceholder", - "printedName": "apptentiveMessageCenterTextInputPlaceholder", + "name": "apptentiveMessageCenterGreetingTitle", + "printedName": "apptentiveMessageCenterGreetingTitle", "children": [ { "kind": "TypeNominal", @@ -47054,13 +44762,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInputPlaceholder", - "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47082,8 +44791,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInputPlaceholder", - "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47112,8 +44821,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInputPlaceholder:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingTitle:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47136,8 +44845,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47153,8 +44862,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterTextInput", - "printedName": "apptentiveMessageCenterTextInput", + "name": "apptentiveMessageCenterGreetingBody", + "printedName": "apptentiveMessageCenterGreetingBody", "children": [ { "kind": "TypeNominal", @@ -47164,13 +44873,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInput", - "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingBody", + "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47192,8 +44902,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInput", - "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingBody", + "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47222,8 +44932,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInput:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingBody:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47246,8 +44956,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47263,8 +44973,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInputPlaceholder", - "printedName": "apptentiveTextInputPlaceholder", + "name": "apptentiveMessageCenterAttachmentLabel", + "printedName": "apptentiveMessageCenterAttachmentLabel", "children": [ { "kind": "TypeNominal", @@ -47274,13 +44984,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInputPlaceholder", - "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterAttachmentLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47302,8 +45013,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInputPlaceholder", - "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterAttachmentLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47332,8 +45043,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInputPlaceholder:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterAttachmentLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47356,8 +45067,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47373,8 +45084,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterStatus", - "printedName": "apptentiveMessageCenterStatus", + "name": "apptentiveQuestionLabel", + "printedName": "apptentiveQuestionLabel", "children": [ { "kind": "TypeNominal", @@ -47384,13 +45095,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterStatus", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveQuestionLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47412,8 +45124,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterStatus", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveQuestionLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47442,8 +45154,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterStatus:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveQuestionLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47466,8 +45178,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47483,8 +45195,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterGreetingTitle", - "printedName": "apptentiveMessageCenterGreetingTitle", + "name": "apptentiveTermsOfServiceLabel", + "printedName": "apptentiveTermsOfServiceLabel", "children": [ { "kind": "TypeNominal", @@ -47494,13 +45206,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingTitle", - "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTermsOfServiceLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47522,8 +45235,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingTitle", - "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTermsOfServiceLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47552,8 +45265,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingTitle:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTermsOfServiceLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47576,8 +45289,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47593,8 +45306,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterGreetingBody", - "printedName": "apptentiveMessageCenterGreetingBody", + "name": "apptentiveChoiceLabel", + "printedName": "apptentiveChoiceLabel", "children": [ { "kind": "TypeNominal", @@ -47604,13 +45317,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingBody", - "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveChoiceLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47632,8 +45346,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingBody", - "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveChoiceLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47662,8 +45376,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingBody:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveChoiceLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47686,8 +45400,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47703,8 +45417,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterAttachmentLabel", - "printedName": "apptentiveMessageCenterAttachmentLabel", + "name": "apptentiveMessageLabel", + "printedName": "apptentiveMessageLabel", "children": [ { "kind": "TypeNominal", @@ -47714,13 +45428,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterAttachmentLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47742,8 +45457,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterAttachmentLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47772,8 +45487,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterAttachmentLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47796,8 +45511,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47813,8 +45528,8 @@ }, { "kind": "Var", - "name": "apptentiveQuestionLabel", - "printedName": "apptentiveQuestionLabel", + "name": "apptentiveMinMaxLabel", + "printedName": "apptentiveMinMaxLabel", "children": [ { "kind": "TypeNominal", @@ -47824,13 +45539,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveQuestionLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMinMaxLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47852,8 +45568,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveQuestionLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMinMaxLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47882,8 +45598,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveQuestionLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMinMaxLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47906,8 +45622,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47923,8 +45639,8 @@ }, { "kind": "Var", - "name": "apptentiveTermsOfServiceLabel", - "printedName": "apptentiveTermsOfServiceLabel", + "name": "apptentiveSenderLabel", + "printedName": "apptentiveSenderLabel", "children": [ { "kind": "TypeNominal", @@ -47934,13 +45650,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTermsOfServiceLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSenderLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47962,8 +45679,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTermsOfServiceLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSenderLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47992,8 +45709,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTermsOfServiceLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSenderLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48016,8 +45733,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48033,8 +45750,8 @@ }, { "kind": "Var", - "name": "apptentiveChoiceLabel", - "printedName": "apptentiveChoiceLabel", + "name": "apptentiveMessageDateLabel", + "printedName": "apptentiveMessageDateLabel", "children": [ { "kind": "TypeNominal", @@ -48044,13 +45761,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveChoiceLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageDateLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48072,8 +45790,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveChoiceLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageDateLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48102,8 +45820,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveChoiceLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageDateLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48126,8 +45844,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48143,8 +45861,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageLabel", - "printedName": "apptentiveMessageLabel", + "name": "apptentiveInstructionsLabel", + "printedName": "apptentiveInstructionsLabel", "children": [ { "kind": "TypeNominal", @@ -48154,13 +45872,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveInstructionsLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48182,8 +45901,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveInstructionsLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48212,8 +45931,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveInstructionsLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48236,8 +45955,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48253,8 +45972,8 @@ }, { "kind": "Var", - "name": "apptentiveMinMaxLabel", - "printedName": "apptentiveMinMaxLabel", + "name": "apptentiveSurveyIntroductionLabel", + "printedName": "apptentiveSurveyIntroductionLabel", "children": [ { "kind": "TypeNominal", @@ -48264,13 +45983,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMinMaxLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSurveyIntroductionLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48292,8 +46012,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMinMaxLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSurveyIntroductionLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48322,8 +46042,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMinMaxLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSurveyIntroductionLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48346,8 +46066,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48363,8 +46083,8 @@ }, { "kind": "Var", - "name": "apptentiveSenderLabel", - "printedName": "apptentiveSenderLabel", + "name": "apptentiveSubmitLabel", + "printedName": "apptentiveSubmitLabel", "children": [ { "kind": "TypeNominal", @@ -48374,20 +46094,19 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSenderLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvpZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", + "Custom", "AccessControl", - "ObjC", + "Available", "RawDocComment" ], "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -48402,13 +46121,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSenderLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvgZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -48432,13 +46149,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSenderLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvsZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -48456,13 +46171,15 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ + "Available", "Available", "Final" ], @@ -48473,8 +46190,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageDateLabel", - "printedName": "apptentiveMessageDateLabel", + "name": "apptentiveSubmitStatusLabel", + "printedName": "apptentiveSubmitStatusLabel", "children": [ { "kind": "TypeNominal", @@ -48484,13 +46201,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageDateLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitStatusLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48512,8 +46230,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageDateLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitStatusLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48542,8 +46260,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageDateLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitStatusLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48566,8 +46284,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48583,8 +46301,8 @@ }, { "kind": "Var", - "name": "apptentiveInstructionsLabel", - "printedName": "apptentiveInstructionsLabel", + "name": "apptentiveDisclaimerLabel", + "printedName": "apptentiveDisclaimerLabel", "children": [ { "kind": "TypeNominal", @@ -48594,13 +46312,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveInstructionsLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDisclaimerLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48622,8 +46341,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveInstructionsLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDisclaimerLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48652,8 +46371,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveInstructionsLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDisclaimerLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48676,8 +46395,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48693,8 +46412,8 @@ }, { "kind": "Var", - "name": "apptentiveSurveyIntroductionLabel", - "printedName": "apptentiveSurveyIntroductionLabel", + "name": "apptentiveSubmitButtonTitle", + "printedName": "apptentiveSubmitButtonTitle", "children": [ { "kind": "TypeNominal", @@ -48704,13 +46423,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSurveyIntroductionLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitButtonTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48732,8 +46452,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSurveyIntroductionLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitButtonTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48762,8 +46482,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSurveyIntroductionLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitButtonTitle:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48786,8 +46506,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48803,8 +46523,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitLabel", - "printedName": "apptentiveSubmitLabel", + "name": "apptentiveTextInput", + "printedName": "apptentiveTextInput", "children": [ { "kind": "TypeNominal", @@ -48814,17 +46534,17 @@ } ], "declKind": "Var", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInput", + "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", - "Available", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -48843,12 +46563,13 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInput", + "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -48872,12 +46593,13 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInput:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -48895,15 +46617,13 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -48914,8 +46634,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitStatusLabel", - "printedName": "apptentiveSubmitStatusLabel", + "name": "apptentiveDialogTitle", + "printedName": "apptentiveDialogTitle", "children": [ { "kind": "TypeNominal", @@ -48925,13 +46645,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitStatusLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDialogTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveDialogTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48953,8 +46674,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitStatusLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDialogTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveDialogTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48983,8 +46704,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitStatusLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDialogTitle:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveDialogTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49007,8 +46728,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveDialogTitleABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveDialogTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49024,8 +46745,8 @@ }, { "kind": "Var", - "name": "apptentiveDisclaimerLabel", - "printedName": "apptentiveDisclaimerLabel", + "name": "apptentiveDialogText", + "printedName": "apptentiveDialogText", "children": [ { "kind": "TypeNominal", @@ -49035,13 +46756,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDisclaimerLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDialogText", + "mangledName": "$sSo6UIFontC13ApptentiveKitE20apptentiveDialogTextABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -49063,8 +46785,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDisclaimerLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDialogText", + "mangledName": "$sSo6UIFontC13ApptentiveKitE20apptentiveDialogTextABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49093,8 +46815,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDisclaimerLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDialogText:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE20apptentiveDialogTextABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49117,8 +46839,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE20apptentiveDialogTextABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE20apptentiveDialogTextABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49134,8 +46856,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitButtonTitle", - "printedName": "apptentiveSubmitButtonTitle", + "name": "apptentiveDialogMessage", + "printedName": "apptentiveDialogMessage", "children": [ { "kind": "TypeNominal", @@ -49145,13 +46867,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitButtonTitle", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDialogMessage", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveDialogMessageABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -49173,8 +46896,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitButtonTitle", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDialogMessage", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveDialogMessageABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49203,8 +46926,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitButtonTitle:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDialogMessage:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveDialogMessageABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49227,8 +46950,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE23apptentiveDialogMessageABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveDialogMessageABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49244,8 +46967,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInput", - "printedName": "apptentiveTextInput", + "name": "apptentiveDialogButton", + "printedName": "apptentiveDialogButton", "children": [ { "kind": "TypeNominal", @@ -49255,13 +46978,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInput", - "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDialogButton", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveDialogButtonABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -49283,8 +47007,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInput", - "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDialogButton", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveDialogButtonABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49313,8 +47037,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInput:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDialogButton:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveDialogButtonABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49337,8 +47061,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE22apptentiveDialogButtonABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveDialogButtonABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49381,6 +47105,20 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -49429,6 +47167,13 @@ "printedName": "CustomDebugStringConvertible", "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, @@ -49611,6 +47356,20 @@ "isFromExtension": true, "enumRawTypeName": "Int", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -49753,117 +47512,352 @@ "intro_iOS": "2.0", "declAttributes": [ "Available", - "Final" + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UIToolbar", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIToolbar", + "declAttributes": [ + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UIView", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CGFloat", + "printedName": "CGFloat", + "children": [ + { + "kind": "Var", + "name": "apptentiveButtonBorderWidth", + "printedName": "apptentiveButtonBorderWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_Macosx": "10.0", + "intro_iOS": "2.0", + "intro_tvOS": "9.0", + "intro_watchOS": "1.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available", + "Available" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "apptentiveDialogCornerRadius", + "printedName": "apptentiveDialogCornerRadius", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvpZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvgZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvsZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvMZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_Macosx": "10.0", + "intro_iOS": "2.0", + "intro_tvOS": "9.0", + "intro_watchOS": "1.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available", + "Available" ], "isFromExtension": true, "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIToolbar", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIToolbar", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIView", - "isExternal": 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", - "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": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CGFloat", - "printedName": "CGFloat", - "children": [ { "kind": "Var", - "name": "apptentiveButtonBorderWidth", - "printedName": "apptentiveButtonBorderWidth", + "name": "apptentiveDialogButtonSpacing", + "printedName": "apptentiveDialogButtonSpacing", "children": [ { "kind": "TypeNominal", @@ -49873,13 +47867,14 @@ } ], "declKind": "Var", - "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ", - "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvpZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", + "Custom", "AccessControl", "RawDocComment" ], @@ -49899,8 +47894,8 @@ } ], "declKind": "Accessor", - "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ", - "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvgZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49925,8 +47920,8 @@ } ], "declKind": "Accessor", - "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ", - "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvsZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49945,8 +47940,8 @@ } ], "declKind": "Accessor", - "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ", - "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvMZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49990,6 +47985,20 @@ ], "isExternal": true, "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "SignedNumeric", @@ -50226,6 +48235,20 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "BitwiseCopyable", + "printedName": "BitwiseCopyable", + "usr": "s:s15BitwiseCopyableP", + "mangledName": "$ss15BitwiseCopyableP" + }, { "kind": "Conformance", "name": "_FormatSpecifiable", @@ -50270,13 +48293,6 @@ "usr": "s:s21_ObjectiveCBridgeableP", "mangledName": "$ss21_ObjectiveCBridgeableP" }, - { - "kind": "Conformance", - "name": "VectorArithmetic", - "printedName": "VectorArithmetic", - "usr": "s:7SwiftUI16VectorArithmeticP", - "mangledName": "$s7SwiftUI16VectorArithmeticP" - }, { "kind": "Conformance", "name": "_FormatSpecifiable", @@ -50299,6 +48315,13 @@ "usr": "s:7SwiftUI18_FormatSpecifiableP", "mangledName": "$s7SwiftUI18_FormatSpecifiableP" }, + { + "kind": "Conformance", + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" + }, { "kind": "Conformance", "name": "Animatable", @@ -50322,6702 +48345,5090 @@ "mangledName": "$s7SwiftUI10AnimatableP" } ] + }, + { + "kind": "TypeDecl", + "name": "CGSize", + "printedName": "CGSize", + "children": [ + { + "kind": "Var", + "name": "apptentiveThumbnail", + "printedName": "apptentiveThumbnail", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Var", + "usr": "s:So6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvpZ", + "mangledName": "$sSo6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Accessor", + "usr": "s:So6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvgZ", + "mangledName": "$sSo6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Accessor", + "usr": "s:So6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvsZ", + "mangledName": "$sSo6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:So6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvMZ", + "mangledName": "$sSo6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@S@CGSize", + "moduleName": "CoreFoundation", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSValue", + "printedName": "Foundation.NSValue", + "usr": "c:objc(cs)NSValue" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Animatable", + "printedName": "Animatable", + "children": [ + { + "kind": "TypeWitness", + "name": "AnimatableData", + "printedName": "AnimatableData", + "children": [ + { + "kind": "TypeNominal", + "name": "AnimatablePair", + "printedName": "SwiftUI.AnimatablePair", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "usr": "s:7SwiftUI14AnimatablePairV" + } + ] + } + ], + "usr": "s:7SwiftUI10AnimatableP", + "mangledName": "$s7SwiftUI10AnimatableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UICornerConfiguration", + "printedName": "UICornerConfiguration", + "children": [ + { + "kind": "Var", + "name": "apptentiveDialogButton", + "printedName": "apptentiveDialogButton", + "children": [ + { + "kind": "TypeNominal", + "name": "UICornerConfiguration", + "printedName": "UIKit.UICornerConfiguration", + "usr": "s:5UIKit21UICornerConfigurationV" + } + ], + "declKind": "Var", + "usr": "s:5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvpZ", + "mangledName": "$s5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UICornerConfiguration", + "printedName": "UIKit.UICornerConfiguration", + "usr": "s:5UIKit21UICornerConfigurationV" + } + ], + "declKind": "Accessor", + "usr": "s:5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvgZ", + "mangledName": "$s5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UICornerConfiguration", + "printedName": "UIKit.UICornerConfiguration", + "usr": "s:5UIKit21UICornerConfigurationV" + } + ], + "declKind": "Accessor", + "usr": "s:5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvsZ", + "mangledName": "$s5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvMZ", + "mangledName": "$s5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "26.0", + "intro_tvOS": "26.0", + "declAttributes": [ + "Available", + "Available", + "Available" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:5UIKit21UICornerConfigurationV", + "mangledName": "$s5UIKit21UICornerConfigurationV", + "moduleName": "UIKit", + "intro_iOS": "26.0", + "intro_tvOS": "26.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": 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": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } + ] } ], "json_format_version": 8 }, "ConstValues": [ { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift", "kind": "BooleanLiteral", - "offset": 448, + "offset": 465, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift", "kind": "IntegerLiteral", - "offset": 492, + "offset": 509, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "BooleanLiteral", - "offset": 2009, + "offset": 5693, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "BooleanLiteral", - "offset": 3658, - "length": 4, - "value": "true" + "offset": 8013, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", + "kind": "IntegerLiteral", + "offset": 8298, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", + "kind": "StringLiteral", + "offset": 9409, + "length": 13, + "value": "\"placeholder\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", + "kind": "Array", + "offset": 9436, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", + "kind": "BooleanLiteral", + "offset": 9489, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", + "kind": "BooleanLiteral", + "offset": 9522, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "BooleanLiteral", - "offset": 25379, + "offset": 9557, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "BooleanLiteral", - "offset": 25646, + "offset": 33026, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "IntegerLiteral", - "offset": 50519, + "offset": 61946, "length": 2, "value": "60" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "IntegerLiteral", - "offset": 50591, + "offset": 62018, "length": 3, "value": "600" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "BooleanLiteral", - "offset": 50666, + "offset": 62093, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 292, "length": 25, "value": "\"message_center_fallback\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 365, "length": 22, "value": "\"MC Unavailable Title\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 433, "length": 33, "value": "\"Message Center is not Available\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 477, "length": 41, "value": "\"Title for note saying MC is unavailable\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 568, "length": 24, "value": "\"MC Unavailable Message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 638, "length": 62, "value": "\"Make sure your device can access the internet and try again.\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 711, "length": 43, "value": "\"Message for note saying MC is unavailable\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 808, "length": 31, "value": "\"MC Unavailable Dismiss Button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 885, "length": 4, "value": "\"OK\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 900, "length": 56, "value": "\"Dismiss button title for note saying MC is unavailable\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", - "offset": 1086, + "offset": 1122, "length": 9, "value": "\"dismiss\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "Array", - "offset": 1160, + "offset": 1196, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", - "offset": 1303, + "offset": 1339, "length": 11, "value": "\"TextModal\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "Array", - "offset": 1451, + "offset": 1487, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "Array", - "offset": 1618, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/WebVewController.swift", - "kind": "StringLiteral", - "offset": 191, - "length": 17, - "value": "\"ApptentiveKit.WebViewController\"" + "offset": 1654, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", - "offset": 743, - "length": 8, - "value": "\"action\"" + "offset": 1673, + "length": 13, + "value": "\"placeholder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", - "kind": "StringLiteral", - "offset": 783, - "length": 9, - "value": "\"invokes\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "kind": "BooleanLiteral", + "offset": 1716, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", "kind": "StringLiteral", - "offset": 743, + "offset": 1601, "length": 8, "value": "\"action\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", "kind": "StringLiteral", - "offset": 783, + "offset": 1641, "length": 9, "value": "\"invokes\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", - "kind": "StringLiteral", - "offset": 1034, - "length": 10, - "value": "\"alt_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", "kind": "StringLiteral", - "offset": 1034, + "offset": 1892, "length": 10, "value": "\"alt_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", "kind": "IntegerLiteral", "offset": 390, "length": 3, "value": "270" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", "kind": "Array", "offset": 494, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", "kind": "BooleanLiteral", "offset": 534, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", - "kind": "StringLiteral", - "offset": 283, - "length": 20, - "value": "\"ApptentiveKit.DialogViewController\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 819, - "length": 14, - "value": "\"content_type\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 866, - "length": 15, - "value": "\"original_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 819, "length": 14, "value": "\"content_type\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 866, "length": 15, "value": "\"original_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1147, - "length": 15, - "value": "\"profile_photo\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1147, "length": 15, "value": "\"profile_photo\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1294, - "length": 9, - "value": "\"inbound\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1375, - "length": 8, - "value": "\"hidden\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1415, - "length": 11, - "value": "\"automated\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1455, - "length": 12, - "value": "\"created_at\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1294, "length": 9, "value": "\"inbound\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1375, "length": 8, "value": "\"hidden\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1415, "length": 11, "value": "\"automated\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1455, "length": 12, "value": "\"created_at\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1572, "length": 11, "value": "\"ends_with\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1607, "length": 10, "value": "\"has_more\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1572, - "length": 11, - "value": "\"ends_with\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/AttachmentView.swift", + "kind": "IntegerLiteral", + "offset": 595, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1607, - "length": 10, - "value": "\"has_more\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/AttachmentView.swift", + "kind": "IntegerLiteral", + "offset": 599, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", - "kind": "StringLiteral", - "offset": 485, + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/AttachmentView.swift", + "kind": "BooleanLiteral", + "offset": 438, "length": 5, - "value": "\"new\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", - "kind": "StringLiteral", - "offset": 519, - "length": 6, - "value": "\"self\"" + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", "kind": "StringLiteral", - "offset": 485, + "offset": 496, "length": 5, "value": "\"new\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", "kind": "StringLiteral", - "offset": 519, + "offset": 530, "length": 6, "value": "\"self\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", - "kind": "StringLiteral", - "offset": 624, - "length": 8, - "value": "\"target\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", "kind": "StringLiteral", - "offset": 624, + "offset": 635, "length": 8, "value": "\"target\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5383, - "length": 9, - "value": "\"os_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5418, - "length": 12, - "value": "\"os_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5454, - "length": 10, - "value": "\"os_build\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5543, - "length": 23, - "value": "\"content_size_category\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5592, - "length": 12, - "value": "\"locale_raw\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5638, - "length": 21, - "value": "\"locale_country_code\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5694, - "length": 22, - "value": "\"locale_language_code\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5757, - "length": 20, - "value": "\"integration_config\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5815, - "length": 15, - "value": "\"advertiser_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5857, - "length": 13, - "value": "\"custom_data\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5383, "length": 9, "value": "\"os_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5418, "length": 12, "value": "\"os_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5454, "length": 10, "value": "\"os_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5543, "length": 23, "value": "\"content_size_category\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5592, "length": 12, "value": "\"locale_raw\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5638, "length": 21, "value": "\"locale_country_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5694, "length": 22, "value": "\"locale_language_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5757, "length": 20, "value": "\"integration_config\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5815, "length": 15, "value": "\"advertiser_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5857, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 1580, - "length": 5, - "value": "\"alg\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 1610, - "length": 5, - "value": "\"typ\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 1580, "length": 5, "value": "\"alg\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 1610, "length": 5, "value": "\"typ\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 1690, - "length": 7, - "value": "\"HS256\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 1728, - "length": 7, - "value": "\"HS512\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 1690, "length": 7, "value": "\"HS256\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 1728, "length": 7, "value": "\"HS512\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 1800, - "length": 5, - "value": "\"JWT\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 1800, "length": 5, "value": "\"JWT\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4369, - "length": 5, - "value": "\"iss\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4401, - "length": 5, - "value": "\"exp\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4434, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4468, - "length": 5, - "value": "\"aud\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4503, - "length": 5, - "value": "\"nbf\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4537, - "length": 5, - "value": "\"iat\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4568, - "length": 5, - "value": "\"jti\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4369, "length": 5, "value": "\"iss\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4401, "length": 5, "value": "\"exp\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4434, "length": 5, "value": "\"sub\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4468, "length": 5, "value": "\"aud\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4503, "length": 5, "value": "\"nbf\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4537, "length": 5, "value": "\"iat\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4568, "length": 5, "value": "\"jti\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", - "kind": "StringLiteral", - "offset": 599, - "length": 12, - "value": "\"full_width\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", - "kind": "StringLiteral", - "offset": 639, - "length": 12, - "value": "\"align_left\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", "kind": "StringLiteral", - "offset": 680, - "length": 13, - "value": "\"align_right\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", - "kind": "StringLiteral", - "offset": 720, - "length": 8, - "value": "\"center\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", - "kind": "StringLiteral", - "offset": 599, + "offset": 579, "length": 12, "value": "\"full_width\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", "kind": "StringLiteral", - "offset": 639, + "offset": 619, "length": 12, "value": "\"align_left\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", "kind": "StringLiteral", - "offset": 680, + "offset": 660, "length": 13, "value": "\"align_right\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", "kind": "StringLiteral", - "offset": 720, + "offset": 700, "length": 8, "value": "\"center\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 384, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 407, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 428, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 870, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 1000, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 1126, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/ResourceManager.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Fresh Install\/FreshLoader.swift", "kind": "BooleanLiteral", - "offset": 2627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 8, - "value": "\"center\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 264, - "length": 6, - "value": "\"left\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 7, - "value": "\"right\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 8, - "value": "\"center\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 264, - "length": 6, - "value": "\"left\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 7, - "value": "\"right\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 353, - "length": 15, - "value": "\"-apple-system\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 383, - "length": 7, - "value": "\".SFUI\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 353, - "length": 15, - "value": "\"-apple-system\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 383, - "length": 7, - "value": "\".SFUI\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", - "kind": "StringLiteral", - "offset": 982, - "length": 11, - "value": "\"device_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", - "kind": "StringLiteral", - "offset": 1018, - "length": 11, - "value": "\"person_id\"" + "offset": 2446, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", - "kind": "StringLiteral", - "offset": 1059, - "length": 16, - "value": "\"encryption_key\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/ResourceManager.swift", + "kind": "BooleanLiteral", + "offset": 2319, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", "kind": "StringLiteral", "offset": 982, "length": 11, "value": "\"device_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", "kind": "StringLiteral", "offset": 1018, "length": 11, "value": "\"person_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", "kind": "StringLiteral", "offset": 1059, "length": 16, "value": "\"encryption_key\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 244, + "offset": 257, "length": 10, "value": "\"Roster.B\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 293, + "offset": 306, "length": 16, "value": "\"Conversation.B\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 352, + "offset": 365, "length": 16, "value": "\"PayloadQueue.B\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 403, + "offset": 416, "length": 15, "value": "\"MessageList.B\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 466, + "offset": 479, "length": 13, "value": "\"Resources.B\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 519, + "offset": 532, "length": 7, "value": "\"plist\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel+Message.swift", - "kind": "StringLiteral", - "offset": 4159, - "length": 10, - "value": "\"ApptentiveKit.Attachment\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Saver.swift", - "kind": "StringLiteral", - "offset": 2528, - "length": 26, - "value": "\"ApptentiveKit.EncryptedPropertyListSaver\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "kind": "IntegerLiteral", + "offset": 255, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 583, + "offset": 625, "length": 3, "value": "1.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 667, + "offset": 709, "length": 3, "value": "6.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 980, + "offset": 1022, "length": 3, "value": "1.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 991, + "offset": 1033, "length": 4, "value": "-5.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1005, + "offset": 1047, "length": 3, "value": "1.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1017, + "offset": 1059, "length": 4, "value": "-5.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1075, + "offset": 1117, "length": 4, "value": "16.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1132, + "offset": 1174, "length": 4, "value": "16.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1309, + "offset": 1351, "length": 3, "value": "6.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1320, + "offset": 1362, "length": 3, "value": "2.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1333, + "offset": 1375, "length": 3, "value": "6.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1345, + "offset": 1387, "length": 3, "value": "2.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1402, + "offset": 1444, "length": 4, "value": "14.5" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1459, + "offset": 1501, "length": 4, "value": "14.5" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift", "kind": "StringLiteral", - "offset": 5627, + "offset": 5485, "length": 30, "value": "\"Should have a view model set\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift", "kind": "StringLiteral", - "offset": 6119, + "offset": 5977, "length": 36, "value": "\"Should have a choice question set.\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", "kind": "BooleanLiteral", "offset": 277, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", "kind": "StringLiteral", "offset": 875, "length": 12, "value": "\"totalCount\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", "kind": "StringLiteral", "offset": 922, "length": 14, "value": "\"versionCount\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", "kind": "StringLiteral", "offset": 969, "length": 12, "value": "\"buildCount\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", "kind": "StringLiteral", "offset": 1015, "length": 13, "value": "\"lastInvoked\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", - "kind": "StringLiteral", - "offset": 199, - "length": 11, - "value": "\"ApptentiveKit.LegacyCount\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/ErrorResponse.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 12, - "value": "\"error_type\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/ErrorResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/ErrorResponse.swift", "kind": "StringLiteral", - "offset": 361, + "offset": 371, "length": 12, "value": "\"error_type\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 6638, + "offset": 283, "length": 16, "value": "\"com.apptentive\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 6658, + "offset": 303, "length": 13, "value": "\".apptentive\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 6957, - "length": 13, - "value": "\".engagement\"" + "offset": 471, + "length": 9, + "value": "\"default\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7104, - "length": 14, - "value": "\".interaction\"" + "offset": 612, + "length": 12, + "value": "\"engagement\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7244, - "length": 10, - "value": "\".network\"" + "offset": 757, + "length": 13, + "value": "\"interaction\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7379, - "length": 10, - "value": "\".payload\"" + "offset": 895, + "length": 9, + "value": "\"network\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7511, - "length": 12, - "value": "\".targeting\"" + "offset": 1028, + "length": 9, + "value": "\"payload\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7649, + "offset": 1158, "length": 11, - "value": "\".messages\"" + "value": "\"targeting\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7792, - "length": 14, - "value": "\".attachments\"" + "offset": 1294, + "length": 10, + "value": "\"messages\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7926, - "length": 12, - "value": "\".resources\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8708, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8722, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8738, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8755, - "length": 5, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8770, - "length": 8, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8788, - "length": 5, - "value": "6" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8708, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8722, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8738, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8755, - "length": 5, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8770, - "length": 8, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8788, - "length": 5, - "value": "6" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8708, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8722, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8738, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8755, - "length": 5, - "value": "4" + "offset": 1435, + "length": 13, + "value": "\"attachments\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8770, - "length": 8, - "value": "5" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", + "kind": "StringLiteral", + "offset": 1567, + "length": 11, + "value": "\"resources\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8788, + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", + "kind": "BooleanLiteral", + "offset": 1807, "length": 5, - "value": "6" + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "IntegerLiteral", - "offset": 4932, + "offset": 2690, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "IntegerLiteral", - "offset": 6843, + "offset": 3810, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "IntegerLiteral", - "offset": 6905, + "offset": 3841, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "IntegerLiteral", - "offset": 6843, + "offset": 3885, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "IntegerLiteral", - "offset": 6905, + "offset": 3947, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "BooleanLiteral", - "offset": 26940, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 515, - "length": 10, - "value": "\"ApptentiveKit.Apptentive\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31435, - "length": 19, - "value": "\"INVALID_ALGORITHM\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31481, - "length": 17, - "value": "\"MALFORMED_TOKEN\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31523, - "length": 15, - "value": "\"INVALID_TOKEN\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31566, - "length": 19, - "value": "\"MISSING_SUB_CLAIM\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31616, - "length": 22, - "value": "\"MISMATCHED_SUB_CLAIM\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31666, - "length": 19, - "value": "\"INVALID_SUB_CLAIM\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31710, - "length": 15, - "value": "\"EXPIRED_TOKEN\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31750, - "length": 15, - "value": "\"REVOKED_TOKEN\"" + "offset": 5868, + "length": 52, + "value": "\"https:\/\/\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31791, - "length": 17, - "value": "\"MISSING_APP_KEY\"" + "offset": 5883, + "length": 1, + "value": "\".api.digital.\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31840, - "length": 23, - "value": "\"MISSING_APP_SIGNATURE\"" + "offset": 5905, + "length": 1, + "value": "\".alchemer.com\/\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31899, - "length": 28, - "value": "\"INVALID_KEY_SIGNATURE_PAIR\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", + "kind": "BooleanLiteral", + "offset": 24961, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31435, + "offset": 31618, "length": 19, "value": "\"INVALID_ALGORITHM\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31481, + "offset": 31664, "length": 17, "value": "\"MALFORMED_TOKEN\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31523, + "offset": 31706, "length": 15, "value": "\"INVALID_TOKEN\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31566, + "offset": 31749, "length": 19, "value": "\"MISSING_SUB_CLAIM\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31616, + "offset": 31799, "length": 22, "value": "\"MISMATCHED_SUB_CLAIM\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31666, + "offset": 31849, "length": 19, "value": "\"INVALID_SUB_CLAIM\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31710, + "offset": 31893, "length": 15, "value": "\"EXPIRED_TOKEN\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31750, + "offset": 31933, "length": 15, "value": "\"REVOKED_TOKEN\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31791, + "offset": 31974, "length": 17, "value": "\"MISSING_APP_KEY\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31840, + "offset": 32023, "length": 23, "value": "\"MISSING_APP_SIGNATURE\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31899, + "offset": 32082, "length": 28, "value": "\"INVALID_KEY_SIGNATURE_PAIR\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", + "kind": "BooleanLiteral", + "offset": 418, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", "kind": "StringLiteral", "offset": 1144, "length": 6, "value": "\"name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", "kind": "StringLiteral", "offset": 1185, "length": 14, "value": "\"emailAddress\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", "kind": "StringLiteral", "offset": 1233, "length": 13, "value": "\"mParticleId\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", "kind": "StringLiteral", "offset": 1279, "length": 12, "value": "\"customData\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", - "kind": "StringLiteral", - "offset": 201, - "length": 12, - "value": "\"ApptentiveKit.LegacyPerson\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", "kind": "Array", "offset": 263, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", "kind": "IntegerLiteral", "offset": 306, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", "kind": "IntegerLiteral", "offset": 526, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", "kind": "Dictionary", "offset": 661, "length": 3, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "kind": "IntegerLiteral", + "offset": 6487, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "kind": "IntegerLiteral", + "offset": 6499, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", "kind": "IntegerLiteral", "offset": 6922, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "kind": "IntegerLiteral", + "offset": 7043, + "length": 3, + "value": "350" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "kind": "IntegerLiteral", + "offset": 7056, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", "kind": "FloatLiteral", "offset": 355, "length": 3, "value": "1.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", "kind": "FloatLiteral", "offset": 439, "length": 3, "value": "6.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "IntegerLiteral", + "offset": 987, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "IntegerLiteral", + "offset": 1039, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "IntegerLiteral", + "offset": 1140, + "length": 2, + "value": "52" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", "kind": "FloatLiteral", - "offset": 991, + "offset": 1198, + "length": 4, + "value": "21.0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "FloatLiteral", + "offset": 1259, + "length": 4, + "value": "21.0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "IntegerLiteral", + "offset": 1343, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "FloatLiteral", + "offset": 1401, "length": 4, "value": "16.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", "kind": "FloatLiteral", - "offset": 1048, + "offset": 1462, "length": 4, "value": "16.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", - "kind": "IntegerLiteral", - "offset": 1100, - "length": 1, - "value": "0" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria+Decodable.swift", + "kind": "StringLiteral", + "offset": 5617, + "length": 5, + "value": "\"sec\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", - "kind": "IntegerLiteral", - "offset": 1152, - "length": 1, - "value": "0" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria+Decodable.swift", + "kind": "StringLiteral", + "offset": 5656, + "length": 7, + "value": "\"_type\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", - "kind": "IntegerLiteral", - "offset": 1204, - "length": 2, - "value": "44" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "kind": "StringLiteral", + "offset": 1462, + "length": 31, + "value": "\"EEE, dd MMM yyyy HH:mm:ss zzz\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "kind": "StringLiteral", + "offset": 1544, + "length": 13, + "value": "\"en_US_POSIX\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "kind": "StringLiteral", + "offset": 1615, + "length": 5, + "value": "\"GMT\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "kind": "BooleanLiteral", + "offset": 9790, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14535, + "offset": 15861, "length": 16, "value": "\"APPTENTIVE-KEY\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14593, + "offset": 15919, "length": 22, "value": "\"APPTENTIVE-SIGNATURE\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14657, + "offset": 15983, "length": 22, "value": "\"APPTENTIVE-ENCRYPTED\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14712, + "offset": 16038, "length": 15, "value": "\"X-API-Version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14761, + "offset": 16087, "length": 14, "value": "\"Content-Type\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14811, + "offset": 16137, "length": 15, "value": "\"Authorization\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14862, + "offset": 16188, "length": 16, "value": "\"Accept-Charset\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14915, + "offset": 16241, "length": 17, "value": "\"Accept-Language\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14961, + "offset": 16287, "length": 8, "value": "\"Accept\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 15001, + "offset": 16327, "length": 12, "value": "\"User-Agent\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "BooleanLiteral", "offset": 334, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1413, "length": 7, "value": "\"state\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1453, "length": 24, "value": "\"conversationIdentifier\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1515, "length": 29, "value": "\"conversationLocalIdentifier\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1580, "length": 10, "value": "\"fileName\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1616, "length": 5, "value": "\"JWT\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1650, "length": 8, "value": "\"userId\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1694, "length": 15, "value": "\"encryptionKey\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1776, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1791, - "length": 16, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1821, - "length": 13, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1848, - "length": 9, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1871, - "length": 8, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1893, - "length": 9, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1776, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1791, - "length": 16, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1821, - "length": 13, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1848, - "length": 9, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1871, - "length": 8, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1893, - "length": 9, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1776, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1791, "length": 16, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1821, "length": 13, "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1848, "length": 9, "value": "3" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1871, "length": 8, "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1893, "length": 9, "value": "5" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "StringLiteral", - "offset": 237, - "length": 30, - "value": "\"ApptentiveKit.LegacyConversationMetadataItem\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift", - "kind": "FloatLiteral", - "offset": 366, - "length": 3, - "value": "5.0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift", - "kind": "FloatLiteral", - "offset": 392, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift", - "kind": "BooleanLiteral", - "offset": 415, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", "kind": "StringLiteral", "offset": 1034, "length": 13, "value": "\"app_release\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", - "kind": "StringLiteral", - "offset": 1034, - "length": 13, - "value": "\"app_release\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", "kind": "StringLiteral", "offset": 1485, "length": 11, "value": "\"device_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", "kind": "StringLiteral", "offset": 1521, "length": 11, "value": "\"person_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", "kind": "StringLiteral", "offset": 1562, "length": 16, "value": "\"encryption_key\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", - "kind": "StringLiteral", - "offset": 1485, - "length": 11, - "value": "\"device_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", - "kind": "StringLiteral", - "offset": 1521, - "length": 11, - "value": "\"person_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SecureTokenStore.swift", "kind": "StringLiteral", - "offset": 1562, + "offset": 417, "length": 16, - "value": "\"encryption_key\"" + "value": "\"com.apptentive\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "BooleanLiteral", - "offset": 5249, + "offset": 5311, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "BooleanLiteral", - "offset": 5407, + "offset": 5469, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "StringLiteral", - "offset": 10862, + "offset": 11548, "length": 8, "value": "\"single\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "StringLiteral", - "offset": 10902, + "offset": 11588, "length": 7, "value": "\"intro\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "StringLiteral", - "offset": 10943, + "offset": 11629, "length": 9, "value": "\"success\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "BooleanLiteral", - "offset": 20330, + "offset": 18623, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "BooleanLiteral", - "offset": 20386, + "offset": 18679, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "Array", - "offset": 22115, + "offset": 20434, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyLoader.swift", - "kind": "StringLiteral", - "offset": 178, - "length": 12, - "value": "\"ApptentiveKit.LegacyLoader\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageList.swift", "kind": "BooleanLiteral", "offset": 395, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageList.swift", "kind": "Array", "offset": 1485, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageList.swift", "kind": "BooleanLiteral", "offset": 1577, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageList.swift", "kind": "BooleanLiteral", "offset": 1601, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 3968, - "length": 22, - "value": "\"cf_bundle_identifier\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4014, - "length": 32, - "value": "\"cf_bundle_short_version_string\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4068, - "length": 19, - "value": "\"cf_bundle_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4119, - "length": 19, - "value": "\"app_store_receipt\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4167, - "length": 7, - "value": "\"debug\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4209, - "length": 19, - "value": "\"overriding_styles\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4261, - "length": 19, - "value": "\"deployment_target\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4305, - "length": 13, - "value": "\"dt_compiler\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4348, - "length": 19, - "value": "\"dt_platform_build\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4396, - "length": 18, - "value": "\"dt_platform_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4446, - "length": 21, - "value": "\"dt_platform_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4492, - "length": 14, - "value": "\"dt_sdk_build\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4530, - "length": 13, - "value": "\"dt_sdk_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4565, - "length": 10, - "value": "\"dt_xcode\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4602, - "length": 16, - "value": "\"dt_xcode_build\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4645, - "length": 13, - "value": "\"sdk_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4697, - "length": 26, - "value": "\"sdk_programming_language\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4753, - "length": 17, - "value": "\"sdk_author_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4798, - "length": 14, - "value": "\"sdk_platform\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4851, - "length": 26, - "value": "\"sdk_distribution_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4913, - "length": 18, - "value": "\"sdk_distribution\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 3968, "length": 22, "value": "\"cf_bundle_identifier\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4014, "length": 32, "value": "\"cf_bundle_short_version_string\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4068, "length": 19, "value": "\"cf_bundle_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4119, "length": 19, "value": "\"app_store_receipt\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4167, "length": 7, "value": "\"debug\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4209, "length": 19, "value": "\"overriding_styles\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4261, "length": 19, "value": "\"deployment_target\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4305, "length": 13, "value": "\"dt_compiler\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4348, "length": 19, "value": "\"dt_platform_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4396, "length": 18, "value": "\"dt_platform_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4446, "length": 21, "value": "\"dt_platform_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4492, "length": 14, "value": "\"dt_sdk_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4530, "length": 13, "value": "\"dt_sdk_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4565, "length": 10, "value": "\"dt_xcode\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4602, "length": 16, "value": "\"dt_xcode_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4645, "length": 13, "value": "\"sdk_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4697, "length": 26, "value": "\"sdk_programming_language\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4753, "length": 17, "value": "\"sdk_author_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4798, "length": 14, "value": "\"sdk_platform\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4851, "length": 26, "value": "\"sdk_distribution_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4913, "length": 18, "value": "\"sdk_distribution\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 5093, - "length": 13, - "value": "\"has_receipt\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 5093, "length": 13, "value": "\"has_receipt\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "FloatLiteral", - "offset": 369, + "offset": 384, "length": 4, "value": "0.30" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "IntegerLiteral", - "offset": 541, + "offset": 556, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "IntegerLiteral", - "offset": 809, + "offset": 824, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "kind": "BooleanLiteral", + "offset": 1758, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "FloatLiteral", - "offset": 3697, + "offset": 3283, "length": 4, "value": "0.33" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "BooleanLiteral", - "offset": 3800, + "offset": 3386, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "BooleanLiteral", - "offset": 3848, + "offset": 3434, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "BooleanLiteral", - "offset": 35779, + "offset": 11155, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "kind": "Array", + "offset": 11348, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "BooleanLiteral", - "offset": 43159, + "offset": 33291, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", - "kind": "StringLiteral", - "offset": 180, - "length": 20, - "value": "\"ApptentiveKit.SurveyViewController\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", - "kind": "StringLiteral", - "offset": 180, - "length": 20, - "value": "\"ApptentiveKit.SurveyViewController\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "kind": "BooleanLiteral", + "offset": 40790, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", "kind": "Array", - "offset": 1675, + "offset": 1726, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", "kind": "StringLiteral", - "offset": 2136, + "offset": 2187, "length": 9, "value": "\"invalid\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", "kind": "StringLiteral", - "offset": 2160, + "offset": 2211, "length": 24, "value": "\"An error has occurred.\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", "kind": "StringLiteral", - "offset": 2206, + "offset": 2257, "length": 7, "value": "\"Close\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", "kind": "Array", - "offset": 2229, + "offset": 2280, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 4266, - "length": 6, - "value": "\"$and\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 4375, - "length": 5, - "value": "\"$or\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 6, - "value": "\"$not\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 4266, + "offset": 4567, "length": 6, "value": "\"$and\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 4375, + "offset": 4676, "length": 5, "value": "\"$or\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 4482, + "offset": 4783, "length": 6, "value": "\"$not\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5479, - "length": 9, - "value": "\"$exists\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5510, - "length": 5, - "value": "\"$ne\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5534, - "length": 5, - "value": "\"$eq\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5567, - "length": 6, - "value": "\"$lte\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5594, - "length": 5, - "value": "\"$lt\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5623, - "length": 5, - "value": "\"$gt\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5659, - "length": 6, - "value": "\"$gte\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5688, - "length": 14, - "value": "\"$starts_with\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5723, - "length": 12, - "value": "\"$ends_with\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 11, - "value": "\"$contains\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 9, - "value": "\"$before\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5813, - "length": 8, - "value": "\"$after\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5479, + "offset": 5780, "length": 9, "value": "\"$exists\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5510, + "offset": 5811, "length": 5, "value": "\"$ne\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5534, + "offset": 5835, "length": 5, "value": "\"$eq\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5567, + "offset": 5868, "length": 6, "value": "\"$lte\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5594, + "offset": 5895, "length": 5, "value": "\"$lt\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5623, + "offset": 5924, "length": 5, "value": "\"$gt\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5659, + "offset": 5960, "length": 6, "value": "\"$gte\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5688, + "offset": 5989, "length": 14, "value": "\"$starts_with\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5723, + "offset": 6024, "length": 12, "value": "\"$ends_with\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 11, - "value": "\"$contains\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 9, - "value": "\"$before\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5813, - "length": 8, - "value": "\"$after\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", - "kind": "StringLiteral", - "offset": 278, - "length": 33, - "value": "\"ApptentiveKit.MessageCenterComposeContainerView\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4202, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4214, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "StringLiteral", - "offset": 36567, - "length": 17, - "value": "\"SELF MATCHES %@\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "StringLiteral", - "offset": 36586, - "length": 51, - "value": "\"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,64}\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "StringLiteral", - "offset": 37821, - "length": 12, - "value": "\"message_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "StringLiteral", - "offset": 37821, - "length": 12, - "value": "\"message_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", - "kind": "BooleanLiteral", - "offset": 305, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", - "kind": "StringLiteral", - "offset": 967, - "length": 12, - "value": "\"engagement\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", - "kind": "StringLiteral", - "offset": 1008, - "length": 8, - "value": "\"person\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", - "kind": "StringLiteral", - "offset": 1045, - "length": 8, - "value": "\"device\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", - "kind": "StringLiteral", - "offset": 1082, - "length": 8, - "value": "\"random\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "kind": "StringLiteral", + "offset": 6057, + "length": 11, + "value": "\"$contains\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 220, - "length": 18, - "value": "\"ApptentiveKit.LegacyConversation\"" + "offset": 6087, + "length": 9, + "value": "\"$before\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 1770, - "length": 30, - "value": "\"Should have a view model set\"" + "offset": 6114, + "length": 8, + "value": "\"$after\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", "kind": "BooleanLiteral", - "offset": 1559, - "length": 5, - "value": "false" + "offset": 3358, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", "kind": "IntegerLiteral", - "offset": 1669, + "offset": 3415, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", "kind": "IntegerLiteral", - "offset": 1673, + "offset": 3427, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", - "kind": "BooleanLiteral", - "offset": 1523, - "length": 5, - "value": "false" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", + "kind": "IntegerLiteral", + "offset": 3438, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Event.swift", - "kind": "StringLiteral", - "offset": 4639, - "length": 5, - "value": "\"#%\/\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", + "kind": "IntegerLiteral", + "offset": 3451, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "Array", - "offset": 7259, + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", + "kind": "IntegerLiteral", + "offset": 3597, "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "BooleanLiteral", - "offset": 7283, - "length": 5, - "value": "false" + "value": "24" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "BooleanLiteral", - "offset": 8278, - "length": 5, - "value": "false" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1667, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "BooleanLiteral", - "offset": 10809, - "length": 5, - "value": "false" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", + "kind": "IntegerLiteral", + "offset": 3509, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 15943, - "length": 13, - "value": "\"app_release\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", + "kind": "IntegerLiteral", + "offset": 3521, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", "kind": "StringLiteral", - "offset": 15943, - "length": 13, - "value": "\"app_release\"" + "offset": 34038, + "length": 17, + "value": "\"SELF MATCHES %@\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", "kind": "StringLiteral", - "offset": 18034, - "length": 19, - "value": "\"client_created_at\"" + "offset": 34057, + "length": 51, + "value": "\"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,64}\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", "kind": "StringLiteral", - "offset": 18087, - "length": 30, - "value": "\"client_created_at_utc_offset\"" + "offset": 35292, + "length": 12, + "value": "\"message_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18143, - "length": 12, - "value": "\"session_id\"" + "offset": 573, + "length": 6, + "value": "\"None\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18177, - "length": 7, - "value": "\"token\"" + "offset": 607, + "length": 13, + "value": "\"Placeholder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18235, - "length": 13, - "value": "\"custom_data\"" + "offset": 653, + "length": 19, + "value": "\"Anonymous Pending\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18374, + "offset": 702, "length": 16, - "value": "\"interaction_id\"" + "value": "\"Legacy Pending\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18415, - "length": 6, - "value": "\"data\"" + "offset": 744, + "length": 11, + "value": "\"Anonymous\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18565, - "length": 7, - "value": "\"email\"" + "offset": 780, + "length": 11, + "value": "\"Logged In\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18618, - "length": 14, - "value": "\"mparticle_id\"" + "offset": 817, + "length": 12, + "value": "\"Logged Out\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 18697, - "length": 9, - "value": "\"os_name\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", + "kind": "BooleanLiteral", + "offset": 305, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", "kind": "StringLiteral", - "offset": 18732, + "offset": 967, "length": 12, - "value": "\"os_version\"" + "value": "\"engagement\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", "kind": "StringLiteral", - "offset": 18768, - "length": 10, - "value": "\"os_build\"" + "offset": 1008, + "length": 8, + "value": "\"person\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", "kind": "StringLiteral", - "offset": 18857, - "length": 23, - "value": "\"content_size_category\"" + "offset": 1045, + "length": 8, + "value": "\"device\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", "kind": "StringLiteral", - "offset": 18906, - "length": 12, - "value": "\"locale_raw\"" + "offset": 1082, + "length": 8, + "value": "\"random\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift", "kind": "StringLiteral", - "offset": 18952, - "length": 21, - "value": "\"locale_country_code\"" + "offset": 1791, + "length": 30, + "value": "\"Should have a view model set\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19008, - "length": 22, - "value": "\"locale_language_code\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift", + "kind": "BooleanLiteral", + "offset": 1580, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19056, - "length": 12, - "value": "\"utc_offset\"" + "offset": 104, + "length": 3, + "value": "\"b\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19109, - "length": 20, - "value": "\"integration_config\"" + "offset": 130, + "length": 8, + "value": "\"strong\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19167, - "length": 15, - "value": "\"advertiser_id\"" + "offset": 161, + "length": 3, + "value": "\"i\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19262, - "length": 22, - "value": "\"cf_bundle_identifier\"" + "offset": 189, + "length": 4, + "value": "\"em\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19308, - "length": 32, - "value": "\"cf_bundle_short_version_string\"" + "offset": 219, + "length": 3, + "value": "\"u\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19362, - "length": 19, - "value": "\"cf_bundle_version\"" + "offset": 252, + "length": 3, + "value": "\"s\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19413, - "length": 19, - "value": "\"app_store_receipt\"" + "offset": 280, + "length": 4, + "value": "\"li\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19461, - "length": 7, - "value": "\"debug\"" + "offset": 314, + "length": 4, + "value": "\"ul\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19503, - "length": 19, - "value": "\"overriding_styles\"" + "offset": 346, + "length": 4, + "value": "\"ol\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19555, - "length": 19, - "value": "\"deployment_target\"" + "offset": 376, + "length": 3, + "value": "\"p\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19599, - "length": 13, - "value": "\"dt_compiler\"" + "offset": 399, + "length": 5, + "value": "\"div\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19642, - "length": 19, - "value": "\"dt_platform_build\"" + "offset": 425, + "length": 6, + "value": "\"span\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19690, - "length": 18, - "value": "\"dt_platform_name\"" + "offset": 450, + "length": 4, + "value": "\"br\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19740, - "length": 21, - "value": "\"dt_platform_version\"" + "offset": 475, + "length": 3, + "value": "\"a\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19786, - "length": 14, - "value": "\"dt_sdk_build\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "Dictionary", + "offset": 1566, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19824, - "length": 13, - "value": "\"dt_sdk_name\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "Array", + "offset": 1600, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19859, - "length": 10, - "value": "\"dt_xcode\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "IntegerLiteral", + "offset": 1627, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19896, - "length": 16, - "value": "\"dt_xcode_build\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "BooleanLiteral", + "offset": 1657, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19939, - "length": 13, - "value": "\"sdk_version\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "IntegerLiteral", + "offset": 1691, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19991, - "length": 26, - "value": "\"sdk_programming_language\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "Array", + "offset": 1786, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 20047, - "length": 17, - "value": "\"sdk_author_name\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "Dictionary", + "offset": 1867, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 20092, - "length": 14, - "value": "\"sdk_platform\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "kind": "IntegerLiteral", + "offset": 775, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 20145, - "length": 26, - "value": "\"sdk_distribution_version\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "kind": "IntegerLiteral", + "offset": 779, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 20207, - "length": 18, - "value": "\"sdk_distribution\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "kind": "IntegerLiteral", + "offset": 848, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "kind": "IntegerLiteral", + "offset": 852, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "kind": "BooleanLiteral", + "offset": 629, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Event.swift", "kind": "StringLiteral", - "offset": 20296, - "length": 11, - "value": "\"automated\"" + "offset": 4674, + "length": 5, + "value": "\"#%\/\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "kind": "Array", + "offset": 7315, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "kind": "BooleanLiteral", + "offset": 7339, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "kind": "BooleanLiteral", + "offset": 8342, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "kind": "BooleanLiteral", + "offset": 10873, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20332, - "length": 8, - "value": "\"hidden\"" + "offset": 16003, + "length": 13, + "value": "\"app_release\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18034, + "offset": 18094, "length": 19, "value": "\"client_created_at\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18087, + "offset": 18147, "length": 30, "value": "\"client_created_at_utc_offset\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18143, + "offset": 18203, "length": 12, "value": "\"session_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18177, + "offset": 18237, "length": 7, "value": "\"token\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18235, + "offset": 18295, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18374, + "offset": 18434, "length": 16, "value": "\"interaction_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18415, + "offset": 18475, "length": 6, "value": "\"data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18565, + "offset": 18625, "length": 7, "value": "\"email\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18618, + "offset": 18678, "length": 14, "value": "\"mparticle_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18697, + "offset": 18757, "length": 9, "value": "\"os_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18732, + "offset": 18792, "length": 12, "value": "\"os_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18768, + "offset": 18828, "length": 10, "value": "\"os_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18857, + "offset": 18917, "length": 23, "value": "\"content_size_category\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18906, + "offset": 18966, "length": 12, "value": "\"locale_raw\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18952, + "offset": 19012, "length": 21, "value": "\"locale_country_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19008, + "offset": 19068, "length": 22, "value": "\"locale_language_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19056, + "offset": 19116, "length": 12, "value": "\"utc_offset\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19109, + "offset": 19169, "length": 20, "value": "\"integration_config\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19167, + "offset": 19227, "length": 15, "value": "\"advertiser_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19262, + "offset": 19322, "length": 22, "value": "\"cf_bundle_identifier\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19308, + "offset": 19368, "length": 32, "value": "\"cf_bundle_short_version_string\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19362, + "offset": 19422, "length": 19, "value": "\"cf_bundle_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19413, + "offset": 19473, "length": 19, "value": "\"app_store_receipt\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19461, + "offset": 19521, "length": 7, "value": "\"debug\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19503, + "offset": 19563, "length": 19, "value": "\"overriding_styles\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19555, + "offset": 19615, "length": 19, "value": "\"deployment_target\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19599, + "offset": 19659, "length": 13, "value": "\"dt_compiler\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19642, + "offset": 19702, "length": 19, "value": "\"dt_platform_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19690, + "offset": 19750, "length": 18, "value": "\"dt_platform_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19740, + "offset": 19800, "length": 21, "value": "\"dt_platform_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19786, + "offset": 19846, "length": 14, "value": "\"dt_sdk_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19824, + "offset": 19884, "length": 13, "value": "\"dt_sdk_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19859, + "offset": 19919, "length": 10, "value": "\"dt_xcode\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19896, + "offset": 19956, "length": 16, "value": "\"dt_xcode_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19939, + "offset": 19999, "length": 13, "value": "\"sdk_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19991, + "offset": 20051, "length": 26, "value": "\"sdk_programming_language\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20047, + "offset": 20107, "length": 17, "value": "\"sdk_author_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20092, + "offset": 20152, "length": 14, "value": "\"sdk_platform\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20145, + "offset": 20205, "length": 26, "value": "\"sdk_distribution_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20207, + "offset": 20267, "length": 18, "value": "\"sdk_distribution\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20296, + "offset": 20356, "length": 11, "value": "\"automated\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20332, + "offset": 20392, "length": 8, "value": "\"hidden\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20592, + "offset": 20652, "length": 8, "value": "\"file[]\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 595, - "length": 22, - "value": "\"support_display_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 646, - "length": 23, - "value": "\"support_display_email\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 701, - "length": 19, - "value": "\"support_image_url\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 749, - "length": 15, - "value": "\"hide_branding\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 794, - "length": 16, - "value": "\"message_center\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 846, - "length": 24, - "value": "\"message_center_enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 900, - "length": 17, - "value": "\"metrics_enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 957, - "length": 23, - "value": "\"apptimize_integration\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1017, - "length": 15, - "value": "\"collect_ad_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 595, - "length": 22, - "value": "\"support_display_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 646, - "length": 23, - "value": "\"support_display_email\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 701, - "length": 19, - "value": "\"support_image_url\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 749, - "length": 15, - "value": "\"hide_branding\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 794, - "length": 16, - "value": "\"message_center\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 846, - "length": 24, - "value": "\"message_center_enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 900, - "length": 17, - "value": "\"metrics_enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 957, - "length": 23, - "value": "\"apptimize_integration\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1017, - "length": 15, - "value": "\"collect_ad_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1402, - "length": 9, - "value": "\"fg_poll\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1457, - "length": 9, - "value": "\"bg_poll\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1499, - "length": 16, - "value": "\"email_required\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1553, - "length": 20, - "value": "\"notification_popup\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1402, + "offset": 1493, "length": 9, "value": "\"fg_poll\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1457, + "offset": 1548, "length": 9, "value": "\"bg_poll\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1499, - "length": 16, - "value": "\"email_required\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1553, - "length": 20, - "value": "\"notification_popup\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1746, - "length": 9, - "value": "\"enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1746, - "length": 9, - "value": "\"enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1293, + "offset": 1642, "length": 13, - "value": "\"submit_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1338, - "length": 18, - "value": "\"validation_error\"" + "value": "\"last_update\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1385, - "length": 13, - "value": "\"description\"" + "offset": 1685, + "length": 16, + "value": "\"message_center\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1430, + "offset": 1732, "length": 17, - "value": "\"success_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1482, - "length": 22, - "value": "\"show_success_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1533, - "length": 15, - "value": "\"required_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1609, - "length": 21, - "value": "\"close_confirm_title\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1671, - "length": 23, - "value": "\"close_confirm_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1743, - "length": 26, - "value": "\"close_confirm_close_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1817, - "length": 25, - "value": "\"close_confirm_back_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1877, - "length": 22, - "value": "\"terms_and_conditions\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1293, - "length": 13, - "value": "\"submit_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1338, - "length": 18, - "value": "\"validation_error\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1385, - "length": 13, - "value": "\"description\"" + "value": "\"hibernate_until\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1430, + "offset": 1780, "length": 17, - "value": "\"success_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1482, - "length": 22, - "value": "\"show_success_message\"" + "value": "\"metrics_enabled\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1533, - "length": 15, - "value": "\"required_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 464, + "length": 4, + "value": "17.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1609, - "length": 21, - "value": "\"close_confirm_title\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 535, + "length": 4, + "value": "13.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1671, - "length": 23, - "value": "\"close_confirm_message\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 606, + "length": 4, + "value": "12.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1743, - "length": 26, - "value": "\"close_confirm_close_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 677, + "length": 4, + "value": "11.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1817, - "length": 25, - "value": "\"close_confirm_back_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 751, + "length": 4, + "value": "15.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1877, - "length": 22, - "value": "\"terms_and_conditions\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 821, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "StringLiteral", "offset": 350, "length": 5, "value": "\"ios\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "IntegerLiteral", "offset": 622, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "IntegerLiteral", "offset": 638, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 677, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "IntegerLiteral", "offset": 883, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "IntegerLiteral", "offset": 899, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 936, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 1091, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 1176, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 1288, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 2200, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 2347, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", "kind": "StringLiteral", "offset": 266, "length": 32, "value": "\"com.apptentive.payloadEnqueued\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", "kind": "StringLiteral", "offset": 350, "length": 31, "value": "\"com.apptentive.payloadSending\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", "kind": "StringLiteral", "offset": 430, "length": 28, "value": "\"com.apptentive.payloadSent\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", "kind": "StringLiteral", "offset": 509, "length": 30, "value": "\"com.apptentive.payloadFailed\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", "kind": "StringLiteral", "offset": 705, "length": 39, "value": "\"com.apptentive.apptentiveEventEngaged\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "StringLiteral", - "offset": 921, + "offset": 966, "length": 21, "value": "\"MessageCellReceived\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "StringLiteral", - "offset": 979, + "offset": 1024, "length": 17, "value": "\"MessageSentCell\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "StringLiteral", - "offset": 1038, + "offset": 1083, "length": 22, "value": "\"AutomatedMessageCell\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "kind": "BooleanLiteral", + "offset": 8080, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "BooleanLiteral", - "offset": 27554, + "offset": 26983, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "IntegerLiteral", - "offset": 27655, + "offset": 27084, "length": 6, "value": "0xFFFF" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "IntegerLiteral", - "offset": 28105, + "offset": 27534, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 27, - "value": "\"ApptentiveKit.MessageCenterViewController\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPRequestRetrier.swift", + "kind": "FloatLiteral", + "offset": 3555, + "length": 3, + "value": "5.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 27, - "value": "\"ApptentiveKit.MessageCenterViewController\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPRequestRetrier.swift", + "kind": "FloatLiteral", + "offset": 3581, + "length": 3, + "value": "2.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPRequestRetrier.swift", "kind": "BooleanLiteral", - "offset": 1182, + "offset": 3604, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "kind": "BooleanLiteral", + "offset": 1269, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "BooleanLiteral", - "offset": 1286, + "offset": 1373, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "BooleanLiteral", - "offset": 1394, + "offset": 1481, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "IntegerLiteral", - "offset": 1766, + "offset": 1853, "length": 3, "value": "100" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2849, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "IntegerLiteral", - "offset": 6500, + "offset": 7516, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", - "kind": "StringLiteral", - "offset": 9554, - "length": 24, - "value": "\"invoked_interaction_id\"" + "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", - "kind": "StringLiteral", - "offset": 9603, - "length": 11, - "value": "\"action_id\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "kind": "IntegerLiteral", + "offset": 7563, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "StringLiteral", - "offset": 9554, + "offset": 10389, "length": 24, "value": "\"invoked_interaction_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "StringLiteral", - "offset": 9603, + "offset": 10438, "length": 11, "value": "\"action_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 1277, + "offset": 1259, "length": 2, "value": "15" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 1381, + "offset": 1363, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "BooleanLiteral", - "offset": 1654, + "offset": 1636, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 2425, + "offset": 2427, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 4064, + "offset": 4066, "length": 2, "value": "36" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "FloatLiteral", - "offset": 4118, + "offset": 4120, "length": 7, "value": "22.3333" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 4177, + "offset": 4179, "length": 2, "value": "36" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 4229, + "offset": 4231, "length": 2, "value": "24" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 4283, + "offset": 4285, "length": 2, "value": "24" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/ProfileView.swift", "kind": "BooleanLiteral", - "offset": 4394, - "length": 5, - "value": "false" + "offset": 329, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/ProfileView.swift", "kind": "BooleanLiteral", - "offset": 4670, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", - "kind": "StringLiteral", - "offset": 296, - "length": 10, - "value": "\"ApptentiveKit.DialogView\"" + "offset": 755, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", "kind": "BooleanLiteral", "offset": 292, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", "kind": "StringLiteral", "offset": 886, "length": 14, "value": "\"interactions\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", "kind": "StringLiteral", "offset": 933, "length": 12, "value": "\"codePoints\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", - "kind": "StringLiteral", - "offset": 209, - "length": 16, - "value": "\"ApptentiveKit.LegacyEngagement\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift", + "kind": "BooleanLiteral", + "offset": 342, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift", "kind": "StringLiteral", "offset": 770, "length": 15, "value": "\"random_values\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift", - "kind": "StringLiteral", - "offset": 201, - "length": 12, - "value": "\"ApptentiveKit.LegacyRandom\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift", + "kind": "BooleanLiteral", + "offset": 337, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift", "kind": "StringLiteral", "offset": 750, "length": 12, "value": "\"customData\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift", - "kind": "StringLiteral", - "offset": 201, - "length": 12, - "value": "\"ApptentiveKit.LegacyDevice\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria+Logging.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria+Logging.swift", "kind": "IntegerLiteral", - "offset": 4400, + "offset": 4430, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/EditProfileViewController.swift", - "kind": "StringLiteral", - "offset": 183, - "length": 25, - "value": "\"ApptentiveKit.EditProfileViewController\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadata.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadata.swift", "kind": "BooleanLiteral", "offset": 322, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadata.swift", - "kind": "StringLiteral", - "offset": 229, - "length": 26, - "value": "\"ApptentiveKit.LegacyConversationMetadata\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", - "kind": "StringLiteral", - "offset": 1018, - "length": 7, - "value": "\"email\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", - "kind": "StringLiteral", - "offset": 1053, - "length": 14, - "value": "\"mparticle_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", - "kind": "StringLiteral", - "offset": 1094, - "length": 13, - "value": "\"custom_data\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", "kind": "StringLiteral", "offset": 1018, "length": 7, "value": "\"email\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", "kind": "StringLiteral", "offset": 1053, "length": 14, "value": "\"mparticle_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", "kind": "StringLiteral", "offset": 1094, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", - "kind": "StringLiteral", - "offset": 1026, - "length": 13, - "value": "\"custom_data\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", - "kind": "StringLiteral", - "offset": 1067, - "length": 11, - "value": "\"automated\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", - "kind": "StringLiteral", - "offset": 1103, - "length": 8, - "value": "\"hidden\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", "kind": "StringLiteral", "offset": 1026, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", "kind": "StringLiteral", "offset": 1067, "length": 11, "value": "\"automated\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", "kind": "StringLiteral", "offset": 1103, "length": 8, "value": "\"hidden\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 21099, + "offset": 14199, "length": 5, "value": "15411" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23299, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23373, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23443, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23510, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23581, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23669, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23744, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23796, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23852, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23924, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 24007, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 24145, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23299, + "offset": 16236, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23373, + "offset": 16310, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23443, + "offset": 16380, "length": 1, "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23510, + "offset": 16447, "length": 1, "value": "3" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23581, + "offset": 16518, "length": 1, "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23669, + "offset": 16606, "length": 1, "value": "5" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23744, + "offset": 16681, "length": 1, "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23796, + "offset": 16733, "length": 1, "value": "7" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23852, + "offset": 16789, "length": 1, "value": "8" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23924, + "offset": 16861, "length": 1, "value": "9" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 24007, + "offset": 16944, "length": 2, "value": "10" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 24145, + "offset": 17082, "length": 2, "value": "11" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "BooleanLiteral", - "offset": 25125, + "offset": 18058, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "BooleanLiteral", - "offset": 26514, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "StringLiteral", - "offset": 24283, - "length": 23, - "value": "\"ApptentiveKit.ApptentiveConfiguration\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 27878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 27956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28052, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28115, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 27878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 27956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28052, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28115, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28423, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28471, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28520, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28575, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28659, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28724, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28365, + "offset": 19939, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28423, + "offset": 19997, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28471, + "offset": 20045, "length": 1, "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28520, + "offset": 20094, "length": 1, "value": "3" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28575, + "offset": 20149, "length": 1, "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28659, + "offset": 20233, "length": 1, "value": "5" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28724, + "offset": 20298, "length": 1, "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "StringLiteral", - "offset": 29276, - "length": 18, - "value": "\"ApptentiveKit.TermsAndConditions\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2476, - "length": 9, - "value": "\"os_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2511, - "length": 12, - "value": "\"os_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2547, - "length": 10, - "value": "\"os_build\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2636, - "length": 23, - "value": "\"content_size_category\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2685, - "length": 12, - "value": "\"locale_raw\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2731, - "length": 21, - "value": "\"locale_country_code\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2787, - "length": 22, - "value": "\"locale_language_code\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2850, - "length": 20, - "value": "\"integration_config\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2908, - "length": 15, - "value": "\"advertiser_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2950, - "length": 13, - "value": "\"custom_data\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2476, "length": 9, "value": "\"os_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2511, "length": 12, "value": "\"os_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2547, "length": 10, "value": "\"os_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2636, "length": 23, "value": "\"content_size_category\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2685, "length": 12, "value": "\"locale_raw\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2731, "length": 21, "value": "\"locale_country_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2787, "length": 22, "value": "\"locale_language_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2850, "length": 20, "value": "\"integration_config\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2908, "length": 15, "value": "\"advertiser_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2950, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", "kind": "StringLiteral", - "offset": 228, + "offset": 241, "length": 16, "value": "\"Conversation.A\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", "kind": "StringLiteral", - "offset": 279, + "offset": 292, "length": 16, "value": "\"PayloadQueue.A\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", "kind": "StringLiteral", - "offset": 330, + "offset": 343, "length": 15, "value": "\"MessageList.A\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", "kind": "StringLiteral", - "offset": 377, - "length": 7, - "value": "\"plist\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 6614, - "length": 14, - "value": "\"Distribution\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 6645, + "offset": 390, "length": 7, "value": "\"plist\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "Array", - "offset": 6804, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 6887, - "length": 28, - "value": "\"CFBundleShortVersionString\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 6979, - "length": 65, - "value": "\"Unable to read SDK version from ApptentiveKit's Info.plist file\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 7065, - "length": 13, - "value": "\"Unavailable\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 7164, - "length": 28, - "value": "\"CFBundleShortVersionString\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 7313, - "length": 133, - "value": "\"ApptentiveKit framework is damaged! Version in Info.plist (\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 7398, - "length": 1, - "value": "\") does not match SDK version (\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 7444, - "length": 1, - "value": "\")\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/HostContext.swift", + "kind": "BooleanLiteral", + "offset": 4926, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "StringLiteral", - "offset": 982, + "offset": 1083, "length": 7, "value": "\"error\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "StringLiteral", - "offset": 1018, + "offset": 1119, "length": 9, "value": "\"payload\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 2469, + "offset": 3191, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 5766, + "offset": 6832, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 5889, + "offset": 6955, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 5990, + "offset": 7056, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 6128, + "offset": 7194, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "kind": "BooleanLiteral", + "offset": 7703, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 6445, + "offset": 11970, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyBackgroundView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyBackgroundView.swift", "kind": "Array", "offset": 295, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyBackgroundView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyBackgroundView.swift", "kind": "Array", "offset": 350, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", - "kind": "IntegerLiteral", - "offset": 1392, - "length": 2, - "value": "44" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "BooleanLiteral", + "offset": 3112, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", - "kind": "IntegerLiteral", - "offset": 1404, + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "BooleanLiteral", + "offset": 3443, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "Array", + "offset": 3586, "length": 2, - "value": "44" + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", - "kind": "BooleanLiteral", - "offset": 2594, - "length": 4, - "value": "true" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "StringLiteral", + "offset": 3617, + "length": 7, + "value": "\"draft\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", "kind": "BooleanLiteral", - "offset": 2907, + "offset": 3681, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", - "kind": "StringLiteral", - "offset": 2625, - "length": 16, - "value": "\"interaction_id\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "IntegerLiteral", + "offset": 3728, + "length": 2, + "value": "30" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", - "kind": "StringLiteral", - "offset": 2666, - "length": 6, - "value": "\"data\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "IntegerLiteral", + "offset": 3772, + "length": 3, + "value": "300" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", - "kind": "StringLiteral", - "offset": 2704, - "length": 13, - "value": "\"custom_data\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "IntegerLiteral", + "offset": 3866, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "IntegerLiteral", + "offset": 3944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", "kind": "StringLiteral", "offset": 2625, "length": 16, "value": "\"interaction_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", "kind": "StringLiteral", "offset": 2666, "length": 6, "value": "\"data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", "kind": "StringLiteral", "offset": 2704, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", "kind": "IntegerLiteral", - "offset": 648, + "offset": 636, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", "kind": "IntegerLiteral", - "offset": 750, + "offset": 738, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1251, - "length": 13, - "value": "\"description\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1295, - "length": 17, - "value": "\"success_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1353, - "length": 22, - "value": "\"show_success_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1407, - "length": 18, - "value": "\"validation_error\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1454, - "length": 15, - "value": "\"required_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1508, - "length": 21, - "value": "\"close_confirm_title\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1570, - "length": 23, - "value": "\"close_confirm_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1643, - "length": 26, - "value": "\"close_confirm_close_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1718, - "length": 25, - "value": "\"close_confirm_back_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1778, - "length": 22, - "value": "\"terms_and_conditions\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1829, - "length": 15, - "value": "\"question_sets\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 11, - "value": "\"render_as\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1913, - "length": 19, - "value": "\"intro_button_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", + "kind": "IntegerLiteral", + "offset": 1589, + "length": 3, + "value": "270" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1967, - "length": 21, - "value": "\"success_button_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", + "kind": "IntegerLiteral", + "offset": 1602, + "length": 2, + "value": "45" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2019, - "length": 17, - "value": "\"disclaimer_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Random.swift", + "kind": "BooleanLiteral", + "offset": 1441, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1251, + "offset": 3164, "length": 13, "value": "\"description\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1295, + "offset": 3208, "length": 17, "value": "\"success_message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1353, + "offset": 3266, "length": 22, "value": "\"show_success_message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1407, + "offset": 3320, "length": 18, "value": "\"validation_error\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1454, + "offset": 3367, "length": 15, "value": "\"required_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1508, + "offset": 3421, "length": 21, "value": "\"close_confirm_title\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1570, + "offset": 3483, "length": 23, "value": "\"close_confirm_message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1643, + "offset": 3556, "length": 26, "value": "\"close_confirm_close_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1718, + "offset": 3631, "length": 25, "value": "\"close_confirm_back_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1778, + "offset": 3691, "length": 22, "value": "\"terms_and_conditions\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1829, + "offset": 3742, "length": 15, "value": "\"question_sets\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1869, + "offset": 3782, "length": 11, "value": "\"render_as\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1913, + "offset": 3826, "length": 19, "value": "\"intro_button_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1967, + "offset": 3880, "length": 21, "value": "\"success_button_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 2019, + "offset": 3932, "length": 17, "value": "\"disclaimer_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2731, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2823, - "length": 15, - "value": "\"error_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2899, - "length": 16, - "value": "\"answer_choices\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2949, - "length": 16, - "value": "\"min_selections\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2999, - "length": 16, - "value": "\"max_selections\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3078, - "length": 15, - "value": "\"freeform_hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3123, - "length": 5, - "value": "\"min\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3157, - "length": 5, - "value": "\"max\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3195, - "length": 11, - "value": "\"min_label\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3239, - "length": 11, - "value": "\"max_label\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2731, + "offset": 6147, "length": 7, "value": "\"value\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 2823, + "offset": 6239, "length": 15, "value": "\"error_message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 2899, + "offset": 6315, "length": 16, "value": "\"answer_choices\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 2949, + "offset": 6365, "length": 16, "value": "\"min_selections\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 2999, + "offset": 6415, "length": 16, "value": "\"max_selections\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3078, + "offset": 6494, "length": 15, "value": "\"freeform_hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3123, + "offset": 6539, "length": 5, "value": "\"min\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3157, + "offset": 6573, "length": 5, "value": "\"max\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3195, + "offset": 6611, "length": 11, "value": "\"min_label\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3239, + "offset": 6655, "length": 11, "value": "\"max_label\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3334, + "offset": 6750, "length": 13, "value": "\"multichoice\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3376, + "offset": 6792, "length": 13, "value": "\"multiselect\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3418, + "offset": 6834, "length": 12, "value": "\"singleline\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3334, - "length": 13, - "value": "\"multichoice\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3376, - "length": 13, - "value": "\"multiselect\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3418, - "length": 12, - "value": "\"singleline\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3799, + "offset": 7722, "length": 6, "value": "\"hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3799, - "length": 6, - "value": "\"hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3900, + "offset": 7823, "length": 15, "value": "\"select_option\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3945, + "offset": 7868, "length": 14, "value": "\"select_other\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3900, - "length": 15, - "value": "\"select_option\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3945, - "length": 14, - "value": "\"select_other\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 4366, - "length": 13, - "value": "\"button_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 4366, + "offset": 8289, "length": 13, "value": "\"button_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 5454, + "offset": 9377, "length": 22, "value": "\"next_question_set_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 5454, - "length": 22, - "value": "\"next_question_set_id\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift", + "kind": "BooleanLiteral", + "offset": 1354, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift", "kind": "StringLiteral", - "offset": 1253, + "offset": 1715, "length": 16, "value": "\"interaction_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift", "kind": "StringLiteral", - "offset": 1253, + "offset": 1898, "length": 16, - "value": "\"interaction_id\"" + "value": "\"application_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AttachmentManager.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AttachmentManager.swift", "kind": "StringLiteral", - "offset": 575, + "offset": 626, "length": 3, "value": "\"#\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AttachmentManager.swift", "kind": "StringLiteral", - "offset": 921, - "length": 19, - "value": "\"automated_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 970, - "length": 16, - "value": "\"error_messages\"" + "offset": 369, + "length": 17, + "value": "\"ApptentiveKit.AttachmentManager\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 921, "length": 19, "value": "\"automated_message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 970, "length": 16, "value": "\"error_messages\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1398, "length": 11, "value": "\"hint_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1440, "length": 13, "value": "\"send_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1483, "length": 12, "value": "\"send_start\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1522, "length": 9, "value": "\"send_ok\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1560, "length": 11, "value": "\"send_fail\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1601, "length": 12, "value": "\"close_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1650, "length": 20, "value": "\"close_confirm_body\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1709, "length": 22, "value": "\"close_discard_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1769, "length": 21, "value": "\"close_cancel_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1398, - "length": 11, - "value": "\"hint_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1440, - "length": 13, - "value": "\"send_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1483, - "length": 12, - "value": "\"send_start\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1522, - "length": 9, - "value": "\"send_ok\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1560, - "length": 11, - "value": "\"send_fail\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 12, - "value": "\"close_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1650, - "length": 20, - "value": "\"close_confirm_body\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1709, - "length": 22, - "value": "\"close_discard_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1769, - "length": 21, - "value": "\"close_cancel_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1976, - "length": 17, - "value": "\"http_error_body\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2030, - "length": 20, - "value": "\"network_error_body\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1976, "length": 17, "value": "\"http_error_body\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2030, "length": 20, "value": "\"network_error_body\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2260, - "length": 11, - "value": "\"image_url\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2260, "length": 11, "value": "\"image_url\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2649, - "length": 11, - "value": "\"name_hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2690, - "length": 12, - "value": "\"email_hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2733, - "length": 13, - "value": "\"skip_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2777, - "length": 13, - "value": "\"save_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2827, - "length": 19, - "value": "\"email_explanation\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2649, "length": 11, "value": "\"name_hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2690, "length": 12, "value": "\"email_hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2733, "length": 13, "value": "\"skip_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2777, "length": 13, "value": "\"save_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2827, "length": 19, "value": "\"email_explanation\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 3059, - "length": 11, - "value": "\"name_hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 3100, - "length": 12, - "value": "\"email_hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 3143, - "length": 13, - "value": "\"skip_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 3187, - "length": 13, - "value": "\"save_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 3059, "length": 11, "value": "\"name_hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 3100, "length": 12, "value": "\"email_hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 3143, "length": 13, "value": "\"skip_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 3187, "length": 13, "value": "\"save_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 7577, + "offset": 8488, "length": 5, "value": "\"GET\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 7598, + "offset": 8509, "length": 5, "value": "\"PUT\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 7620, + "offset": 8531, "length": 6, "value": "\"POST\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 7645, + "offset": 8556, "length": 8, "value": "\"DELETE\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", - "kind": "StringLiteral", - "offset": 7577, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 7598, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", - "kind": "StringLiteral", - "offset": 7620, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", - "kind": "StringLiteral", - "offset": 8104, + "offset": 9015, "length": 32, "value": "\"application\/json;charset=UTF-8\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 8166, + "offset": 9077, "length": 26, "value": "\"application\/octet-stream\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Interaction.swift", - "kind": "StringLiteral", - "offset": 2896, - "length": 13, - "value": "\"api_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Interaction.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Interaction.swift", "kind": "StringLiteral", - "offset": 2896, + "offset": 2635, "length": 13, "value": "\"api_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", - "kind": "StringLiteral", - "offset": 390, - "length": 10, - "value": "\"yes_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", - "kind": "StringLiteral", - "offset": 423, - "length": 9, - "value": "\"no_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", "kind": "StringLiteral", - "offset": 390, + "offset": 752, "length": 10, "value": "\"yes_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", "kind": "StringLiteral", - "offset": 423, + "offset": 785, "length": 9, "value": "\"no_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "BooleanLiteral", - "offset": 676, + "offset": 689, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 856, + "offset": 862, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 1675, + "offset": 1852, "length": 20, "value": "\"person.crop.circle\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 2095, + "offset": 2188, "length": 7, "value": "\"xmark\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "StringLiteral", + "offset": 2935, + "length": 11, + "value": "\"paperclip\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 2802, + "offset": 2997, "length": 23, "value": "\"paperclip.circle.fill\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 3024, + "offset": 3248, + "length": 12, + "value": "\"paperplane\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "StringLiteral", + "offset": 3311, "length": 24, "value": "\"paperplane.circle.fill\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 3226, + "offset": 3496, "length": 19, "value": "\"messageSentBubble\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "9" + "offset": 3648, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3378, - "length": 1, - "value": "9" + "offset": 3658, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3389, + "offset": 3670, "length": 2, - "value": "14" + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3400, + "offset": 3681, "length": 2, - "value": "18" + "value": "52" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 3584, + "offset": 3830, "length": 23, "value": "\"messageReceivedBubble\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3731, - "length": 1, - "value": "9" + "offset": 3986, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3740, + "offset": 3996, "length": 2, - "value": "18" + "value": "52" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3752, + "offset": 4008, "length": 2, - "value": "14" + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3763, - "length": 1, - "value": "9" + "offset": 4019, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 3963, + "offset": 4185, "length": 10, "value": "\"document\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 4097, + "offset": 4328, "length": 2, "value": "14" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 4107, + "offset": 4338, "length": 1, "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 4118, + "offset": 4349, "length": 1, "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 4128, + "offset": 4359, "length": 2, "value": "14" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", - "kind": "StringLiteral", - "offset": 4329, - "length": 19, - "value": "\"minus.circle.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 4432, + "offset": 4507, "length": 19, "value": "\"minus.circle.fill\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 4821, + "offset": 4833, "length": 8, "value": "\"circle\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 5000, + "offset": 4974, "length": 8, "value": "\"square\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 5203, - "length": 30, - "value": "\"smallcircle.fill.circle.fill\"" + "offset": 5139, + "length": 32, + "value": "\"smallcircle.filled.circle.fill\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 5421, + "offset": 5321, "length": 23, "value": "\"checkmark.square.fill\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 9295, + "offset": 8329, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 9305, + "offset": 8339, "length": 4, "value": "0.42" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 9317, + "offset": 8351, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 9327, + "offset": 8361, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "IntegerLiteral", + "offset": 9281, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "FloatLiteral", + "offset": 9291, + "length": 4, + "value": "0.28" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 10266, + "offset": 9303, + "length": 4, + "value": "0.24" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "IntegerLiteral", + "offset": 9316, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "FloatLiteral", + "offset": 9369, "length": 4, "value": "0.86" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 10279, + "offset": 9382, "length": 3, "value": "0.1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 10290, + "offset": 9393, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 10300, + "offset": 9403, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 10344, + "offset": 14978, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 10354, + "offset": 14988, "length": 4, "value": "0.28" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 10366, + "offset": 15000, "length": 4, "value": "0.24" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 10379, + "offset": 15013, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 16331, + "offset": 15066, "length": 4, "value": "0.86" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 16344, + "offset": 15079, "length": 3, "value": "0.1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 16355, + "offset": 15090, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 16365, + "offset": 15100, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 16409, - "length": 1, + "offset": 22586, + "length": 15, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", - "kind": "FloatLiteral", - "offset": 16419, - "length": 4, - "value": "0.28" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "IntegerLiteral", + "offset": 22927, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", - "kind": "FloatLiteral", - "offset": 16431, - "length": 4, - "value": "0.24" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "IntegerLiteral", + "offset": 23160, + "length": 2, + "value": "34" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 16444, + "offset": 23336, "length": 1, - "value": "1" + "value": "8" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 22781, - "length": 15, - "value": "1" + "offset": 23490, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 22781, - "length": 15, - "value": "1" + "offset": 23502, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 23128, - "length": 1, - "value": "2" + "offset": 23797, + "length": 2, + "value": "32" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 638, "length": 17, "value": "\"apptentiveError\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 809, "length": 24, "value": "\"apptentiveGroupPrimary\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 991, "length": 26, "value": "\"apptentiveGroupSecondary\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1183, "length": 30, "value": "\"apptentiveRangeControlBorder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1367, "length": 24, "value": "\"attachmentDeleteButton\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1527, "length": 15, "value": "\"barForeground\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1666, "length": 9, "value": "\"barTint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1805, "length": 12, "value": "\"buttonTint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1949, "length": 13, "value": "\"choiceLabel\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2104, "length": 18, "value": "\"dialogButtonText\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2262, "length": 17, "value": "\"dialogSeparator\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2409, "length": 12, "value": "\"dialogText\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2551, "length": 12, "value": "\"disclaimer\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2705, "length": 18, "value": "\"imageNotSelected\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2867, "length": 19, "value": "\"instructionsLabel\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 3036, "length": 22, "value": "\"messageBubbleInbound\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 3210, "length": 23, "value": "\"messageBubbleOutbound\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 3381, "length": 21, "value": "\"messageLabelInbound\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 3556, "length": 24, "value": "\"messageTextInputBorder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 3706, "length": 10, "value": "\"question\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 3892, - "length": 35, - "value": "\"rangeNotSelectedSegmentBackground\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 4073, + "offset": 3862, "length": 20, "value": "\"surveyGreetingText\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 4237, + "offset": 4026, "length": 19, "value": "\"surveyImageChoice\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 4394, + "offset": 4183, "length": 16, "value": "\"termsOfService\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 4538, + "offset": 4327, "length": 11, "value": "\"textInput\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 4697, + "offset": 4486, "length": 21, "value": "\"textInputBackground\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 4858, + "offset": 4647, "length": 17, "value": "\"textInputBorder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 5031, + "offset": 4820, "length": 25, "value": "\"textInputBorderSelected\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 5206, + "offset": 4995, "length": 22, "value": "\"textInputPlaceholder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 5388, + "offset": 5177, "length": 27, "value": "\"unselectedSurveyIndicator\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 5662, - "length": 18, - "value": "\"attachmentButton\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 5830, - "length": 23, - "value": "\"checkmark.square.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 5975, - "length": 8, - "value": "\"circle\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 6099, - "length": 5, - "value": "\"doc\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 6230, + "offset": 5435, "length": 10, "value": "\"document\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 6392, + "offset": 5597, "length": 23, "value": "\"messageReceivedBubble\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 6559, + "offset": 5764, "length": 19, "value": "\"messageSentBubble\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 6720, - "length": 19, - "value": "\"minus.circle.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 6889, - "length": 23, - "value": "\"paperclip.circle.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7064, - "length": 24, - "value": "\"paperplane.circle.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7232, - "length": 20, - "value": "\"person.crop.circle\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7415, - "length": 30, - "value": "\"smallcircle.fill.circle.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7567, - "length": 8, - "value": "\"square\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7695, - "length": 7, - "value": "\"xmark\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7833, - "length": 13, - "value": "\"xmark.small\"" } ] } \ No newline at end of file diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index 517e212..fc06bf7 100644 --- a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +++ b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -1,8 +1,10 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) -// swift-module-flags: -target arm64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ApptentiveKit +// swift-compiler-version: Apple Swift version 6.2.3 (swiftlang-6.2.3.3.21 clang-1700.6.3.2) +// swift-module-flags: -target arm64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 6 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -module-name ApptentiveKit +// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.3 import CommonCrypto import CoreTelephony +import CryptoKit import DeveloperToolsSupport import Foundation import MobileCoreServices @@ -11,41 +13,48 @@ import PhotosUI import QuickLook import QuickLookThumbnailing import SafariServices +import Security import StoreKit import Swift import SwiftUI import UIKit +import UniformTypeIdentifiers +import UserNotifications import WebKit import _Concurrency import _StringProcessing import _SwiftConcurrencyShims -@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate { - @_Concurrency.MainActor(unsafe) @objc override dynamic public var next: UIKit.UIResponder? { +@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var next: UIKit.UIResponder? { @objc get } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool) - @_Concurrency.MainActor(unsafe) public func dismiss() - @_Concurrency.MainActor(unsafe) public func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage imageData: ApptentiveKit.DialogViewModel.Image) + #endif + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool) + @_Concurrency.MainActor public func dismiss() + @_Concurrency.MainActor public func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage imageData: ApptentiveKit.DialogViewModel.Image) @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class EnjoymentDialogViewController : ApptentiveKit.DialogViewController { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class EnjoymentDialogViewController : ApptentiveKit.DialogViewController { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class TextModalViewController : ApptentiveKit.DialogViewController { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class TextModalViewController : ApptentiveKit.DialogViewController { @objc deinit } extension ApptentiveKit.DialogViewModel { public enum Image : Swift.Equatable { case none case loading(altText: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout) - case loaded(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout, maxHeight: CoreFoundation.CGFloat) + case loaded(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout) public enum Layout : Swift.String { case fullWidth case leading case trailing case center + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get @@ -58,13 +67,15 @@ extension ApptentiveKit.DialogViewModel { @_hasMissingDesignatedInitializers public class Action { final public let label: Swift.String final public let actionType: ApptentiveKit.DialogViewModel.Action.ActionType - final public let buttonTapped: () -> Swift.Void + final public let buttonTapped: @_Concurrency.MainActor @Sendable () -> Swift.Void public enum ActionType : Swift.String { case dismiss case interaction case yes case no + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get @@ -73,45 +84,25 @@ extension ApptentiveKit.DialogViewModel { @objc deinit } } -public enum HTMLTextAlignment : Swift.String { - case center - case left - case right - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public enum SystemFontNames : Swift.String { - case html - case os - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -extension Swift.String { - public func attributedString(withFont font: UIKit.UIFont, alignment: ApptentiveKit.HTMLTextAlignment) -> Foundation.NSMutableAttributedString? -} extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let minValue: Swift.Int - final public let maxValue: Swift.Int - final public let minText: Swift.String? - final public let maxText: Swift.String? - public var selectedValueIndex: Swift.Int? { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let minValue: Swift.Int + @_Concurrency.MainActor final public let maxValue: Swift.Int + @_Concurrency.MainActor final public let minText: Swift.String? + @_Concurrency.MainActor final public let maxText: Swift.String? + @_Concurrency.MainActor public var selectedValueIndex: Swift.Int? { get } - public var value: Swift.Int? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var value: Swift.Int? { get } - public var choiceLabels: [Swift.String] { + #endif + @_Concurrency.MainActor public var choiceLabels: [Swift.String] { get } - public func selectValue(at index: Swift.Int) - public var accessibilityHintForSegment: Swift.String { + @_Concurrency.MainActor public func selectValue(at index: Swift.Int) + @_Concurrency.MainActor public var accessibilityHintForSegment: Swift.String { get } @objc deinit @@ -142,9 +133,9 @@ extension ApptentiveKit.MessageCenterViewModel { case sending case sent case failed - public func hash(into hasher: inout Swift.Hasher) public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.SentStatus, b: ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> Swift.Bool public func encode(to encoder: any Swift.Encoder) throws + public func hash(into hasher: inout Swift.Hasher) public var hashValue: Swift.Int { get } @@ -162,24 +153,32 @@ extension ApptentiveKit.MessageCenterViewModel { } @objc @_hasMissingDesignatedInitializers public class Attachment : ObjectiveC.NSObject, QuickLook.QLPreviewItem { final public let fileExtension: Swift.String? + #if compiler(>=5.3) && $NonescapableTypes public var thumbnail: UIKit.UIImage? { get } + #endif public var downloadProgress: Swift.Float public var localURL: Foundation.URL? public var displayName: Swift.String { get } + #if compiler(>=5.3) && $NonescapableTypes @objc public var previewItemURL: Foundation.URL? { @objc get } + #endif + #if compiler(>=5.3) && $NonescapableTypes @objc public var previewItemTitle: Swift.String? { @objc get } + #endif + #if compiler(>=5.3) && $NonescapableTypes @objc override dynamic public var accessibilityLabel: Swift.String? { @objc get @objc set } + #endif public var removeButtonAccessibilityLabel: Swift.String { get } @@ -191,21 +190,19 @@ extension ApptentiveKit.MessageCenterViewModel { @objc deinit } } -extension ApptentiveKit.Apptentive : UserNotifications.UNUserNotificationCenterDelegate { - @objc dynamic public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data) - @available(*, deprecated, message: "Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead.") - @objc dynamic public func setRemoteNotifcationDeviceToken(_ tokenData: Foundation.Data) - @objc dynamic public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool - @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool - @objc dynamic public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool - @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) - @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) +extension ApptentiveKit.Apptentive : @preconcurrency UserNotifications.UNUserNotificationCenterDelegate { + @objc @_Concurrency.MainActor final public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data) + @objc @_Concurrency.MainActor final public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping @Sendable (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool + @objc @_Concurrency.MainActor final public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool + @objc @_Concurrency.MainActor final public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool + @_Concurrency.MainActor @objc final public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping @Sendable (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) + @_Concurrency.MainActor @objc final public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping @Sendable () -> Swift.Void) } extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice] - public func toggleChoice(at index: Swift.Int) - public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice] + @_Concurrency.MainActor public func toggleChoice(at index: Swift.Int) + @_Concurrency.MainActor public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle { get } public enum SelectionStyle { @@ -217,18 +214,17 @@ extension ApptentiveKit.SurveyViewModel { get } } - @_hasMissingDesignatedInitializers public class Choice { - final public let label: Swift.String - public var htmlLabel: Foundation.NSAttributedString? - final public let placeholderText: Swift.String? - final public let supportsOther: Swift.Bool - public var isSelected: Swift.Bool { + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Choice { + @_Concurrency.MainActor final public let label: Foundation.AttributedString + @_Concurrency.MainActor final public let placeholderText: Swift.String? + @_Concurrency.MainActor final public let supportsOther: Swift.Bool + @_Concurrency.MainActor public var isSelected: Swift.Bool { get } - public var isMarkedAsInvalid: Swift.Bool { + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get } - public var value: Swift.String? { + @_Concurrency.MainActor public var value: Swift.String? { get set } @@ -237,94 +233,89 @@ extension ApptentiveKit.SurveyViewModel { @objc deinit } } -public struct ApptentiveLogger { - public static var shouldHideSensitiveLogs: Swift.Bool - public var logLevel: ApptentiveKit.LogLevel -} -extension ApptentiveKit.ApptentiveLogger { - public static var `default`: ApptentiveKit.ApptentiveLogger - public static var engagement: ApptentiveKit.ApptentiveLogger - public static var interaction: ApptentiveKit.ApptentiveLogger - public static var network: ApptentiveKit.ApptentiveLogger - public static var payload: ApptentiveKit.ApptentiveLogger - public static var targeting: ApptentiveKit.ApptentiveLogger - public static var messages: ApptentiveKit.ApptentiveLogger - public static var attachments: ApptentiveKit.ApptentiveLogger - public static var resources: ApptentiveKit.ApptentiveLogger - public static var logLevel: ApptentiveKit.LogLevel { - get - set - } -} -public enum LogLevel : Swift.Int, Swift.Comparable { - case debug - case info - case notice - case warning - case error - case critical - case fault - public static func < (lhs: ApptentiveKit.LogLevel, rhs: ApptentiveKit.LogLevel) -> Swift.Bool - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } +extension os.Logger { + public static let `default`: os.Logger + public static let engagement: os.Logger + public static let interaction: os.Logger + public static let network: os.Logger + public static let payload: os.Logger + public static let targeting: os.Logger + public static let messages: os.Logger + public static let attachments: os.Logger + public static let resources: os.Logger } @objc public protocol ApptentiveDelegate { @objc func authenticationDidFail(with error: any Swift.Error) } -@objc @_hasMissingDesignatedInitializers public class Apptentive : ObjectiveC.NSObject { - @objc public static let shared: ApptentiveKit.Apptentive - @objc weak public var delegate: (any ApptentiveKit.ApptentiveDelegate)? - public var interactionPresenter: ApptentiveKit.InteractionPresenter { +@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class Apptentive : ObjectiveC.NSObject { + @objc @_Concurrency.MainActor public static let shared: ApptentiveKit.Apptentive + @objc @_Concurrency.MainActor weak final public var delegate: (any ApptentiveKit.ApptentiveDelegate)? + @_Concurrency.MainActor final public var interactionPresenter: ApptentiveKit.InteractionPresenter { get set } - @objc public var theme: ApptentiveKit.Apptentive.UITheme - @objc public var personName: Swift.String? { + @objc @_Concurrency.MainActor final public var theme: ApptentiveKit.Apptentive.UITheme + @objc @_Concurrency.MainActor final public var shouldUseSecureTokenStorage: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personName: Swift.String? { @objc get @objc set + _modify } - @objc public var personEmailAddress: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personEmailAddress: Swift.String? { @objc get @objc set + _modify } - @objc public var mParticleID: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var mParticleID: Swift.String? { @objc get @objc set + _modify } - public var personCustomData: ApptentiveKit.CustomData { + #endif + @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personCustomData: ApptentiveKit.CustomData { get set + _modify } - public var deviceCustomData: ApptentiveKit.CustomData { + @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var deviceCustomData: ApptentiveKit.CustomData { get set + _modify } - @objc dynamic public var unreadMessageCount: Swift.Int - @objc public var distributionName: Swift.String? { + @objc @_Concurrency.MainActor dynamic final public var unreadMessageCount: Swift.Int + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var distributionName: Swift.String? { @objc get @objc set + _modify } - @objc public var distributionVersion: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var distributionVersion: Swift.String? { @objc get @objc set + _modify } - @objc public enum UITheme : Swift.Int { + #endif + @objc public enum UITheme : Swift.Int, Swift.Sendable { case apptentive = 1 + case customerOnly = 2 + case customerBasedOnApptentive = 3 case none = 0 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } - public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials) async throws - #endif - public struct AppCredentials : Swift.Codable, Swift.Equatable { + public struct AppCredentials : Swift.Codable, Swift.Equatable, Swift.Sendable { public let key: Swift.String public let signature: Swift.String public init(key: Swift.String, signature: Swift.String) @@ -332,45 +323,74 @@ public enum LogLevel : Swift.Int, Swift.Comparable { public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } - public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil) async throws -> Swift.Bool + public enum Region : Swift.String, Swift.Sendable { + case us + case eu + case au + #if compiler(>=5.3) && $NonescapableTypes + public init?(rawValue: Swift.String) + #endif + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct Environment : Swift.Sendable { + public init(_ template: @escaping @Sendable (Swift.String, ApptentiveKit.Apptentive.Region) -> Swift.String) + public static let production: ApptentiveKit.Apptentive.Environment + public static func custom(_ url: Foundation.URL) -> ApptentiveKit.Apptentive.Environment + } + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, region: ApptentiveKit.Apptentive.Region = .us, environment: ApptentiveKit.Apptentive.Environment = .production, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + nonisolated final public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, region: ApptentiveKit.Apptentive.Region = .us, environment: ApptentiveKit.Apptentive.Environment = .production) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + nonisolated final public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil) async throws -> Swift.Bool #endif - public func dismissAllInteractions(animated: Swift.Bool) - public func presentMessageCenter(from viewController: UIKit.UIViewController?, completion: ((Swift.Result) -> Swift.Void)? = nil) - public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData?, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil) async throws -> Swift.Bool + @_Concurrency.MainActor final public func dismissAllInteractions(animated: Swift.Bool) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - @objc(sendAttachmentText:) public func sendAttachment(_ text: Swift.String) - @objc(sendAttachmentImage:) public func sendAttachment(_ image: UIKit.UIImage) - @objc(sendAttachmentFile:withMimeType:) public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String) - public func canShowInteraction(event: ApptentiveKit.Event, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func canShowInteraction(event: ApptentiveKit.Event) async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + nonisolated final public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil) async throws -> Swift.Bool #endif - public func canShowMessageCenter(completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func canShowMessageCenter() async throws -> Swift.Bool + @objc(sendAttachmentText:) nonisolated final public func sendAttachment(_ text: Swift.String) + @objc(sendAttachmentImage:) nonisolated final public func sendAttachment(_ image: UIKit.UIImage) + @objc(sendAttachmentFile:withMimeType:) nonisolated final public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func canShowInteraction(event: ApptentiveKit.Event, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - public func logIn(with token: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void) - #if compiler(>=5.3) && $AsyncAwait - public func logIn(with token: Swift.String) async throws + nonisolated final public func canShowInteraction(event: ApptentiveKit.Event) async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func canShowMessageCenter(completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - public func logOut(completion: ((Swift.Result) -> Swift.Void)?) - #if compiler(>=5.3) && $AsyncAwait - public func logOut() async throws + nonisolated final public func canShowMessageCenter() async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func logIn(with token: Swift.String, completion: @escaping @Sendable (Swift.Result) -> Swift.Void) #endif - public func updateToken(_ token: Swift.String, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func updateToken(_ token: Swift.String) async throws + nonisolated final public func logIn(with token: Swift.String) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func logOut(completion: (@Sendable (Swift.Result) -> Swift.Void)?) #endif - convenience public init(apiBaseURL: Foundation.URL) + nonisolated final public func logOut() async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func updateToken(_ token: Swift.String, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + nonisolated final public func updateToken(_ token: Swift.String) async throws + @propertyWrapper public struct BackendSync { + public var wrappedValue: T { + get + set + } + } @objc deinit } -public enum ApptentiveError : Swift.Error, Foundation.LocalizedError { +public enum ApptentiveError : Swift.Error, Foundation.LocalizedError, Swift.Equatable { case internalInconsistency - case invalidCustomDataType(Any?) + case invalidCustomDataType case fileExistsAtContainerDirectoryPath case unsupportedBackendStateTransition case emptyEventName @@ -381,14 +401,19 @@ public enum ApptentiveError : Swift.Error, Foundation.LocalizedError { case missingSubClaim case mismatchedSubClaim case invalidEncryptionKey + case invalidAppCredentials case noActiveConversation case authenticationFailed(reason: ApptentiveKit.AuthenticationFailureReason?, responseString: Swift.String?) case resourceNotDecodableAsImage + case interactionExceededRateLimit(count: Swift.Int, limit: Swift.Int) + #if compiler(>=5.3) && $NonescapableTypes public var errorDescription: Swift.String? { get } + #endif + public static func == (a: ApptentiveKit.ApptentiveError, b: ApptentiveKit.ApptentiveError) -> Swift.Bool } -public enum AuthenticationFailureReason : Swift.String, Swift.Codable { +public enum AuthenticationFailureReason : Swift.String, Swift.Codable, Swift.Sendable { case invalidAlgorithm case malformedToken case invalidToken @@ -400,14 +425,16 @@ public enum AuthenticationFailureReason : Swift.String, Swift.Codable { case missingAppKey case missingAppSignature case invalidKeySignaturePair + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get } } -public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> () -public protocol CustomDataCompatible { +nonisolated(unsafe) public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> () +public protocol CustomDataCompatible : Swift.Sendable { } extension Swift.String : ApptentiveKit.CustomDataCompatible { } @@ -419,12 +446,14 @@ extension Swift.Int : ApptentiveKit.CustomDataCompatible { } extension Swift.Bool : ApptentiveKit.CustomDataCompatible { } -public struct CustomData : Swift.Equatable, Swift.Codable { +public struct CustomData : Swift.Equatable, Swift.Codable, Swift.Sendable { public init() + #if compiler(>=5.3) && $NonescapableTypes public subscript(key: Swift.String) -> (any ApptentiveKit.CustomDataCompatible)? { get set } + #endif public var keys: Swift.Dictionary.Keys { get } @@ -432,56 +461,64 @@ public struct CustomData : Swift.Equatable, Swift.Codable { public init(from decoder: any Swift.Decoder) throws public static func == (lhs: ApptentiveKit.CustomData, rhs: ApptentiveKit.CustomData) -> Swift.Bool } -public protocol SurveyViewModelDelegate : AnyObject { - func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) -} -@_hasMissingDesignatedInitializers public class SurveyViewModel { - final public let name: Swift.String? - final public let isRequired: Swift.Bool - final public let pageIndicatorSegmentCount: Swift.Int - final public let validationErrorMessage: Swift.String - public var disclaimerText: Swift.String? { +@_Concurrency.MainActor public protocol SurveyViewModelDelegate : AnyObject { + @_Concurrency.MainActor func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class SurveyViewModel { + @_Concurrency.MainActor final public let name: Swift.String? + @_Concurrency.MainActor final public let isRequired: Swift.Bool + @_Concurrency.MainActor final public let pageIndicatorSegmentCount: Swift.Int + @_Concurrency.MainActor final public let validationErrorMessage: Foundation.AttributedString + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var disclaimerText: Foundation.AttributedString? { get } + #endif public struct TermsAndConditions { } - final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions? + @_Concurrency.MainActor final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions? public struct CloseConfirmation { } - final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation - weak public var delegate: (any ApptentiveKit.SurveyViewModelDelegate)? - public var currentPage: ApptentiveKit.SurveyViewModel.Page { + @_Concurrency.MainActor final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation + @_Concurrency.MainActor weak public var delegate: (any ApptentiveKit.SurveyViewModelDelegate)? + @_Concurrency.MainActor public var currentPage: ApptentiveKit.SurveyViewModel.Page { get } - public var questions: [ApptentiveKit.SurveyViewModel.Question] { + @_Concurrency.MainActor public var questions: [ApptentiveKit.SurveyViewModel.Question] { get } - public var isMarkedAsInvalid: Swift.Bool { + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get } - public var thankYouMessage: Swift.String? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var thankYouMessage: Foundation.AttributedString? { get } - public var introduction: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var introduction: Foundation.AttributedString? { get } - public var advanceButtonText: Swift.String { + #endif + @_Concurrency.MainActor public var advanceButtonText: Swift.String { get } - public var invalidQuestionIndexes: Foundation.IndexSet { + @_Concurrency.MainActor public var invalidQuestionIndexes: Foundation.IndexSet { get } - public var surveyDidSendResponse: Swift.Bool - public var highlightFirstQuestionSegment: Swift.Bool - public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath) - public func selectValueFromRange(at indexPath: Foundation.IndexPath) - public func openTermsAndConditions() - public func advance() - public var isValid: Swift.Bool { + @_Concurrency.MainActor public var surveyDidSendResponse: Swift.Bool + @_Concurrency.MainActor public var highlightFirstQuestionSegment: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath) + #endif + @_Concurrency.MainActor public func selectValueFromRange(at indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func openTermsAndConditions() + @_Concurrency.MainActor public func advance() async + @_Concurrency.MainActor public var isValid: Swift.Bool { get } public enum DisplayMode { @@ -493,104 +530,106 @@ public protocol SurveyViewModelDelegate : AnyObject { get } } - public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode { + @_Concurrency.MainActor public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode { get } - public var shouldConfirmCancel: Swift.Bool { + @_Concurrency.MainActor public var shouldConfirmCancel: Swift.Bool { get } - public var currentSelectedSegmentIndex: Swift.Int? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var currentSelectedSegmentIndex: Swift.Int? { get } - public func launch() - public func continuePartial() - public func cancel(partial: Swift.Bool) + #endif + @_Concurrency.MainActor public var isIntroPage: Swift.Bool { + get + } + @_Concurrency.MainActor public var isSuccessPage: Swift.Bool { + get + } + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func continuePartial() + @_Concurrency.MainActor public func cancel(partial: Swift.Bool) @objc deinit } extension ApptentiveKit.SurveyViewModel { - @_hasMissingDesignatedInitializers public class Page { - final public let id: Swift.String - final public let description: Swift.String? - final public let disclaimer: Swift.String? - final public let questions: [ApptentiveKit.SurveyViewModel.Question] - final public let advanceButtonLabel: Swift.String - final public let pageIndicatorValue: Swift.Int? + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Page { + @_Concurrency.MainActor final public let id: Swift.String + @_Concurrency.MainActor final public let description: Foundation.AttributedString? + @_Concurrency.MainActor final public let disclaimer: Foundation.AttributedString? + @_Concurrency.MainActor final public let questions: [ApptentiveKit.SurveyViewModel.Question] + @_Concurrency.MainActor final public let advanceButtonLabel: Swift.String + @_Concurrency.MainActor final public let pageIndicatorValue: Swift.Int? @objc deinit } } -public protocol MessageCenterViewModelDelegate : AnyObject { - func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToRemoveAttachmentAt index: Swift.Int, with error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToAddAttachmentWith error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToSendMessageWith error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFinishAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFailAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath, with error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, profilePhoto: UIKit.UIImage, didDownloadFor indexPath: Foundation.IndexPath) -} -@_hasMissingDesignatedInitializers public class MessageCenterViewModel { - final public let headingTitle: Swift.String - final public let branding: Swift.String? - final public let composerTitle: Swift.String - final public let composerSendButtonTitle: Swift.String - final public let composerAttachButtonTitle: Swift.String - final public let composerPlaceholderText: Swift.String - final public let composerCloseConfirmBody: Swift.String - final public let composerCloseDiscardButtonTitle: Swift.String - final public let composerCloseCancelButtonTitle: Swift.String - final public let greetingTitle: Swift.String - final public let greetingBody: Swift.String - final public let greetingImageURL: Foundation.URL - final public let statusBody: Swift.String? - public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]] - public var hasLoadedMessages: Swift.Bool - public var thumbnailSize: CoreFoundation.CGSize { +@_Concurrency.MainActor public protocol MessageCenterViewModelDelegate : AnyObject { + @_Concurrency.MainActor func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel) +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class MessageCenterViewModel { + @_Concurrency.MainActor final public let headingTitle: Swift.String + @_Concurrency.MainActor final public let branding: Swift.String? + @_Concurrency.MainActor final public let composerTitle: Swift.String + @_Concurrency.MainActor final public let composerSendButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerAttachButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerPlaceholderText: Swift.String + @_Concurrency.MainActor final public let composerCloseConfirmBody: Swift.String + @_Concurrency.MainActor final public let composerCloseDiscardButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerCloseCancelButtonTitle: Swift.String + @_Concurrency.MainActor final public let greetingTitle: Swift.String + @_Concurrency.MainActor final public let greetingBody: Swift.String + @_Concurrency.MainActor final public let greetingImageURL: Foundation.URL + @_Concurrency.MainActor final public let statusBody: Swift.String? + @_Concurrency.MainActor public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]] + @_Concurrency.MainActor public var hasLoadedMessages: Swift.Bool + @_Concurrency.MainActor public var thumbnailSize: CoreFoundation.CGSize { get set } - final public let profileNamePlaceholder: Swift.String - final public let profileEmailPlaceholder: Swift.String - final public let profileCancelButtonText: Swift.String - final public let profileSaveButtonText: Swift.String - final public let profileEmailInvalidError: Swift.String - final public let editProfileViewTitle: Swift.String - final public let editProfileNamePlaceholder: Swift.String - final public let editProfileEmailPlaceholder: Swift.String - final public let editProfileCancelButtonText: Swift.String - final public let editProfileSaveButtonText: Swift.String - final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode - final public let closeButtonAccessibilityLabel: Swift.String - final public let closeButtonAccessibilityHint: Swift.String - final public let profileButtonAccessibilityLabel: Swift.String - final public let profileButtonAccessibilityHint: Swift.String - final public let sendButtonAccessibilityLabel: Swift.String - final public let sendButtonAccessibilityHint: Swift.String - final public let attachButtonAccessibilityLabel: Swift.String - final public let attachButtonAccessibilityHint: Swift.String - final public let attachmentOptionsTitle: Swift.String - final public let attachmentOptionsImagesButton: Swift.String - final public let attachmentOptionsFilesButton: Swift.String - final public let attachmentOptionsCancelButton: Swift.String - final public let showAttachmentButtonAccessibilityHint: Swift.String - final public let downloadAttachmentButtonAccessibilityHint: Swift.String - public var emailAddress: Swift.String? { + @_Concurrency.MainActor final public let profileNamePlaceholder: Swift.String + @_Concurrency.MainActor final public let profileEmailPlaceholder: Swift.String + @_Concurrency.MainActor final public let profileCancelButtonText: Swift.String + @_Concurrency.MainActor final public let profileSaveButtonText: Swift.String + @_Concurrency.MainActor final public let profileEmailInvalidError: Swift.String + @_Concurrency.MainActor final public let editProfileViewTitle: Swift.String + @_Concurrency.MainActor final public let editProfileNamePlaceholder: Swift.String + @_Concurrency.MainActor final public let editProfileEmailPlaceholder: Swift.String + @_Concurrency.MainActor final public let editProfileCancelButtonText: Swift.String + @_Concurrency.MainActor final public let editProfileSaveButtonText: Swift.String + @_Concurrency.MainActor final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode + @_Concurrency.MainActor final public let closeButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let closeButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let profileButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let profileButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let sendButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let sendButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let attachButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let attachButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsTitle: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsImagesButton: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsFilesButton: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsCancelButton: Swift.String + @_Concurrency.MainActor final public let showAttachmentButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let downloadAttachmentButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor public var emailAddress: Swift.String? { get set } - public var name: Swift.String? { + @_Concurrency.MainActor public var name: Swift.String? { get set } - public var profileIsValid: Swift.Bool - public var shouldRequestProfile: Swift.Bool - public var shouldAllowProfileEdit: Swift.Bool + @_Concurrency.MainActor public var profileIsValid: Swift.Bool + @_Concurrency.MainActor public var shouldRequestProfile: Swift.Bool + @_Concurrency.MainActor public var shouldAllowProfileEdit: Swift.Bool public enum ProfileMode { case optionalEmail case requiredEmail @@ -601,49 +640,61 @@ public protocol MessageCenterViewModelDelegate : AnyObject { get } } - public var oldestUnreadMessageIndexPath: Foundation.IndexPath? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var oldestUnreadMessageIndexPath: Foundation.IndexPath? { get } - public var newestMessageIndexPath: Foundation.IndexPath? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var newestMessageIndexPath: Foundation.IndexPath? { get } - public func commitProfileEdits() - public func cancelProfileEdits() - public func launch() - public func cancel() - public var numberOfMessageGroups: Swift.Int { + #endif + @_Concurrency.MainActor public func commitProfileEdits() + @_Concurrency.MainActor public func cancelProfileEdits() + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func cancel() + @_Concurrency.MainActor public var numberOfMessageGroups: Swift.Int { get } - public func markMessageAsRead(at indexPath: Foundation.IndexPath) - public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int - public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String? - public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message - public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) - public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message { + @_Concurrency.MainActor public func markMessageAsRead(at indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String? + #endif + @_Concurrency.MainActor public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message + @_Concurrency.MainActor public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) async throws + @_Concurrency.MainActor public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message { get } - public var draftMessageBody: Swift.String? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var draftMessageBody: Swift.String? { get set } - public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] { + #endif + @_Concurrency.MainActor public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] { get } - public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?) - public func addFileAttachment(at sourceURL: Foundation.URL) - public func removeAttachment(at index: Swift.Int) - public var remainingAttachmentSlots: Swift.Int { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?) async throws + #endif + @_Concurrency.MainActor public func addFileAttachment(at sourceURL: Foundation.URL) async throws + @_Concurrency.MainActor public func removeAttachment(at index: Swift.Int) async throws + @_Concurrency.MainActor public var remainingAttachmentSlots: Swift.Int { get } - public var canAddAttachment: Swift.Bool { + @_Concurrency.MainActor public var canAddAttachment: Swift.Bool { get } - public var canSendMessage: Swift.Bool { + @_Concurrency.MainActor public var canSendMessage: Swift.Bool { get } - public func sendMessage() - public func getGreetingImage(completion: @escaping (UIKit.UIImage) -> Swift.Void) - public func getProfilePhoto(for indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func sendMessage() async throws + @_Concurrency.MainActor public func getGreetingImage() async throws -> UIKit.UIImage + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func getProfilePhoto(for indexPath: Foundation.IndexPath) async throws -> UIKit.UIImage? + #endif @objc deinit } public enum MessageCenterViewModelError : Swift.Error { @@ -656,92 +707,134 @@ public enum MessageCenterViewModelError : Swift.Error { } } extension ApptentiveKit.Apptentive { - public var engagementManifestURL: Foundation.URL? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public var engagementManifestURL: Foundation.URL? { get } - public func loadEngagementManifest(at url: Foundation.URL?, completion: @escaping (Swift.Result) -> Swift.Void) - public func getInteractionList(_ completion: @escaping ([ApptentiveKit.Apptentive.InteractionListItem]) -> Swift.Void) - public func presentInteraction(with id: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void) - public func presentInteraction(at url: Foundation.URL, completion: @escaping (Swift.Result) -> Swift.Void) + #endif + public enum ConversationState : Swift.String { + case none + case placeholder + case anonymousPending + case legacyPending + case anonymous + case loggedIn + case loggedOut + #if compiler(>=5.3) && $NonescapableTypes + public init?(rawValue: Swift.String) + #endif + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func loadEngagementManifest(at url: Foundation.URL?) async throws + #endif + @_Concurrency.MainActor final public func getInteractionList() async -> [ApptentiveKit.Apptentive.InteractionListItem] + @_Concurrency.MainActor final public func presentInteraction(with id: Swift.String) async throws + @_Concurrency.MainActor final public func presentInteraction(at url: Foundation.URL) async throws public struct InteractionListItem { public let id: Swift.String public let displayName: Swift.String public let typeName: Swift.String } - public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void) - public func getConnectionInfo(_ completion: @escaping (_ state: Swift.String?, _ id: Swift.String?, _ token: Swift.String?, _ subject: Swift.String?, _ buttonLabel: Swift.String?) -> Swift.Void) + @_Concurrency.MainActor final public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func getConnectionInfo() async -> (ApptentiveKit.Apptentive.ConversationState, Swift.String?, Swift.String?) + #endif +} +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @available(iOS 26, *) +@_Concurrency.MainActor @preconcurrency public class GlassDialogButton : UIKit.UIView { + #if compiler(>=5.3) && $IsolatedDeinit + @objc @_Concurrency.MainActor deinit + #else + @objc deinit + #endif } extension ApptentiveKit.SurveyViewModel { - @_hasMissingDesignatedInitializers public class Question { - final public let text: Swift.String - final public let isRequired: Swift.Bool - final public let requiredText: Swift.String? - final public let errorMessage: Swift.String - final public let instructions: Swift.String? - public var isMarkedAsInvalid: Swift.Bool { + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Question { + @_Concurrency.MainActor final public let text: Foundation.AttributedString + @_Concurrency.MainActor final public let isRequired: Swift.Bool + @_Concurrency.MainActor final public let requiredText: Swift.String? + @_Concurrency.MainActor final public let errorMessage: Swift.String + @_Concurrency.MainActor final public let instructions: Swift.String? + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get set } - public var accessibilityLabel: Swift.String { + @_Concurrency.MainActor public var accessibilityLabel: Swift.String { get } @objc deinit } } -public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible { +public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible, Swift.CustomStringConvertible, Swift.Sendable { public var customData: ApptentiveKit.CustomData public init(name: Swift.String) public init(stringLiteral value: Swift.String) public var debugDescription: Swift.String { get } + public var description: Swift.String { + get + } public typealias ExtendedGraphemeClusterLiteralType = Swift.String public typealias StringLiteralType = Swift.String public typealias UnicodeScalarLiteralType = Swift.String } -open class InteractionPresenter { - public init() - open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) throws - open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) throws - open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) throws - open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel, completion: @escaping (Swift.Result) -> Swift.Void) - open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController, completion: (() -> Swift.Void)? = {}) throws - public var validatedPresentingViewController: UIKit.UIViewController? { +@_Concurrency.MainActor open class InteractionPresenter { + @_Concurrency.MainActor public init() + @_Concurrency.MainActor open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) async throws + @_Concurrency.MainActor open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) async throws + @_Concurrency.MainActor open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) async throws + @_Concurrency.MainActor open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel) async throws + @_Concurrency.MainActor open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var validatedPresentingViewController: UIKit.UIViewController? { get } - public var messageCenterCurrentlyPresented: Swift.Bool { + #endif + @_Concurrency.MainActor public var messageCenterCurrentlyPresented: Swift.Bool { get } - open func dismissPresentedViewController(animated: Swift.Bool) + @_Concurrency.MainActor open func dismissPresentedViewController(animated: Swift.Bool) @objc deinit } -public enum InteractionPresenterError : Swift.Error { +public enum InteractionPresenterError : Swift.Error, Swift.Equatable { case notImplemented(Swift.String, Swift.String) case decodingFailed(Swift.String, Swift.String) case noPresentingViewController + public static func == (a: ApptentiveKit.InteractionPresenterError, b: ApptentiveKit.InteractionPresenterError) -> Swift.Bool +} +extension ApptentiveKit.Apptentive { + @objc @_Concurrency.MainActor public static var fontName: Swift.String? { + @objc get + @objc set + } } extension Foundation.NSNotification.Name { public static let apptentiveEventEngaged: Foundation.Notification.Name } -public protocol DialogViewModelDelegate : AnyObject { - func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage: ApptentiveKit.DialogViewModel.Image) - func dismiss() -} -@_hasMissingDesignatedInitializers public class DialogViewModel { - final public let title: Swift.String? - final public let message: Swift.String? - final public let dialogType: ApptentiveKit.DialogViewModel.DialogType - final public let actions: [ApptentiveKit.DialogViewModel.Action] - public var dialogContainsImage: Swift.Bool - public var image: ApptentiveKit.DialogViewModel.Image { +@_Concurrency.MainActor public protocol DialogViewModelDelegate : AnyObject { + @_Concurrency.MainActor func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage: ApptentiveKit.DialogViewModel.Image) + @_Concurrency.MainActor func dismiss() +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class DialogViewModel { + @_Concurrency.MainActor final public let title: Foundation.AttributedString? + @_Concurrency.MainActor final public let message: Foundation.AttributedString? + @_Concurrency.MainActor final public let dialogType: ApptentiveKit.DialogViewModel.DialogType + @_Concurrency.MainActor final public let actions: [ApptentiveKit.DialogViewModel.Action] + @_Concurrency.MainActor public var dialogContainsImage: Swift.Bool + @_Concurrency.MainActor public var image: ApptentiveKit.DialogViewModel.Image { get set } - public var maxHeight: Swift.Int - weak public var delegate: (any ApptentiveKit.DialogViewModelDelegate)? - public func buttonSelected(at position: Swift.Int) - public func launch() - public func cancel() + @_Concurrency.MainActor public var maxHeight: Swift.Int + @_Concurrency.MainActor weak public var delegate: (any ApptentiveKit.DialogViewModelDelegate)? + @_Concurrency.MainActor public func buttonSelected(at position: Swift.Int) + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func cancel() public enum DialogType { case enjoymentDialog case textModal @@ -753,30 +846,30 @@ public protocol DialogViewModelDelegate : AnyObject { } @objc deinit } -@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogView : UIKit.UIView { - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleTextColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var messageTextColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var messageFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var headerImage: UIKit.UIImage? - @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonSpacing: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonInset: UIKit.UIEdgeInsets - @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorsAreHidden: Swift.Bool - @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var imageInset: UIKit.UIEdgeInsets { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogView : UIKit.UIView { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleTextColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var messageTextColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var messageFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var headerImage: UIKit.UIImage? + @objc @_Concurrency.MainActor @preconcurrency dynamic public var cornerRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var buttonSpacing: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var buttonInset: UIKit.UIEdgeInsets + @objc @_Concurrency.MainActor @preconcurrency dynamic public var separatorsAreHidden: Swift.Bool + @objc @_Concurrency.MainActor @preconcurrency dynamic public var separatorColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var imageInset: UIKit.UIEdgeInsets { @objc get @objc set } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func didMoveToWindow() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func layoutSubviews() @objc deinit } extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let placeholderText: Swift.String? - final public let allowMultipleLines: Swift.Bool - public var value: Swift.String? { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let placeholderText: Swift.String? + @_Concurrency.MainActor final public let allowMultipleLines: Swift.Bool + @_Concurrency.MainActor public var value: Swift.String? { get set } @@ -784,155 +877,106 @@ extension ApptentiveKit.SurveyViewModel { } } extension ApptentiveKit.Apptentive { - @available(*, deprecated, message: "Use the 'register(with:completion:)' method on the 'shared' instance instead.") - @objc(registerWithConfiguration:) dynamic public class func register(with configuration: ApptentiveKit.ApptentiveConfiguration) + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the 'register(with:completion:) method that takes an 'AppCredentials' argument.") - @objc(registerWithConfiguration:completion:) dynamic public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "Use the 'shared' static property instead.") - @objc dynamic public class func sharedConnection() -> ApptentiveKit.Apptentive - @available(*, deprecated, message: "This property is ignored. SKStoreReviewController will be used for all ratings.") - @objc dynamic public var appID: Swift.String? { - @objc get - @objc set - } - @available(*, deprecated, message: "This property is ignored. The info button no longer exists.") - @objc dynamic public var showInfoButton: Swift.Bool { - @objc get - @objc set - } - @available(*, deprecated, message: "This feature is not implemented.") - @objc dynamic public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? { - @objc get - @objc set - } - @available(*, deprecated, message: "This property is not available for reading.") - @objc dynamic public var apptentiveKey: Swift.String { - @objc get - } - @available(*, deprecated, message: "This property is not available for reading.") - @objc dynamic public var apptentiveSignature: Swift.String { - @objc get - } - @objc(engage:fromViewController:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?) - @objc(engage:fromViewController:completion:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) + @objc(registerWithConfiguration:completion:) @_Concurrency.MainActor final public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(engage:fromViewController:) @_Concurrency.MainActor final public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(engage:fromViewController:completion:) @_Concurrency.MainActor final public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.") - @objc(engage:withCustomData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?) + @objc(engage:withCustomData:fromViewController:) @_Concurrency.MainActor final public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.") - @objc(engage:withCustomData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.") - @objc(engage:withCustomData:withExtendedData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?) - @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.") - @objc(engage:withCustomData:withExtendedData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:completion:)' method instead.") - @objc dynamic public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void) - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataDate:) dynamic public class func extendedData(date: Foundation.Date) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataLocationForLatitude:longitude:) dynamic public class func extendedData(latitude: Swift.Double, longitude: Swift.Double) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:) dynamic public class func extendedData(transactionID: Swift.String?, affiliation: Swift.String?, revenue: Foundation.NSNumber?, shipping: Foundation.NSNumber?, tax: Foundation.NSNumber?, currency: Swift.String?, commerceItems: [[Swift.AnyHashable : Any]]?) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:) dynamic public class func extendedData(itemID: Swift.String?, name: Swift.String?, category: Swift.String?, price: Foundation.NSNumber?, quantity: Foundation.NSNumber?, currency: Swift.String?) -> [Swift.AnyHashable : Any] - @available(swift, deprecated: 1.0, message: "Use the 'canShowMessageCenter(completion:)' method instead.") - @objc dynamic public func queryCanShowMessageCenter(completion: @escaping (Swift.Bool) -> Swift.Void) - @objc(presentMessageCenterFromViewController:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?) - @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc(presentMessageCenterFromViewController:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @objc(presentMessageCenterFromViewController:withCustomData:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?) - @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc(presentMessageCenterFromViewController:withCustomData:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "This feature is not implemented and this method will always result in false.") - @objc dynamic public func dismissMessageCenter(animated: Swift.Bool, completion: (() -> Swift.Void)? = nil) - @available(*, deprecated, message: "This feature is not implemented and this property will return an empty view.") - @objc dynamic public func unreadMessageCountAccessoryView(apptentiveHeart: Swift.Bool) -> UIKit.UIView - @available(*, deprecated, message: "This method is no longer implemented and will trigger an assertion failure.") - @objc dynamic public func openAppStore() - @available(*, deprecated, message: "Use the 'setRemoteNotificationToken()' method instead.") - @objc dynamic public func setPushProvider(_ pushProvider: ApptentiveKit.ApptentivePushProvider, deviceToken: Foundation.Data) - @available(*, deprecated, message: "This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:).") - @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, from _: UIKit.UIViewController?, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool - @available(*, deprecated, message: "Advertising identifier collection is not implemented.") - @objc dynamic public var advertisingIdentifier: Foundation.UUID? { - @objc get - @objc set - } - @available(*, deprecated, message: "mParticleId has been renamed to mParticleID.") - @objc dynamic public var mParticleId: Swift.String? { - @objc get - @objc set - } + @objc(engage:withCustomData:fromViewController:completion:) @_Concurrency.MainActor final public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:)' method instead.") + @objc @_Concurrency.MainActor final public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping @Sendable (Swift.Bool) -> Swift.Void) + @available(swift, deprecated: 1.0, message: "Use the 'canShowMessageCenter()' method instead.") + @objc @_Concurrency.MainActor final public func queryCanShowMessageCenter(completion: @escaping @Sendable (Swift.Bool) -> Swift.Void) + #if compiler(>=5.3) && $NonescapableTypes + @objc(presentMessageCenterFromViewController:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @available(swift, deprecated: 1.0, message: "Use the async version of this method.") + @objc(presentMessageCenterFromViewController:completion:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(presentMessageCenterFromViewController:withCustomData:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @available(swift, deprecated: 1.0, message: "Use the async version of this method.") + @objc(presentMessageCenterFromViewController:withCustomData:completion:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc dynamic public func removeCustomPersonData(withKey key: Swift.String) + @objc @_Concurrency.MainActor final public func removeCustomPersonData(withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc dynamic public func removeCustomDeviceData(withKey key: Swift.String) + @objc @_Concurrency.MainActor final public func removeCustomDeviceData(withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataString:withKey:) dynamic public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String) + @objc(addCustomDeviceDataString:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataNumber:withKey:) dynamic public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String) + @objc(addCustomDeviceDataNumber:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataBool:withKey:) dynamic public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String) + @objc(addCustomDeviceDataBool:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataString:withKey:) dynamic public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String) + @objc(addCustomPersonDataString:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataNumber:withKey:) dynamic public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String) + @objc(addCustomPersonDataNumber:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataBool:withKey:) dynamic public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String) - @available(*, deprecated, message: "Set style overrides defined in UIKit+Apptentive.swift extensions.") - @objc dynamic public var styleSheet: Any? { - @objc get - @objc set - } - @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.") - @objc dynamic public func checkSDKConfiguration() + @objc(addCustomPersonDataBool:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String) + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func logIn(withToken token: Swift.String, completion: @escaping (Swift.Bool, (any Swift.Error)?) -> Swift.Void) + @objc @_Concurrency.MainActor final public func logIn(withToken token: Swift.String, completion: @escaping @Sendable (Swift.Bool, (any Swift.Error)?) -> Swift.Void) + #endif @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func logOut() + @objc @_Concurrency.MainActor final public func logOut() + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Assign an object that conforms to the 'ApptentiveDelegate' protocol to the Apptentive instance's 'delegate' property.") - @objc dynamic public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? { - @objc get - @objc set - } - @available(*, deprecated, message: "This feature is no longer supported.") - @objc dynamic public var preInteractionCallback: ApptentiveKit.ApptentiveInteractionCallback? { + @objc @_Concurrency.MainActor final public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? { @objc get @objc set } + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func updateToken(_ token: Swift.String, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") - @objc dynamic public var logLevel: ApptentiveKit.ApptentiveLogLevel { + @objc @_Concurrency.MainActor final public func updateToken(_ token: Swift.String, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + @available(swift, deprecated: 1.0, message: "Log level is no longer supported. Use the filtering in Xcode or Console app.") + @objc @_Concurrency.MainActor final public var logLevel: ApptentiveKit.ApptentiveLogLevel { @objc get @objc set } } extension UIKit.UIButton { @available(swift, deprecated: 1.0, message: "Set the 'apptentiveStyle' property to 'ApptentiveButtonStyle.pill'.") - @objc @_Concurrency.MainActor(unsafe) public static let apptentivePillRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency public static let apptentivePillRadius: CoreFoundation.CGFloat @available(swift, deprecated: 1.0, message: "Use the 'apptentiveStyle' property.") - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveCornerRadius: CoreFoundation.CGFloat { + @objc @_Concurrency.MainActor @preconcurrency public static var apptentiveCornerRadius: CoreFoundation.CGFloat { @objc get @objc set } } extension UIKit.UITableView { @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UITableView.Style'.") - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: Swift.Int { + @objc @_Concurrency.MainActor @preconcurrency public static var apptentiveStyle: Swift.Int { @objc get @objc set } } extension UIKit.UIViewController { @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UIModalPresentationStyle'.") - @objc @_Concurrency.MainActor(unsafe) dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle { @objc get @objc set } } @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") public typealias ApptentiveAuthenticationFailureCallback = (ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> Swift.Void -@available(*, deprecated, message: "This feature is no longer supported.") -public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") @objc public enum ApptentiveAuthenticationFailureReason : Swift.Int { case unknown = 0 @@ -947,7 +991,10 @@ public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashab case missingAppKey = 9 case missingAppSignature = 10 case invalidKeySignaturePair = 11 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif + @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get @@ -957,39 +1004,23 @@ public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashab public class ApptentiveConfiguration : ObjectiveC.NSObject { @objc final public let apptentiveKey: Swift.String @objc final public let apptentiveSignature: Swift.String - @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of its static log properties.") + @available(*, deprecated, message: "Logging now uses iOS's Unified Logging features so logs are no longer filtered by the SDK.") @objc public var logLevel: ApptentiveKit.ApptentiveLogLevel - @available(swift, deprecated: 1.0, message: "Set the 'shouldHideSensitiveLogs' property on 'ApptentiveLogger' or one of its static log properties.") + @available(*, deprecated, message: "Logging now uses iOS's Unified Logging features so redaction of sensitive information is handled automatically.") @objc public var shouldSanitizeLogMessages: Swift.Bool - @available(*, deprecated, message: "This property is ignored. Use the designated initializer for 'Apptentive' to set this.") - @objc public var baseURL: Foundation.URL? + @objc public var overrideBaseURL: Foundation.URL? + @objc public var region: Swift.String? @available(swift, deprecated: 1.0, message: "Set the 'distributionName' property on 'Apptentive' directly before calling 'register(with:completion)'.") @objc public var distributionName: Swift.String? @available(swift, deprecated: 1.0, message: "Set the 'distributionVersion' property on 'Apptentive' directly before calling 'register(with:completion)'.") @objc public var distributionVersion: Swift.String? - @available(*, deprecated, message: "This property is ignored. An 'SKStoreReviewController' will be used for all ratings.") - @objc public var appID: Swift.String? - @available(*, deprecated, message: "This property is ignored. The info button no longer exists.") - @objc public var showInfoButton: Swift.Bool - @available(*, deprecated, message: "This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard.") - @objc public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? + #if compiler(>=5.3) && $NonescapableTypes @objc(initWithApptentiveKey:apptentiveSignature:) required public init?(apptentiveKey: Swift.String, apptentiveSignature: Swift.String) + #endif @objc public static func configuration(apptentiveKey key: Swift.String, apptentiveSignature signature: Swift.String) -> ApptentiveKit.ApptentiveConfiguration @objc deinit } -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -@objc public enum ApptentivePushProvider : Swift.Int { - case apptentive = 0 - case urbanAirship = 1 - case amazonSNS = 2 - case parse = 3 - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") @objc public enum ApptentiveLogLevel : Swift.UInt { case undefined = 0 case crit = 1 @@ -998,340 +1029,266 @@ public class ApptentiveConfiguration : ObjectiveC.NSObject { case info = 4 case debug = 5 case verbose = 6 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.UInt) + #endif + @available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") public typealias RawValue = Swift.UInt public var rawValue: Swift.UInt { get } } -@objc @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public class TermsAndConditions : ObjectiveC.NSObject { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public init(bodyText: Swift.String?, linkText: Swift.String?, linkURL: Foundation.URL?) - final public let bodyText: Swift.String? - final public let linkText: Swift.String? - final public let linkURL: Foundation.URL? - @objc deinit -} -@available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public protocol ApptentiveStyle { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor -} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -public enum ApptentiveStyleIdentifier { - case body - case headerTitle - case headerMessage - case messageDate - case messageSender - case messageStatus - case messageCenterStatus - case surveyInstructions - case doneButton - case button - case submitButton - case textInput - case headerBackground - case footerBackground - case failure - case separator - case background - case collectionBackground - case textInputBackground - case textInputPlaceholder - case messageBackground - case replyBackground - case contextBackground - public static func == (a: ApptentiveKit.ApptentiveStyleIdentifier, b: ApptentiveKit.ApptentiveStyleIdentifier) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public class ApptentiveStyleSheet : ApptentiveKit.ApptentiveStyle { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - convenience public init?(contentsOf stylePropertyListURL: Foundation.URL) - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var fontFamily: Swift.String - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var lightFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var regularFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var mediumFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var boldFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var primaryColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var secondaryColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var failureColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var backgroundColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var separatorColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var collectionBackgroundColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var placeholderColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var sizeAdjustment: CoreFoundation.CGFloat - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func setFontDescriptor(_ fontDescriptor: UIKit.UIFontDescriptor, forStyle style: Swift.String) - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func setColor(_ color: UIKit.UIColor, forStyle style: Swift.String) - @objc deinit -} -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogButton : UIKit.UIButton { - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var borderWidth: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var borderColor: UIKit.UIColor - @_Concurrency.MainActor(unsafe) @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogButton : UIKit.UIButton { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var cornerRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var borderWidth: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var borderColor: UIKit.UIColor + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize { @objc get } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func layoutSubviews() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func didMoveToWindow() @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DismissButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DismissButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class InteractionButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class InteractionButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class YesButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class YesButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class NoButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class NoButton : ApptentiveKit.DialogButton { @objc deinit } -public struct Sysctl { - public enum Error : Swift.Error { - case unknown - case malformedUTF8 - case invalidSize - case posixError(Darwin.POSIXErrorCode) - } - public static func data(for keys: [Swift.Int32]) throws -> [Swift.Int8] - public static func keys(for name: Swift.String) throws -> [Swift.Int32] - public static func value(ofType: T.Type, forKeys keys: [Swift.Int32]) throws -> T - public static func value(ofType type: T.Type, forKeys keys: Swift.Int32...) throws -> T - public static func value(ofType type: T.Type, forName name: Swift.String) throws -> T - public static func string(for keys: [Swift.Int32]) throws -> Swift.String - public static func string(for keys: Swift.Int32...) throws -> Swift.String - public static func string(for name: Swift.String) throws -> Swift.String - public static var hostName: Swift.String { - get - } - public static var machine: Swift.String { - get - } - public static var model: Swift.String { - get - } - public static var activeCPUs: Swift.Int32 { - get - } - public static var osRelease: Swift.String { - get - } - public static var osType: Swift.String { - get - } - public static var osVersion: Swift.String { - get - } - public static var version: Swift.String { - get - } -} -@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class ApptentiveNavigationController : UIKit.UINavigationController { - @_Concurrency.MainActor(unsafe) @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle { +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class ApptentiveNavigationController : UIKit.UINavigationController { + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle { @objc get } - @objc @_Concurrency.MainActor(unsafe) public static var prefersLargeHeader: Swift.Bool + @objc @_Concurrency.MainActor @preconcurrency public static var prefersLargeHeader: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes @available(iOS 5.0, *) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(rootViewController: UIKit.UIViewController) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) - @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?) + #endif + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(rootViewController: UIKit.UIViewController) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) + #endif @objc deinit } -extension UIKit.UITableView { - @_Concurrency.MainActor(unsafe) public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat +@_Concurrency.MainActor extension UIKit.UITableView { + @_Concurrency.MainActor public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat } -extension UIKit.UITableView.Style { - public static var apptentive: UIKit.UITableView.Style +@_Concurrency.MainActor extension UIKit.UITableView.Style { + @_Concurrency.MainActor public static var apptentive: UIKit.UITableView.Style } -extension UIKit.UIModalPresentationStyle { - public static var apptentive: UIKit.UIModalPresentationStyle +@_Concurrency.MainActor extension UIKit.UIModalPresentationStyle { + @_Concurrency.MainActor public static var apptentive: UIKit.UIModalPresentationStyle } -extension UIKit.UIBarButtonItem { - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIBarButtonItem - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveProfileEdit: UIKit.UIBarButtonItem +@_Concurrency.MainActor extension UIKit.UIBarButtonItem { + @objc @_Concurrency.MainActor public static var apptentiveClose: UIKit.UIBarButtonItem + @objc @_Concurrency.MainActor public static var appentiveRefresh: UIKit.UIBarButtonItem + @objc @_Concurrency.MainActor public static var apptentiveProfileEdit: UIKit.UIBarButtonItem } -extension UIKit.UIButton { - @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIButton? - public enum ApptentiveButtonStyle { +@_Concurrency.MainActor extension UIKit.UIButton { + @_Concurrency.MainActor public static var apptentiveClose: UIKit.UIButton? + public enum ApptentiveButtonStyle : Swift.Equatable { case pill case radius(CoreFoundation.CGFloat) - } - @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle -} -extension UIKit.UIImage { - @objc public static var apptentiveMessageAttachmentButton: UIKit.UIImage? - @objc public static var apptentiveMessageSendButton: UIKit.UIImage? - @objc public static var apptentiveSentMessageBubble: UIKit.UIImage? - @objc public static var apptentiveReceivedMessageBubble: UIKit.UIImage? - @objc public static var apptentiveAttachmentPlaceholder: UIKit.UIImage? - @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIImage? - @objc public static var apptentiveHeaderLogo: UIKit.UIImage? - @objc public static var apptentiveRadioButton: UIKit.UIImage? - @objc public static var apptentiveCheckbox: UIKit.UIImage? - @objc public static var apptentiveRadioButtonSelected: UIKit.UIImage? - @objc public static var apptentiveCheckboxSelected: UIKit.UIImage? -} -extension UIKit.UIColor { - @objc public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor - @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor + public static func == (a: UIKit.UIButton.ApptentiveButtonStyle, b: UIKit.UIButton.ApptentiveButtonStyle) -> Swift.Bool + } + @_Concurrency.MainActor public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle +} +@_Concurrency.MainActor extension UIKit.UIImage { + @objc @_Concurrency.MainActor public static var apptentiveMessageAttachmentButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveMessageSendButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveSentMessageBubble: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveReceivedMessageBubble: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveAttachmentPlaceholder: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveAttachmentRemoveButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveHeaderLogo: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveRadioButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveCheckbox: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveRadioButtonSelected: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveCheckboxSelected: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveDialogHeader: UIKit.UIImage? +} +@_Concurrency.MainActor extension UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageTextInputPlaceholder'.") - @objc public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor { @objc get @objc set } - @objc public static var apptentiveMessageCenterTextInput: UIKit.UIColor - @objc public static var apptentivetextInputTint: UIKit.UIColor - @objc public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInput: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentivetextInputTint: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageCenterTextInputBorder'.") - @objc public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor { @objc get @objc set } - @objc public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor - @objc public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor - @objc public static var apptentiveMessageCenterStatus: UIKit.UIColor - @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor - @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor - @objc public static var apptentiveMessageBubbleInbound: UIKit.UIColor - @objc public static var apptentiveMessageBubbleOutbound: UIKit.UIColor - @objc public static var apptentiveMessageLabelInbound: UIKit.UIColor - @objc public static var apptentiveMessageLabelOutbound: UIKit.UIColor - @objc public static var apptentiveQuestionLabel: UIKit.UIColor - @objc public static var apptentiveInstructionsLabel: UIKit.UIColor - @objc public static var apptentiveChoiceLabel: UIKit.UIColor - @objc public static var apptentiveError: UIKit.UIColor - @objc public static var apptentiveTint: UIKit.UIColor - @objc public static var apptentiveSecondaryLabel: UIKit.UIColor - @objc public static var apptentiveRangeControlBorder: UIKit.UIColor - @objc public static var apptentiveSurveyIntroduction: UIKit.UIColor - @objc public static var apptentiveTextInputBorder: UIKit.UIColor - @objc public static var apptentiveTextInputBackground: UIKit.UIColor - @objc public static var apptentiveTextInput: UIKit.UIColor - @objc public static var apptentiveTextInputPlaceholder: UIKit.UIColor - @objc public static var apptentiveMinMaxLabel: UIKit.UIColor - @objc public static var apptentiveGroupedBackground: UIKit.UIColor - @objc public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor - @objc public static var apptentiveSeparator: UIKit.UIColor - @objc public static var apptentiveImageSelected: UIKit.UIColor - @objc public static var apptentiveImageNotSelected: UIKit.UIColor - @objc public static var apptentiveSubmitButton: UIKit.UIColor - @objc public static var apptentiveBranchedSurveyFooter: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterStatus: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageBubbleInbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageBubbleOutbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageLabelInbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageLabelOutbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveQuestionLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveInstructionsLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveChoiceLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveError: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTint: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSecondaryLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveRangeControlBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSurveyIntroduction: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSurveyTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveOtherTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveOtherTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInput: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputPlaceholder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMinMaxLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveGroupedBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSeparator: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveImageSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveImageNotSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveBranchedSurveyFooter: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.") - public static var apptentiveSubmitLabel: UIKit.UIColor - @objc public static var apptentiveSubmitStatusLabel: UIKit.UIColor - @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIColor - @objc public static var apptentiveSubmitButtonTitle: UIKit.UIColor - @objc public static var apptentiveSubmitButtonBorder: UIKit.UIColor - @objc public static var apptentiveQuestionSeparator: UIKit.UIColor - public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor - public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor - @objc public static var apptentiveMessageCenterBackground: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveSubmitLabel: UIKit.UIColor { + get + set + } + @objc @_Concurrency.MainActor public static var apptentiveSubmitStatusLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTermsOfServiceLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveQuestionSeparator: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterBackground: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveAttachmentRemoveButton'.") - @objc public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor - @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIColor - @objc public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor - @objc public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor - @objc public static var apptentiveTextInputBorderSelected: UIKit.UIColor - @objc public static var apptentiveDisclaimerLabel: UIKit.UIColor -} -extension UIKit.UIFont { - @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont - @objc public static var apptentiveMessageCenterTextInput: UIKit.UIFont - @objc public static var apptentiveTextInputPlaceholder: UIKit.UIFont - @objc public static var apptentiveMessageCenterStatus: UIKit.UIFont - @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont - @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont - @objc public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont - @objc public static var apptentiveQuestionLabel: UIKit.UIFont - @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIFont - @objc public static var apptentiveChoiceLabel: UIKit.UIFont - @objc public static var apptentiveMessageLabel: UIKit.UIFont - @objc public static var apptentiveMinMaxLabel: UIKit.UIFont - @objc public static var apptentiveSenderLabel: UIKit.UIFont - @objc public static var apptentiveMessageDateLabel: UIKit.UIFont - @objc public static var apptentiveInstructionsLabel: UIKit.UIFont - @objc public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor { + @objc get + @objc set + } + @objc @_Concurrency.MainActor public static var apptentiveAttachmentRemoveButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBorderSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDisclaimerLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogBackground: UIKit.UIColor? + @objc @_Concurrency.MainActor public static var apptentiveDialogTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogMessage: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogButtonBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogButtonLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveButtonBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogSeparator: UIKit.UIColor +} +@_Concurrency.MainActor extension UIKit.UIFont { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInput: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTextInputPlaceholder: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterStatus: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveQuestionLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTermsOfServiceLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveChoiceLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMinMaxLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSenderLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageDateLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveInstructionsLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.") - public static var apptentiveSubmitLabel: UIKit.UIFont - @objc public static var apptentiveSubmitStatusLabel: UIKit.UIFont - @objc public static var apptentiveDisclaimerLabel: UIKit.UIFont - @objc public static var apptentiveSubmitButtonTitle: UIKit.UIFont - @objc public static var apptentiveTextInput: UIKit.UIFont + @_Concurrency.MainActor public static var apptentiveSubmitLabel: UIKit.UIFont { + get + set + } + @objc @_Concurrency.MainActor public static var apptentiveSubmitStatusLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDisclaimerLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTextInput: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogText: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogMessage: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogButton: UIKit.UIFont } -extension UIKit.UIToolbar { +@_Concurrency.MainActor extension UIKit.UIToolbar { @objc public enum ToolbarMode : Swift.Int { case alwaysShown case hiddenWhenEmpty + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif + @available(iOS 2.0, *) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode + @objc @_Concurrency.MainActor public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode +} +@_Concurrency.MainActor extension CoreFoundation.CGFloat { + @_Concurrency.MainActor public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat + @_Concurrency.MainActor public static var apptentiveDialogCornerRadius: CoreFoundation.CGFloat + @_Concurrency.MainActor public static var apptentiveDialogButtonSpacing: CoreFoundation.CGFloat +} +@_Concurrency.MainActor extension CoreFoundation.CGSize { + @_Concurrency.MainActor public static var apptentiveThumbnail: CoreFoundation.CGSize } -extension CoreFoundation.CGFloat { - public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat +@available(iOS 26.0, *) +@_Concurrency.MainActor extension UIKit.UICornerConfiguration { + @_Concurrency.MainActor public static var apptentiveDialogButton: UIKit.UICornerConfiguration } +extension ApptentiveKit.DialogViewModel : Swift.Sendable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.Hashable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.RawRepresentable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Hashable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.RawRepresentable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.Equatable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.Hashable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.RawRepresentable {} -extension ApptentiveKit.SystemFontNames : Swift.Equatable {} -extension ApptentiveKit.SystemFontNames : Swift.Hashable {} -extension ApptentiveKit.SystemFontNames : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel : Swift.Sendable {} +extension ApptentiveKit.MessageCenterViewModel : Swift.Sendable {} extension ApptentiveKit.MessageCenterViewModel.Message.SentStatus : Swift.Hashable {} +extension ApptentiveKit.Apptentive : Swift.Sendable {} extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Equatable {} extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Hashable {} -extension ApptentiveKit.LogLevel : Swift.Hashable {} -extension ApptentiveKit.LogLevel : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice : Swift.Sendable {} extension ApptentiveKit.Apptentive.UITheme : Swift.Equatable {} extension ApptentiveKit.Apptentive.UITheme : Swift.Hashable {} extension ApptentiveKit.Apptentive.UITheme : Swift.RawRepresentable {} +extension ApptentiveKit.Apptentive.Region : Swift.Equatable {} +extension ApptentiveKit.Apptentive.Region : Swift.Hashable {} +extension ApptentiveKit.Apptentive.Region : Swift.RawRepresentable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.Equatable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.Hashable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.RawRepresentable {} extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Equatable {} extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Hashable {} +extension ApptentiveKit.SurveyViewModel.Page : Swift.Sendable {} extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Equatable {} extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Hashable {} extension ApptentiveKit.MessageCenterViewModelError : Swift.Equatable {} extension ApptentiveKit.MessageCenterViewModelError : Swift.Hashable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.Equatable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.Hashable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel.Question : Swift.Sendable {} +extension ApptentiveKit.InteractionPresenter : Swift.Sendable {} extension ApptentiveKit.DialogViewModel.DialogType : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.DialogType : Swift.Hashable {} @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") @@ -1340,22 +1297,12 @@ extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Equatable extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Hashable {} @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.RawRepresentable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.Equatable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.Hashable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.RawRepresentable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.Equatable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.Hashable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.RawRepresentable {} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Equatable {} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Hashable {} extension UIKit.UIToolbar.ToolbarMode : Swift.Equatable {} extension UIKit.UIToolbar.ToolbarMode : Swift.Hashable {} extension UIKit.UIToolbar.ToolbarMode : Swift.RawRepresentable {} diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc index a7408dd..43a85c3 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface index 517e212..fc06bf7 100644 --- a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,8 +1,10 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) -// swift-module-flags: -target arm64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ApptentiveKit +// swift-compiler-version: Apple Swift version 6.2.3 (swiftlang-6.2.3.3.21 clang-1700.6.3.2) +// swift-module-flags: -target arm64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 6 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -module-name ApptentiveKit +// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.3 import CommonCrypto import CoreTelephony +import CryptoKit import DeveloperToolsSupport import Foundation import MobileCoreServices @@ -11,41 +13,48 @@ import PhotosUI import QuickLook import QuickLookThumbnailing import SafariServices +import Security import StoreKit import Swift import SwiftUI import UIKit +import UniformTypeIdentifiers +import UserNotifications import WebKit import _Concurrency import _StringProcessing import _SwiftConcurrencyShims -@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate { - @_Concurrency.MainActor(unsafe) @objc override dynamic public var next: UIKit.UIResponder? { +@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var next: UIKit.UIResponder? { @objc get } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool) - @_Concurrency.MainActor(unsafe) public func dismiss() - @_Concurrency.MainActor(unsafe) public func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage imageData: ApptentiveKit.DialogViewModel.Image) + #endif + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool) + @_Concurrency.MainActor public func dismiss() + @_Concurrency.MainActor public func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage imageData: ApptentiveKit.DialogViewModel.Image) @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class EnjoymentDialogViewController : ApptentiveKit.DialogViewController { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class EnjoymentDialogViewController : ApptentiveKit.DialogViewController { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class TextModalViewController : ApptentiveKit.DialogViewController { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class TextModalViewController : ApptentiveKit.DialogViewController { @objc deinit } extension ApptentiveKit.DialogViewModel { public enum Image : Swift.Equatable { case none case loading(altText: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout) - case loaded(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout, maxHeight: CoreFoundation.CGFloat) + case loaded(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout) public enum Layout : Swift.String { case fullWidth case leading case trailing case center + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get @@ -58,13 +67,15 @@ extension ApptentiveKit.DialogViewModel { @_hasMissingDesignatedInitializers public class Action { final public let label: Swift.String final public let actionType: ApptentiveKit.DialogViewModel.Action.ActionType - final public let buttonTapped: () -> Swift.Void + final public let buttonTapped: @_Concurrency.MainActor @Sendable () -> Swift.Void public enum ActionType : Swift.String { case dismiss case interaction case yes case no + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get @@ -73,45 +84,25 @@ extension ApptentiveKit.DialogViewModel { @objc deinit } } -public enum HTMLTextAlignment : Swift.String { - case center - case left - case right - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public enum SystemFontNames : Swift.String { - case html - case os - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -extension Swift.String { - public func attributedString(withFont font: UIKit.UIFont, alignment: ApptentiveKit.HTMLTextAlignment) -> Foundation.NSMutableAttributedString? -} extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let minValue: Swift.Int - final public let maxValue: Swift.Int - final public let minText: Swift.String? - final public let maxText: Swift.String? - public var selectedValueIndex: Swift.Int? { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let minValue: Swift.Int + @_Concurrency.MainActor final public let maxValue: Swift.Int + @_Concurrency.MainActor final public let minText: Swift.String? + @_Concurrency.MainActor final public let maxText: Swift.String? + @_Concurrency.MainActor public var selectedValueIndex: Swift.Int? { get } - public var value: Swift.Int? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var value: Swift.Int? { get } - public var choiceLabels: [Swift.String] { + #endif + @_Concurrency.MainActor public var choiceLabels: [Swift.String] { get } - public func selectValue(at index: Swift.Int) - public var accessibilityHintForSegment: Swift.String { + @_Concurrency.MainActor public func selectValue(at index: Swift.Int) + @_Concurrency.MainActor public var accessibilityHintForSegment: Swift.String { get } @objc deinit @@ -142,9 +133,9 @@ extension ApptentiveKit.MessageCenterViewModel { case sending case sent case failed - public func hash(into hasher: inout Swift.Hasher) public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.SentStatus, b: ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> Swift.Bool public func encode(to encoder: any Swift.Encoder) throws + public func hash(into hasher: inout Swift.Hasher) public var hashValue: Swift.Int { get } @@ -162,24 +153,32 @@ extension ApptentiveKit.MessageCenterViewModel { } @objc @_hasMissingDesignatedInitializers public class Attachment : ObjectiveC.NSObject, QuickLook.QLPreviewItem { final public let fileExtension: Swift.String? + #if compiler(>=5.3) && $NonescapableTypes public var thumbnail: UIKit.UIImage? { get } + #endif public var downloadProgress: Swift.Float public var localURL: Foundation.URL? public var displayName: Swift.String { get } + #if compiler(>=5.3) && $NonescapableTypes @objc public var previewItemURL: Foundation.URL? { @objc get } + #endif + #if compiler(>=5.3) && $NonescapableTypes @objc public var previewItemTitle: Swift.String? { @objc get } + #endif + #if compiler(>=5.3) && $NonescapableTypes @objc override dynamic public var accessibilityLabel: Swift.String? { @objc get @objc set } + #endif public var removeButtonAccessibilityLabel: Swift.String { get } @@ -191,21 +190,19 @@ extension ApptentiveKit.MessageCenterViewModel { @objc deinit } } -extension ApptentiveKit.Apptentive : UserNotifications.UNUserNotificationCenterDelegate { - @objc dynamic public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data) - @available(*, deprecated, message: "Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead.") - @objc dynamic public func setRemoteNotifcationDeviceToken(_ tokenData: Foundation.Data) - @objc dynamic public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool - @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool - @objc dynamic public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool - @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) - @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) +extension ApptentiveKit.Apptentive : @preconcurrency UserNotifications.UNUserNotificationCenterDelegate { + @objc @_Concurrency.MainActor final public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data) + @objc @_Concurrency.MainActor final public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping @Sendable (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool + @objc @_Concurrency.MainActor final public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool + @objc @_Concurrency.MainActor final public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool + @_Concurrency.MainActor @objc final public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping @Sendable (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) + @_Concurrency.MainActor @objc final public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping @Sendable () -> Swift.Void) } extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice] - public func toggleChoice(at index: Swift.Int) - public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice] + @_Concurrency.MainActor public func toggleChoice(at index: Swift.Int) + @_Concurrency.MainActor public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle { get } public enum SelectionStyle { @@ -217,18 +214,17 @@ extension ApptentiveKit.SurveyViewModel { get } } - @_hasMissingDesignatedInitializers public class Choice { - final public let label: Swift.String - public var htmlLabel: Foundation.NSAttributedString? - final public let placeholderText: Swift.String? - final public let supportsOther: Swift.Bool - public var isSelected: Swift.Bool { + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Choice { + @_Concurrency.MainActor final public let label: Foundation.AttributedString + @_Concurrency.MainActor final public let placeholderText: Swift.String? + @_Concurrency.MainActor final public let supportsOther: Swift.Bool + @_Concurrency.MainActor public var isSelected: Swift.Bool { get } - public var isMarkedAsInvalid: Swift.Bool { + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get } - public var value: Swift.String? { + @_Concurrency.MainActor public var value: Swift.String? { get set } @@ -237,94 +233,89 @@ extension ApptentiveKit.SurveyViewModel { @objc deinit } } -public struct ApptentiveLogger { - public static var shouldHideSensitiveLogs: Swift.Bool - public var logLevel: ApptentiveKit.LogLevel -} -extension ApptentiveKit.ApptentiveLogger { - public static var `default`: ApptentiveKit.ApptentiveLogger - public static var engagement: ApptentiveKit.ApptentiveLogger - public static var interaction: ApptentiveKit.ApptentiveLogger - public static var network: ApptentiveKit.ApptentiveLogger - public static var payload: ApptentiveKit.ApptentiveLogger - public static var targeting: ApptentiveKit.ApptentiveLogger - public static var messages: ApptentiveKit.ApptentiveLogger - public static var attachments: ApptentiveKit.ApptentiveLogger - public static var resources: ApptentiveKit.ApptentiveLogger - public static var logLevel: ApptentiveKit.LogLevel { - get - set - } -} -public enum LogLevel : Swift.Int, Swift.Comparable { - case debug - case info - case notice - case warning - case error - case critical - case fault - public static func < (lhs: ApptentiveKit.LogLevel, rhs: ApptentiveKit.LogLevel) -> Swift.Bool - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } +extension os.Logger { + public static let `default`: os.Logger + public static let engagement: os.Logger + public static let interaction: os.Logger + public static let network: os.Logger + public static let payload: os.Logger + public static let targeting: os.Logger + public static let messages: os.Logger + public static let attachments: os.Logger + public static let resources: os.Logger } @objc public protocol ApptentiveDelegate { @objc func authenticationDidFail(with error: any Swift.Error) } -@objc @_hasMissingDesignatedInitializers public class Apptentive : ObjectiveC.NSObject { - @objc public static let shared: ApptentiveKit.Apptentive - @objc weak public var delegate: (any ApptentiveKit.ApptentiveDelegate)? - public var interactionPresenter: ApptentiveKit.InteractionPresenter { +@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class Apptentive : ObjectiveC.NSObject { + @objc @_Concurrency.MainActor public static let shared: ApptentiveKit.Apptentive + @objc @_Concurrency.MainActor weak final public var delegate: (any ApptentiveKit.ApptentiveDelegate)? + @_Concurrency.MainActor final public var interactionPresenter: ApptentiveKit.InteractionPresenter { get set } - @objc public var theme: ApptentiveKit.Apptentive.UITheme - @objc public var personName: Swift.String? { + @objc @_Concurrency.MainActor final public var theme: ApptentiveKit.Apptentive.UITheme + @objc @_Concurrency.MainActor final public var shouldUseSecureTokenStorage: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personName: Swift.String? { @objc get @objc set + _modify } - @objc public var personEmailAddress: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personEmailAddress: Swift.String? { @objc get @objc set + _modify } - @objc public var mParticleID: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var mParticleID: Swift.String? { @objc get @objc set + _modify } - public var personCustomData: ApptentiveKit.CustomData { + #endif + @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personCustomData: ApptentiveKit.CustomData { get set + _modify } - public var deviceCustomData: ApptentiveKit.CustomData { + @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var deviceCustomData: ApptentiveKit.CustomData { get set + _modify } - @objc dynamic public var unreadMessageCount: Swift.Int - @objc public var distributionName: Swift.String? { + @objc @_Concurrency.MainActor dynamic final public var unreadMessageCount: Swift.Int + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var distributionName: Swift.String? { @objc get @objc set + _modify } - @objc public var distributionVersion: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var distributionVersion: Swift.String? { @objc get @objc set + _modify } - @objc public enum UITheme : Swift.Int { + #endif + @objc public enum UITheme : Swift.Int, Swift.Sendable { case apptentive = 1 + case customerOnly = 2 + case customerBasedOnApptentive = 3 case none = 0 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } - public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials) async throws - #endif - public struct AppCredentials : Swift.Codable, Swift.Equatable { + public struct AppCredentials : Swift.Codable, Swift.Equatable, Swift.Sendable { public let key: Swift.String public let signature: Swift.String public init(key: Swift.String, signature: Swift.String) @@ -332,45 +323,74 @@ public enum LogLevel : Swift.Int, Swift.Comparable { public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } - public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil) async throws -> Swift.Bool + public enum Region : Swift.String, Swift.Sendable { + case us + case eu + case au + #if compiler(>=5.3) && $NonescapableTypes + public init?(rawValue: Swift.String) + #endif + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct Environment : Swift.Sendable { + public init(_ template: @escaping @Sendable (Swift.String, ApptentiveKit.Apptentive.Region) -> Swift.String) + public static let production: ApptentiveKit.Apptentive.Environment + public static func custom(_ url: Foundation.URL) -> ApptentiveKit.Apptentive.Environment + } + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, region: ApptentiveKit.Apptentive.Region = .us, environment: ApptentiveKit.Apptentive.Environment = .production, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + nonisolated final public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, region: ApptentiveKit.Apptentive.Region = .us, environment: ApptentiveKit.Apptentive.Environment = .production) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + nonisolated final public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil) async throws -> Swift.Bool #endif - public func dismissAllInteractions(animated: Swift.Bool) - public func presentMessageCenter(from viewController: UIKit.UIViewController?, completion: ((Swift.Result) -> Swift.Void)? = nil) - public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData?, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil) async throws -> Swift.Bool + @_Concurrency.MainActor final public func dismissAllInteractions(animated: Swift.Bool) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - @objc(sendAttachmentText:) public func sendAttachment(_ text: Swift.String) - @objc(sendAttachmentImage:) public func sendAttachment(_ image: UIKit.UIImage) - @objc(sendAttachmentFile:withMimeType:) public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String) - public func canShowInteraction(event: ApptentiveKit.Event, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func canShowInteraction(event: ApptentiveKit.Event) async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + nonisolated final public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil) async throws -> Swift.Bool #endif - public func canShowMessageCenter(completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func canShowMessageCenter() async throws -> Swift.Bool + @objc(sendAttachmentText:) nonisolated final public func sendAttachment(_ text: Swift.String) + @objc(sendAttachmentImage:) nonisolated final public func sendAttachment(_ image: UIKit.UIImage) + @objc(sendAttachmentFile:withMimeType:) nonisolated final public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func canShowInteraction(event: ApptentiveKit.Event, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - public func logIn(with token: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void) - #if compiler(>=5.3) && $AsyncAwait - public func logIn(with token: Swift.String) async throws + nonisolated final public func canShowInteraction(event: ApptentiveKit.Event) async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func canShowMessageCenter(completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - public func logOut(completion: ((Swift.Result) -> Swift.Void)?) - #if compiler(>=5.3) && $AsyncAwait - public func logOut() async throws + nonisolated final public func canShowMessageCenter() async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func logIn(with token: Swift.String, completion: @escaping @Sendable (Swift.Result) -> Swift.Void) #endif - public func updateToken(_ token: Swift.String, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func updateToken(_ token: Swift.String) async throws + nonisolated final public func logIn(with token: Swift.String) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func logOut(completion: (@Sendable (Swift.Result) -> Swift.Void)?) #endif - convenience public init(apiBaseURL: Foundation.URL) + nonisolated final public func logOut() async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func updateToken(_ token: Swift.String, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + nonisolated final public func updateToken(_ token: Swift.String) async throws + @propertyWrapper public struct BackendSync { + public var wrappedValue: T { + get + set + } + } @objc deinit } -public enum ApptentiveError : Swift.Error, Foundation.LocalizedError { +public enum ApptentiveError : Swift.Error, Foundation.LocalizedError, Swift.Equatable { case internalInconsistency - case invalidCustomDataType(Any?) + case invalidCustomDataType case fileExistsAtContainerDirectoryPath case unsupportedBackendStateTransition case emptyEventName @@ -381,14 +401,19 @@ public enum ApptentiveError : Swift.Error, Foundation.LocalizedError { case missingSubClaim case mismatchedSubClaim case invalidEncryptionKey + case invalidAppCredentials case noActiveConversation case authenticationFailed(reason: ApptentiveKit.AuthenticationFailureReason?, responseString: Swift.String?) case resourceNotDecodableAsImage + case interactionExceededRateLimit(count: Swift.Int, limit: Swift.Int) + #if compiler(>=5.3) && $NonescapableTypes public var errorDescription: Swift.String? { get } + #endif + public static func == (a: ApptentiveKit.ApptentiveError, b: ApptentiveKit.ApptentiveError) -> Swift.Bool } -public enum AuthenticationFailureReason : Swift.String, Swift.Codable { +public enum AuthenticationFailureReason : Swift.String, Swift.Codable, Swift.Sendable { case invalidAlgorithm case malformedToken case invalidToken @@ -400,14 +425,16 @@ public enum AuthenticationFailureReason : Swift.String, Swift.Codable { case missingAppKey case missingAppSignature case invalidKeySignaturePair + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get } } -public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> () -public protocol CustomDataCompatible { +nonisolated(unsafe) public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> () +public protocol CustomDataCompatible : Swift.Sendable { } extension Swift.String : ApptentiveKit.CustomDataCompatible { } @@ -419,12 +446,14 @@ extension Swift.Int : ApptentiveKit.CustomDataCompatible { } extension Swift.Bool : ApptentiveKit.CustomDataCompatible { } -public struct CustomData : Swift.Equatable, Swift.Codable { +public struct CustomData : Swift.Equatable, Swift.Codable, Swift.Sendable { public init() + #if compiler(>=5.3) && $NonescapableTypes public subscript(key: Swift.String) -> (any ApptentiveKit.CustomDataCompatible)? { get set } + #endif public var keys: Swift.Dictionary.Keys { get } @@ -432,56 +461,64 @@ public struct CustomData : Swift.Equatable, Swift.Codable { public init(from decoder: any Swift.Decoder) throws public static func == (lhs: ApptentiveKit.CustomData, rhs: ApptentiveKit.CustomData) -> Swift.Bool } -public protocol SurveyViewModelDelegate : AnyObject { - func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) -} -@_hasMissingDesignatedInitializers public class SurveyViewModel { - final public let name: Swift.String? - final public let isRequired: Swift.Bool - final public let pageIndicatorSegmentCount: Swift.Int - final public let validationErrorMessage: Swift.String - public var disclaimerText: Swift.String? { +@_Concurrency.MainActor public protocol SurveyViewModelDelegate : AnyObject { + @_Concurrency.MainActor func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class SurveyViewModel { + @_Concurrency.MainActor final public let name: Swift.String? + @_Concurrency.MainActor final public let isRequired: Swift.Bool + @_Concurrency.MainActor final public let pageIndicatorSegmentCount: Swift.Int + @_Concurrency.MainActor final public let validationErrorMessage: Foundation.AttributedString + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var disclaimerText: Foundation.AttributedString? { get } + #endif public struct TermsAndConditions { } - final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions? + @_Concurrency.MainActor final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions? public struct CloseConfirmation { } - final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation - weak public var delegate: (any ApptentiveKit.SurveyViewModelDelegate)? - public var currentPage: ApptentiveKit.SurveyViewModel.Page { + @_Concurrency.MainActor final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation + @_Concurrency.MainActor weak public var delegate: (any ApptentiveKit.SurveyViewModelDelegate)? + @_Concurrency.MainActor public var currentPage: ApptentiveKit.SurveyViewModel.Page { get } - public var questions: [ApptentiveKit.SurveyViewModel.Question] { + @_Concurrency.MainActor public var questions: [ApptentiveKit.SurveyViewModel.Question] { get } - public var isMarkedAsInvalid: Swift.Bool { + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get } - public var thankYouMessage: Swift.String? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var thankYouMessage: Foundation.AttributedString? { get } - public var introduction: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var introduction: Foundation.AttributedString? { get } - public var advanceButtonText: Swift.String { + #endif + @_Concurrency.MainActor public var advanceButtonText: Swift.String { get } - public var invalidQuestionIndexes: Foundation.IndexSet { + @_Concurrency.MainActor public var invalidQuestionIndexes: Foundation.IndexSet { get } - public var surveyDidSendResponse: Swift.Bool - public var highlightFirstQuestionSegment: Swift.Bool - public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath) - public func selectValueFromRange(at indexPath: Foundation.IndexPath) - public func openTermsAndConditions() - public func advance() - public var isValid: Swift.Bool { + @_Concurrency.MainActor public var surveyDidSendResponse: Swift.Bool + @_Concurrency.MainActor public var highlightFirstQuestionSegment: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath) + #endif + @_Concurrency.MainActor public func selectValueFromRange(at indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func openTermsAndConditions() + @_Concurrency.MainActor public func advance() async + @_Concurrency.MainActor public var isValid: Swift.Bool { get } public enum DisplayMode { @@ -493,104 +530,106 @@ public protocol SurveyViewModelDelegate : AnyObject { get } } - public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode { + @_Concurrency.MainActor public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode { get } - public var shouldConfirmCancel: Swift.Bool { + @_Concurrency.MainActor public var shouldConfirmCancel: Swift.Bool { get } - public var currentSelectedSegmentIndex: Swift.Int? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var currentSelectedSegmentIndex: Swift.Int? { get } - public func launch() - public func continuePartial() - public func cancel(partial: Swift.Bool) + #endif + @_Concurrency.MainActor public var isIntroPage: Swift.Bool { + get + } + @_Concurrency.MainActor public var isSuccessPage: Swift.Bool { + get + } + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func continuePartial() + @_Concurrency.MainActor public func cancel(partial: Swift.Bool) @objc deinit } extension ApptentiveKit.SurveyViewModel { - @_hasMissingDesignatedInitializers public class Page { - final public let id: Swift.String - final public let description: Swift.String? - final public let disclaimer: Swift.String? - final public let questions: [ApptentiveKit.SurveyViewModel.Question] - final public let advanceButtonLabel: Swift.String - final public let pageIndicatorValue: Swift.Int? + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Page { + @_Concurrency.MainActor final public let id: Swift.String + @_Concurrency.MainActor final public let description: Foundation.AttributedString? + @_Concurrency.MainActor final public let disclaimer: Foundation.AttributedString? + @_Concurrency.MainActor final public let questions: [ApptentiveKit.SurveyViewModel.Question] + @_Concurrency.MainActor final public let advanceButtonLabel: Swift.String + @_Concurrency.MainActor final public let pageIndicatorValue: Swift.Int? @objc deinit } } -public protocol MessageCenterViewModelDelegate : AnyObject { - func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToRemoveAttachmentAt index: Swift.Int, with error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToAddAttachmentWith error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToSendMessageWith error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFinishAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFailAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath, with error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, profilePhoto: UIKit.UIImage, didDownloadFor indexPath: Foundation.IndexPath) -} -@_hasMissingDesignatedInitializers public class MessageCenterViewModel { - final public let headingTitle: Swift.String - final public let branding: Swift.String? - final public let composerTitle: Swift.String - final public let composerSendButtonTitle: Swift.String - final public let composerAttachButtonTitle: Swift.String - final public let composerPlaceholderText: Swift.String - final public let composerCloseConfirmBody: Swift.String - final public let composerCloseDiscardButtonTitle: Swift.String - final public let composerCloseCancelButtonTitle: Swift.String - final public let greetingTitle: Swift.String - final public let greetingBody: Swift.String - final public let greetingImageURL: Foundation.URL - final public let statusBody: Swift.String? - public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]] - public var hasLoadedMessages: Swift.Bool - public var thumbnailSize: CoreFoundation.CGSize { +@_Concurrency.MainActor public protocol MessageCenterViewModelDelegate : AnyObject { + @_Concurrency.MainActor func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel) +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class MessageCenterViewModel { + @_Concurrency.MainActor final public let headingTitle: Swift.String + @_Concurrency.MainActor final public let branding: Swift.String? + @_Concurrency.MainActor final public let composerTitle: Swift.String + @_Concurrency.MainActor final public let composerSendButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerAttachButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerPlaceholderText: Swift.String + @_Concurrency.MainActor final public let composerCloseConfirmBody: Swift.String + @_Concurrency.MainActor final public let composerCloseDiscardButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerCloseCancelButtonTitle: Swift.String + @_Concurrency.MainActor final public let greetingTitle: Swift.String + @_Concurrency.MainActor final public let greetingBody: Swift.String + @_Concurrency.MainActor final public let greetingImageURL: Foundation.URL + @_Concurrency.MainActor final public let statusBody: Swift.String? + @_Concurrency.MainActor public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]] + @_Concurrency.MainActor public var hasLoadedMessages: Swift.Bool + @_Concurrency.MainActor public var thumbnailSize: CoreFoundation.CGSize { get set } - final public let profileNamePlaceholder: Swift.String - final public let profileEmailPlaceholder: Swift.String - final public let profileCancelButtonText: Swift.String - final public let profileSaveButtonText: Swift.String - final public let profileEmailInvalidError: Swift.String - final public let editProfileViewTitle: Swift.String - final public let editProfileNamePlaceholder: Swift.String - final public let editProfileEmailPlaceholder: Swift.String - final public let editProfileCancelButtonText: Swift.String - final public let editProfileSaveButtonText: Swift.String - final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode - final public let closeButtonAccessibilityLabel: Swift.String - final public let closeButtonAccessibilityHint: Swift.String - final public let profileButtonAccessibilityLabel: Swift.String - final public let profileButtonAccessibilityHint: Swift.String - final public let sendButtonAccessibilityLabel: Swift.String - final public let sendButtonAccessibilityHint: Swift.String - final public let attachButtonAccessibilityLabel: Swift.String - final public let attachButtonAccessibilityHint: Swift.String - final public let attachmentOptionsTitle: Swift.String - final public let attachmentOptionsImagesButton: Swift.String - final public let attachmentOptionsFilesButton: Swift.String - final public let attachmentOptionsCancelButton: Swift.String - final public let showAttachmentButtonAccessibilityHint: Swift.String - final public let downloadAttachmentButtonAccessibilityHint: Swift.String - public var emailAddress: Swift.String? { + @_Concurrency.MainActor final public let profileNamePlaceholder: Swift.String + @_Concurrency.MainActor final public let profileEmailPlaceholder: Swift.String + @_Concurrency.MainActor final public let profileCancelButtonText: Swift.String + @_Concurrency.MainActor final public let profileSaveButtonText: Swift.String + @_Concurrency.MainActor final public let profileEmailInvalidError: Swift.String + @_Concurrency.MainActor final public let editProfileViewTitle: Swift.String + @_Concurrency.MainActor final public let editProfileNamePlaceholder: Swift.String + @_Concurrency.MainActor final public let editProfileEmailPlaceholder: Swift.String + @_Concurrency.MainActor final public let editProfileCancelButtonText: Swift.String + @_Concurrency.MainActor final public let editProfileSaveButtonText: Swift.String + @_Concurrency.MainActor final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode + @_Concurrency.MainActor final public let closeButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let closeButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let profileButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let profileButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let sendButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let sendButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let attachButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let attachButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsTitle: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsImagesButton: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsFilesButton: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsCancelButton: Swift.String + @_Concurrency.MainActor final public let showAttachmentButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let downloadAttachmentButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor public var emailAddress: Swift.String? { get set } - public var name: Swift.String? { + @_Concurrency.MainActor public var name: Swift.String? { get set } - public var profileIsValid: Swift.Bool - public var shouldRequestProfile: Swift.Bool - public var shouldAllowProfileEdit: Swift.Bool + @_Concurrency.MainActor public var profileIsValid: Swift.Bool + @_Concurrency.MainActor public var shouldRequestProfile: Swift.Bool + @_Concurrency.MainActor public var shouldAllowProfileEdit: Swift.Bool public enum ProfileMode { case optionalEmail case requiredEmail @@ -601,49 +640,61 @@ public protocol MessageCenterViewModelDelegate : AnyObject { get } } - public var oldestUnreadMessageIndexPath: Foundation.IndexPath? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var oldestUnreadMessageIndexPath: Foundation.IndexPath? { get } - public var newestMessageIndexPath: Foundation.IndexPath? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var newestMessageIndexPath: Foundation.IndexPath? { get } - public func commitProfileEdits() - public func cancelProfileEdits() - public func launch() - public func cancel() - public var numberOfMessageGroups: Swift.Int { + #endif + @_Concurrency.MainActor public func commitProfileEdits() + @_Concurrency.MainActor public func cancelProfileEdits() + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func cancel() + @_Concurrency.MainActor public var numberOfMessageGroups: Swift.Int { get } - public func markMessageAsRead(at indexPath: Foundation.IndexPath) - public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int - public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String? - public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message - public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) - public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message { + @_Concurrency.MainActor public func markMessageAsRead(at indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String? + #endif + @_Concurrency.MainActor public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message + @_Concurrency.MainActor public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) async throws + @_Concurrency.MainActor public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message { get } - public var draftMessageBody: Swift.String? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var draftMessageBody: Swift.String? { get set } - public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] { + #endif + @_Concurrency.MainActor public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] { get } - public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?) - public func addFileAttachment(at sourceURL: Foundation.URL) - public func removeAttachment(at index: Swift.Int) - public var remainingAttachmentSlots: Swift.Int { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?) async throws + #endif + @_Concurrency.MainActor public func addFileAttachment(at sourceURL: Foundation.URL) async throws + @_Concurrency.MainActor public func removeAttachment(at index: Swift.Int) async throws + @_Concurrency.MainActor public var remainingAttachmentSlots: Swift.Int { get } - public var canAddAttachment: Swift.Bool { + @_Concurrency.MainActor public var canAddAttachment: Swift.Bool { get } - public var canSendMessage: Swift.Bool { + @_Concurrency.MainActor public var canSendMessage: Swift.Bool { get } - public func sendMessage() - public func getGreetingImage(completion: @escaping (UIKit.UIImage) -> Swift.Void) - public func getProfilePhoto(for indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func sendMessage() async throws + @_Concurrency.MainActor public func getGreetingImage() async throws -> UIKit.UIImage + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func getProfilePhoto(for indexPath: Foundation.IndexPath) async throws -> UIKit.UIImage? + #endif @objc deinit } public enum MessageCenterViewModelError : Swift.Error { @@ -656,92 +707,134 @@ public enum MessageCenterViewModelError : Swift.Error { } } extension ApptentiveKit.Apptentive { - public var engagementManifestURL: Foundation.URL? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public var engagementManifestURL: Foundation.URL? { get } - public func loadEngagementManifest(at url: Foundation.URL?, completion: @escaping (Swift.Result) -> Swift.Void) - public func getInteractionList(_ completion: @escaping ([ApptentiveKit.Apptentive.InteractionListItem]) -> Swift.Void) - public func presentInteraction(with id: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void) - public func presentInteraction(at url: Foundation.URL, completion: @escaping (Swift.Result) -> Swift.Void) + #endif + public enum ConversationState : Swift.String { + case none + case placeholder + case anonymousPending + case legacyPending + case anonymous + case loggedIn + case loggedOut + #if compiler(>=5.3) && $NonescapableTypes + public init?(rawValue: Swift.String) + #endif + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func loadEngagementManifest(at url: Foundation.URL?) async throws + #endif + @_Concurrency.MainActor final public func getInteractionList() async -> [ApptentiveKit.Apptentive.InteractionListItem] + @_Concurrency.MainActor final public func presentInteraction(with id: Swift.String) async throws + @_Concurrency.MainActor final public func presentInteraction(at url: Foundation.URL) async throws public struct InteractionListItem { public let id: Swift.String public let displayName: Swift.String public let typeName: Swift.String } - public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void) - public func getConnectionInfo(_ completion: @escaping (_ state: Swift.String?, _ id: Swift.String?, _ token: Swift.String?, _ subject: Swift.String?, _ buttonLabel: Swift.String?) -> Swift.Void) + @_Concurrency.MainActor final public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func getConnectionInfo() async -> (ApptentiveKit.Apptentive.ConversationState, Swift.String?, Swift.String?) + #endif +} +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @available(iOS 26, *) +@_Concurrency.MainActor @preconcurrency public class GlassDialogButton : UIKit.UIView { + #if compiler(>=5.3) && $IsolatedDeinit + @objc @_Concurrency.MainActor deinit + #else + @objc deinit + #endif } extension ApptentiveKit.SurveyViewModel { - @_hasMissingDesignatedInitializers public class Question { - final public let text: Swift.String - final public let isRequired: Swift.Bool - final public let requiredText: Swift.String? - final public let errorMessage: Swift.String - final public let instructions: Swift.String? - public var isMarkedAsInvalid: Swift.Bool { + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Question { + @_Concurrency.MainActor final public let text: Foundation.AttributedString + @_Concurrency.MainActor final public let isRequired: Swift.Bool + @_Concurrency.MainActor final public let requiredText: Swift.String? + @_Concurrency.MainActor final public let errorMessage: Swift.String + @_Concurrency.MainActor final public let instructions: Swift.String? + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get set } - public var accessibilityLabel: Swift.String { + @_Concurrency.MainActor public var accessibilityLabel: Swift.String { get } @objc deinit } } -public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible { +public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible, Swift.CustomStringConvertible, Swift.Sendable { public var customData: ApptentiveKit.CustomData public init(name: Swift.String) public init(stringLiteral value: Swift.String) public var debugDescription: Swift.String { get } + public var description: Swift.String { + get + } public typealias ExtendedGraphemeClusterLiteralType = Swift.String public typealias StringLiteralType = Swift.String public typealias UnicodeScalarLiteralType = Swift.String } -open class InteractionPresenter { - public init() - open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) throws - open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) throws - open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) throws - open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel, completion: @escaping (Swift.Result) -> Swift.Void) - open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController, completion: (() -> Swift.Void)? = {}) throws - public var validatedPresentingViewController: UIKit.UIViewController? { +@_Concurrency.MainActor open class InteractionPresenter { + @_Concurrency.MainActor public init() + @_Concurrency.MainActor open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) async throws + @_Concurrency.MainActor open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) async throws + @_Concurrency.MainActor open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) async throws + @_Concurrency.MainActor open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel) async throws + @_Concurrency.MainActor open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var validatedPresentingViewController: UIKit.UIViewController? { get } - public var messageCenterCurrentlyPresented: Swift.Bool { + #endif + @_Concurrency.MainActor public var messageCenterCurrentlyPresented: Swift.Bool { get } - open func dismissPresentedViewController(animated: Swift.Bool) + @_Concurrency.MainActor open func dismissPresentedViewController(animated: Swift.Bool) @objc deinit } -public enum InteractionPresenterError : Swift.Error { +public enum InteractionPresenterError : Swift.Error, Swift.Equatable { case notImplemented(Swift.String, Swift.String) case decodingFailed(Swift.String, Swift.String) case noPresentingViewController + public static func == (a: ApptentiveKit.InteractionPresenterError, b: ApptentiveKit.InteractionPresenterError) -> Swift.Bool +} +extension ApptentiveKit.Apptentive { + @objc @_Concurrency.MainActor public static var fontName: Swift.String? { + @objc get + @objc set + } } extension Foundation.NSNotification.Name { public static let apptentiveEventEngaged: Foundation.Notification.Name } -public protocol DialogViewModelDelegate : AnyObject { - func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage: ApptentiveKit.DialogViewModel.Image) - func dismiss() -} -@_hasMissingDesignatedInitializers public class DialogViewModel { - final public let title: Swift.String? - final public let message: Swift.String? - final public let dialogType: ApptentiveKit.DialogViewModel.DialogType - final public let actions: [ApptentiveKit.DialogViewModel.Action] - public var dialogContainsImage: Swift.Bool - public var image: ApptentiveKit.DialogViewModel.Image { +@_Concurrency.MainActor public protocol DialogViewModelDelegate : AnyObject { + @_Concurrency.MainActor func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage: ApptentiveKit.DialogViewModel.Image) + @_Concurrency.MainActor func dismiss() +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class DialogViewModel { + @_Concurrency.MainActor final public let title: Foundation.AttributedString? + @_Concurrency.MainActor final public let message: Foundation.AttributedString? + @_Concurrency.MainActor final public let dialogType: ApptentiveKit.DialogViewModel.DialogType + @_Concurrency.MainActor final public let actions: [ApptentiveKit.DialogViewModel.Action] + @_Concurrency.MainActor public var dialogContainsImage: Swift.Bool + @_Concurrency.MainActor public var image: ApptentiveKit.DialogViewModel.Image { get set } - public var maxHeight: Swift.Int - weak public var delegate: (any ApptentiveKit.DialogViewModelDelegate)? - public func buttonSelected(at position: Swift.Int) - public func launch() - public func cancel() + @_Concurrency.MainActor public var maxHeight: Swift.Int + @_Concurrency.MainActor weak public var delegate: (any ApptentiveKit.DialogViewModelDelegate)? + @_Concurrency.MainActor public func buttonSelected(at position: Swift.Int) + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func cancel() public enum DialogType { case enjoymentDialog case textModal @@ -753,30 +846,30 @@ public protocol DialogViewModelDelegate : AnyObject { } @objc deinit } -@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogView : UIKit.UIView { - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleTextColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var messageTextColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var messageFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var headerImage: UIKit.UIImage? - @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonSpacing: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonInset: UIKit.UIEdgeInsets - @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorsAreHidden: Swift.Bool - @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var imageInset: UIKit.UIEdgeInsets { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogView : UIKit.UIView { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleTextColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var messageTextColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var messageFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var headerImage: UIKit.UIImage? + @objc @_Concurrency.MainActor @preconcurrency dynamic public var cornerRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var buttonSpacing: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var buttonInset: UIKit.UIEdgeInsets + @objc @_Concurrency.MainActor @preconcurrency dynamic public var separatorsAreHidden: Swift.Bool + @objc @_Concurrency.MainActor @preconcurrency dynamic public var separatorColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var imageInset: UIKit.UIEdgeInsets { @objc get @objc set } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func didMoveToWindow() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func layoutSubviews() @objc deinit } extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let placeholderText: Swift.String? - final public let allowMultipleLines: Swift.Bool - public var value: Swift.String? { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let placeholderText: Swift.String? + @_Concurrency.MainActor final public let allowMultipleLines: Swift.Bool + @_Concurrency.MainActor public var value: Swift.String? { get set } @@ -784,155 +877,106 @@ extension ApptentiveKit.SurveyViewModel { } } extension ApptentiveKit.Apptentive { - @available(*, deprecated, message: "Use the 'register(with:completion:)' method on the 'shared' instance instead.") - @objc(registerWithConfiguration:) dynamic public class func register(with configuration: ApptentiveKit.ApptentiveConfiguration) + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the 'register(with:completion:) method that takes an 'AppCredentials' argument.") - @objc(registerWithConfiguration:completion:) dynamic public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "Use the 'shared' static property instead.") - @objc dynamic public class func sharedConnection() -> ApptentiveKit.Apptentive - @available(*, deprecated, message: "This property is ignored. SKStoreReviewController will be used for all ratings.") - @objc dynamic public var appID: Swift.String? { - @objc get - @objc set - } - @available(*, deprecated, message: "This property is ignored. The info button no longer exists.") - @objc dynamic public var showInfoButton: Swift.Bool { - @objc get - @objc set - } - @available(*, deprecated, message: "This feature is not implemented.") - @objc dynamic public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? { - @objc get - @objc set - } - @available(*, deprecated, message: "This property is not available for reading.") - @objc dynamic public var apptentiveKey: Swift.String { - @objc get - } - @available(*, deprecated, message: "This property is not available for reading.") - @objc dynamic public var apptentiveSignature: Swift.String { - @objc get - } - @objc(engage:fromViewController:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?) - @objc(engage:fromViewController:completion:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) + @objc(registerWithConfiguration:completion:) @_Concurrency.MainActor final public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(engage:fromViewController:) @_Concurrency.MainActor final public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(engage:fromViewController:completion:) @_Concurrency.MainActor final public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.") - @objc(engage:withCustomData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?) + @objc(engage:withCustomData:fromViewController:) @_Concurrency.MainActor final public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.") - @objc(engage:withCustomData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.") - @objc(engage:withCustomData:withExtendedData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?) - @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.") - @objc(engage:withCustomData:withExtendedData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:completion:)' method instead.") - @objc dynamic public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void) - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataDate:) dynamic public class func extendedData(date: Foundation.Date) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataLocationForLatitude:longitude:) dynamic public class func extendedData(latitude: Swift.Double, longitude: Swift.Double) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:) dynamic public class func extendedData(transactionID: Swift.String?, affiliation: Swift.String?, revenue: Foundation.NSNumber?, shipping: Foundation.NSNumber?, tax: Foundation.NSNumber?, currency: Swift.String?, commerceItems: [[Swift.AnyHashable : Any]]?) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:) dynamic public class func extendedData(itemID: Swift.String?, name: Swift.String?, category: Swift.String?, price: Foundation.NSNumber?, quantity: Foundation.NSNumber?, currency: Swift.String?) -> [Swift.AnyHashable : Any] - @available(swift, deprecated: 1.0, message: "Use the 'canShowMessageCenter(completion:)' method instead.") - @objc dynamic public func queryCanShowMessageCenter(completion: @escaping (Swift.Bool) -> Swift.Void) - @objc(presentMessageCenterFromViewController:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?) - @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc(presentMessageCenterFromViewController:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @objc(presentMessageCenterFromViewController:withCustomData:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?) - @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc(presentMessageCenterFromViewController:withCustomData:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "This feature is not implemented and this method will always result in false.") - @objc dynamic public func dismissMessageCenter(animated: Swift.Bool, completion: (() -> Swift.Void)? = nil) - @available(*, deprecated, message: "This feature is not implemented and this property will return an empty view.") - @objc dynamic public func unreadMessageCountAccessoryView(apptentiveHeart: Swift.Bool) -> UIKit.UIView - @available(*, deprecated, message: "This method is no longer implemented and will trigger an assertion failure.") - @objc dynamic public func openAppStore() - @available(*, deprecated, message: "Use the 'setRemoteNotificationToken()' method instead.") - @objc dynamic public func setPushProvider(_ pushProvider: ApptentiveKit.ApptentivePushProvider, deviceToken: Foundation.Data) - @available(*, deprecated, message: "This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:).") - @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, from _: UIKit.UIViewController?, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool - @available(*, deprecated, message: "Advertising identifier collection is not implemented.") - @objc dynamic public var advertisingIdentifier: Foundation.UUID? { - @objc get - @objc set - } - @available(*, deprecated, message: "mParticleId has been renamed to mParticleID.") - @objc dynamic public var mParticleId: Swift.String? { - @objc get - @objc set - } + @objc(engage:withCustomData:fromViewController:completion:) @_Concurrency.MainActor final public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:)' method instead.") + @objc @_Concurrency.MainActor final public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping @Sendable (Swift.Bool) -> Swift.Void) + @available(swift, deprecated: 1.0, message: "Use the 'canShowMessageCenter()' method instead.") + @objc @_Concurrency.MainActor final public func queryCanShowMessageCenter(completion: @escaping @Sendable (Swift.Bool) -> Swift.Void) + #if compiler(>=5.3) && $NonescapableTypes + @objc(presentMessageCenterFromViewController:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @available(swift, deprecated: 1.0, message: "Use the async version of this method.") + @objc(presentMessageCenterFromViewController:completion:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(presentMessageCenterFromViewController:withCustomData:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @available(swift, deprecated: 1.0, message: "Use the async version of this method.") + @objc(presentMessageCenterFromViewController:withCustomData:completion:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc dynamic public func removeCustomPersonData(withKey key: Swift.String) + @objc @_Concurrency.MainActor final public func removeCustomPersonData(withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc dynamic public func removeCustomDeviceData(withKey key: Swift.String) + @objc @_Concurrency.MainActor final public func removeCustomDeviceData(withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataString:withKey:) dynamic public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String) + @objc(addCustomDeviceDataString:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataNumber:withKey:) dynamic public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String) + @objc(addCustomDeviceDataNumber:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataBool:withKey:) dynamic public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String) + @objc(addCustomDeviceDataBool:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataString:withKey:) dynamic public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String) + @objc(addCustomPersonDataString:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataNumber:withKey:) dynamic public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String) + @objc(addCustomPersonDataNumber:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataBool:withKey:) dynamic public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String) - @available(*, deprecated, message: "Set style overrides defined in UIKit+Apptentive.swift extensions.") - @objc dynamic public var styleSheet: Any? { - @objc get - @objc set - } - @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.") - @objc dynamic public func checkSDKConfiguration() + @objc(addCustomPersonDataBool:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String) + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func logIn(withToken token: Swift.String, completion: @escaping (Swift.Bool, (any Swift.Error)?) -> Swift.Void) + @objc @_Concurrency.MainActor final public func logIn(withToken token: Swift.String, completion: @escaping @Sendable (Swift.Bool, (any Swift.Error)?) -> Swift.Void) + #endif @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func logOut() + @objc @_Concurrency.MainActor final public func logOut() + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Assign an object that conforms to the 'ApptentiveDelegate' protocol to the Apptentive instance's 'delegate' property.") - @objc dynamic public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? { - @objc get - @objc set - } - @available(*, deprecated, message: "This feature is no longer supported.") - @objc dynamic public var preInteractionCallback: ApptentiveKit.ApptentiveInteractionCallback? { + @objc @_Concurrency.MainActor final public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? { @objc get @objc set } + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func updateToken(_ token: Swift.String, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") - @objc dynamic public var logLevel: ApptentiveKit.ApptentiveLogLevel { + @objc @_Concurrency.MainActor final public func updateToken(_ token: Swift.String, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + @available(swift, deprecated: 1.0, message: "Log level is no longer supported. Use the filtering in Xcode or Console app.") + @objc @_Concurrency.MainActor final public var logLevel: ApptentiveKit.ApptentiveLogLevel { @objc get @objc set } } extension UIKit.UIButton { @available(swift, deprecated: 1.0, message: "Set the 'apptentiveStyle' property to 'ApptentiveButtonStyle.pill'.") - @objc @_Concurrency.MainActor(unsafe) public static let apptentivePillRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency public static let apptentivePillRadius: CoreFoundation.CGFloat @available(swift, deprecated: 1.0, message: "Use the 'apptentiveStyle' property.") - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveCornerRadius: CoreFoundation.CGFloat { + @objc @_Concurrency.MainActor @preconcurrency public static var apptentiveCornerRadius: CoreFoundation.CGFloat { @objc get @objc set } } extension UIKit.UITableView { @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UITableView.Style'.") - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: Swift.Int { + @objc @_Concurrency.MainActor @preconcurrency public static var apptentiveStyle: Swift.Int { @objc get @objc set } } extension UIKit.UIViewController { @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UIModalPresentationStyle'.") - @objc @_Concurrency.MainActor(unsafe) dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle { @objc get @objc set } } @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") public typealias ApptentiveAuthenticationFailureCallback = (ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> Swift.Void -@available(*, deprecated, message: "This feature is no longer supported.") -public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") @objc public enum ApptentiveAuthenticationFailureReason : Swift.Int { case unknown = 0 @@ -947,7 +991,10 @@ public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashab case missingAppKey = 9 case missingAppSignature = 10 case invalidKeySignaturePair = 11 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif + @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get @@ -957,39 +1004,23 @@ public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashab public class ApptentiveConfiguration : ObjectiveC.NSObject { @objc final public let apptentiveKey: Swift.String @objc final public let apptentiveSignature: Swift.String - @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of its static log properties.") + @available(*, deprecated, message: "Logging now uses iOS's Unified Logging features so logs are no longer filtered by the SDK.") @objc public var logLevel: ApptentiveKit.ApptentiveLogLevel - @available(swift, deprecated: 1.0, message: "Set the 'shouldHideSensitiveLogs' property on 'ApptentiveLogger' or one of its static log properties.") + @available(*, deprecated, message: "Logging now uses iOS's Unified Logging features so redaction of sensitive information is handled automatically.") @objc public var shouldSanitizeLogMessages: Swift.Bool - @available(*, deprecated, message: "This property is ignored. Use the designated initializer for 'Apptentive' to set this.") - @objc public var baseURL: Foundation.URL? + @objc public var overrideBaseURL: Foundation.URL? + @objc public var region: Swift.String? @available(swift, deprecated: 1.0, message: "Set the 'distributionName' property on 'Apptentive' directly before calling 'register(with:completion)'.") @objc public var distributionName: Swift.String? @available(swift, deprecated: 1.0, message: "Set the 'distributionVersion' property on 'Apptentive' directly before calling 'register(with:completion)'.") @objc public var distributionVersion: Swift.String? - @available(*, deprecated, message: "This property is ignored. An 'SKStoreReviewController' will be used for all ratings.") - @objc public var appID: Swift.String? - @available(*, deprecated, message: "This property is ignored. The info button no longer exists.") - @objc public var showInfoButton: Swift.Bool - @available(*, deprecated, message: "This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard.") - @objc public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? + #if compiler(>=5.3) && $NonescapableTypes @objc(initWithApptentiveKey:apptentiveSignature:) required public init?(apptentiveKey: Swift.String, apptentiveSignature: Swift.String) + #endif @objc public static func configuration(apptentiveKey key: Swift.String, apptentiveSignature signature: Swift.String) -> ApptentiveKit.ApptentiveConfiguration @objc deinit } -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -@objc public enum ApptentivePushProvider : Swift.Int { - case apptentive = 0 - case urbanAirship = 1 - case amazonSNS = 2 - case parse = 3 - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") @objc public enum ApptentiveLogLevel : Swift.UInt { case undefined = 0 case crit = 1 @@ -998,340 +1029,266 @@ public class ApptentiveConfiguration : ObjectiveC.NSObject { case info = 4 case debug = 5 case verbose = 6 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.UInt) + #endif + @available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") public typealias RawValue = Swift.UInt public var rawValue: Swift.UInt { get } } -@objc @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public class TermsAndConditions : ObjectiveC.NSObject { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public init(bodyText: Swift.String?, linkText: Swift.String?, linkURL: Foundation.URL?) - final public let bodyText: Swift.String? - final public let linkText: Swift.String? - final public let linkURL: Foundation.URL? - @objc deinit -} -@available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public protocol ApptentiveStyle { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor -} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -public enum ApptentiveStyleIdentifier { - case body - case headerTitle - case headerMessage - case messageDate - case messageSender - case messageStatus - case messageCenterStatus - case surveyInstructions - case doneButton - case button - case submitButton - case textInput - case headerBackground - case footerBackground - case failure - case separator - case background - case collectionBackground - case textInputBackground - case textInputPlaceholder - case messageBackground - case replyBackground - case contextBackground - public static func == (a: ApptentiveKit.ApptentiveStyleIdentifier, b: ApptentiveKit.ApptentiveStyleIdentifier) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public class ApptentiveStyleSheet : ApptentiveKit.ApptentiveStyle { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - convenience public init?(contentsOf stylePropertyListURL: Foundation.URL) - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var fontFamily: Swift.String - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var lightFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var regularFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var mediumFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var boldFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var primaryColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var secondaryColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var failureColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var backgroundColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var separatorColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var collectionBackgroundColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var placeholderColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var sizeAdjustment: CoreFoundation.CGFloat - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func setFontDescriptor(_ fontDescriptor: UIKit.UIFontDescriptor, forStyle style: Swift.String) - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func setColor(_ color: UIKit.UIColor, forStyle style: Swift.String) - @objc deinit -} -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogButton : UIKit.UIButton { - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var borderWidth: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var borderColor: UIKit.UIColor - @_Concurrency.MainActor(unsafe) @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogButton : UIKit.UIButton { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var cornerRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var borderWidth: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var borderColor: UIKit.UIColor + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize { @objc get } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func layoutSubviews() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func didMoveToWindow() @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DismissButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DismissButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class InteractionButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class InteractionButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class YesButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class YesButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class NoButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class NoButton : ApptentiveKit.DialogButton { @objc deinit } -public struct Sysctl { - public enum Error : Swift.Error { - case unknown - case malformedUTF8 - case invalidSize - case posixError(Darwin.POSIXErrorCode) - } - public static func data(for keys: [Swift.Int32]) throws -> [Swift.Int8] - public static func keys(for name: Swift.String) throws -> [Swift.Int32] - public static func value(ofType: T.Type, forKeys keys: [Swift.Int32]) throws -> T - public static func value(ofType type: T.Type, forKeys keys: Swift.Int32...) throws -> T - public static func value(ofType type: T.Type, forName name: Swift.String) throws -> T - public static func string(for keys: [Swift.Int32]) throws -> Swift.String - public static func string(for keys: Swift.Int32...) throws -> Swift.String - public static func string(for name: Swift.String) throws -> Swift.String - public static var hostName: Swift.String { - get - } - public static var machine: Swift.String { - get - } - public static var model: Swift.String { - get - } - public static var activeCPUs: Swift.Int32 { - get - } - public static var osRelease: Swift.String { - get - } - public static var osType: Swift.String { - get - } - public static var osVersion: Swift.String { - get - } - public static var version: Swift.String { - get - } -} -@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class ApptentiveNavigationController : UIKit.UINavigationController { - @_Concurrency.MainActor(unsafe) @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle { +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class ApptentiveNavigationController : UIKit.UINavigationController { + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle { @objc get } - @objc @_Concurrency.MainActor(unsafe) public static var prefersLargeHeader: Swift.Bool + @objc @_Concurrency.MainActor @preconcurrency public static var prefersLargeHeader: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes @available(iOS 5.0, *) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(rootViewController: UIKit.UIViewController) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) - @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?) + #endif + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(rootViewController: UIKit.UIViewController) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) + #endif @objc deinit } -extension UIKit.UITableView { - @_Concurrency.MainActor(unsafe) public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat +@_Concurrency.MainActor extension UIKit.UITableView { + @_Concurrency.MainActor public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat } -extension UIKit.UITableView.Style { - public static var apptentive: UIKit.UITableView.Style +@_Concurrency.MainActor extension UIKit.UITableView.Style { + @_Concurrency.MainActor public static var apptentive: UIKit.UITableView.Style } -extension UIKit.UIModalPresentationStyle { - public static var apptentive: UIKit.UIModalPresentationStyle +@_Concurrency.MainActor extension UIKit.UIModalPresentationStyle { + @_Concurrency.MainActor public static var apptentive: UIKit.UIModalPresentationStyle } -extension UIKit.UIBarButtonItem { - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIBarButtonItem - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveProfileEdit: UIKit.UIBarButtonItem +@_Concurrency.MainActor extension UIKit.UIBarButtonItem { + @objc @_Concurrency.MainActor public static var apptentiveClose: UIKit.UIBarButtonItem + @objc @_Concurrency.MainActor public static var appentiveRefresh: UIKit.UIBarButtonItem + @objc @_Concurrency.MainActor public static var apptentiveProfileEdit: UIKit.UIBarButtonItem } -extension UIKit.UIButton { - @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIButton? - public enum ApptentiveButtonStyle { +@_Concurrency.MainActor extension UIKit.UIButton { + @_Concurrency.MainActor public static var apptentiveClose: UIKit.UIButton? + public enum ApptentiveButtonStyle : Swift.Equatable { case pill case radius(CoreFoundation.CGFloat) - } - @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle -} -extension UIKit.UIImage { - @objc public static var apptentiveMessageAttachmentButton: UIKit.UIImage? - @objc public static var apptentiveMessageSendButton: UIKit.UIImage? - @objc public static var apptentiveSentMessageBubble: UIKit.UIImage? - @objc public static var apptentiveReceivedMessageBubble: UIKit.UIImage? - @objc public static var apptentiveAttachmentPlaceholder: UIKit.UIImage? - @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIImage? - @objc public static var apptentiveHeaderLogo: UIKit.UIImage? - @objc public static var apptentiveRadioButton: UIKit.UIImage? - @objc public static var apptentiveCheckbox: UIKit.UIImage? - @objc public static var apptentiveRadioButtonSelected: UIKit.UIImage? - @objc public static var apptentiveCheckboxSelected: UIKit.UIImage? -} -extension UIKit.UIColor { - @objc public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor - @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor + public static func == (a: UIKit.UIButton.ApptentiveButtonStyle, b: UIKit.UIButton.ApptentiveButtonStyle) -> Swift.Bool + } + @_Concurrency.MainActor public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle +} +@_Concurrency.MainActor extension UIKit.UIImage { + @objc @_Concurrency.MainActor public static var apptentiveMessageAttachmentButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveMessageSendButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveSentMessageBubble: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveReceivedMessageBubble: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveAttachmentPlaceholder: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveAttachmentRemoveButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveHeaderLogo: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveRadioButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveCheckbox: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveRadioButtonSelected: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveCheckboxSelected: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveDialogHeader: UIKit.UIImage? +} +@_Concurrency.MainActor extension UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageTextInputPlaceholder'.") - @objc public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor { @objc get @objc set } - @objc public static var apptentiveMessageCenterTextInput: UIKit.UIColor - @objc public static var apptentivetextInputTint: UIKit.UIColor - @objc public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInput: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentivetextInputTint: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageCenterTextInputBorder'.") - @objc public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor { @objc get @objc set } - @objc public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor - @objc public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor - @objc public static var apptentiveMessageCenterStatus: UIKit.UIColor - @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor - @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor - @objc public static var apptentiveMessageBubbleInbound: UIKit.UIColor - @objc public static var apptentiveMessageBubbleOutbound: UIKit.UIColor - @objc public static var apptentiveMessageLabelInbound: UIKit.UIColor - @objc public static var apptentiveMessageLabelOutbound: UIKit.UIColor - @objc public static var apptentiveQuestionLabel: UIKit.UIColor - @objc public static var apptentiveInstructionsLabel: UIKit.UIColor - @objc public static var apptentiveChoiceLabel: UIKit.UIColor - @objc public static var apptentiveError: UIKit.UIColor - @objc public static var apptentiveTint: UIKit.UIColor - @objc public static var apptentiveSecondaryLabel: UIKit.UIColor - @objc public static var apptentiveRangeControlBorder: UIKit.UIColor - @objc public static var apptentiveSurveyIntroduction: UIKit.UIColor - @objc public static var apptentiveTextInputBorder: UIKit.UIColor - @objc public static var apptentiveTextInputBackground: UIKit.UIColor - @objc public static var apptentiveTextInput: UIKit.UIColor - @objc public static var apptentiveTextInputPlaceholder: UIKit.UIColor - @objc public static var apptentiveMinMaxLabel: UIKit.UIColor - @objc public static var apptentiveGroupedBackground: UIKit.UIColor - @objc public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor - @objc public static var apptentiveSeparator: UIKit.UIColor - @objc public static var apptentiveImageSelected: UIKit.UIColor - @objc public static var apptentiveImageNotSelected: UIKit.UIColor - @objc public static var apptentiveSubmitButton: UIKit.UIColor - @objc public static var apptentiveBranchedSurveyFooter: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterStatus: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageBubbleInbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageBubbleOutbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageLabelInbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageLabelOutbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveQuestionLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveInstructionsLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveChoiceLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveError: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTint: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSecondaryLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveRangeControlBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSurveyIntroduction: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSurveyTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveOtherTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveOtherTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInput: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputPlaceholder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMinMaxLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveGroupedBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSeparator: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveImageSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveImageNotSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveBranchedSurveyFooter: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.") - public static var apptentiveSubmitLabel: UIKit.UIColor - @objc public static var apptentiveSubmitStatusLabel: UIKit.UIColor - @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIColor - @objc public static var apptentiveSubmitButtonTitle: UIKit.UIColor - @objc public static var apptentiveSubmitButtonBorder: UIKit.UIColor - @objc public static var apptentiveQuestionSeparator: UIKit.UIColor - public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor - public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor - @objc public static var apptentiveMessageCenterBackground: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveSubmitLabel: UIKit.UIColor { + get + set + } + @objc @_Concurrency.MainActor public static var apptentiveSubmitStatusLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTermsOfServiceLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveQuestionSeparator: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterBackground: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveAttachmentRemoveButton'.") - @objc public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor - @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIColor - @objc public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor - @objc public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor - @objc public static var apptentiveTextInputBorderSelected: UIKit.UIColor - @objc public static var apptentiveDisclaimerLabel: UIKit.UIColor -} -extension UIKit.UIFont { - @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont - @objc public static var apptentiveMessageCenterTextInput: UIKit.UIFont - @objc public static var apptentiveTextInputPlaceholder: UIKit.UIFont - @objc public static var apptentiveMessageCenterStatus: UIKit.UIFont - @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont - @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont - @objc public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont - @objc public static var apptentiveQuestionLabel: UIKit.UIFont - @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIFont - @objc public static var apptentiveChoiceLabel: UIKit.UIFont - @objc public static var apptentiveMessageLabel: UIKit.UIFont - @objc public static var apptentiveMinMaxLabel: UIKit.UIFont - @objc public static var apptentiveSenderLabel: UIKit.UIFont - @objc public static var apptentiveMessageDateLabel: UIKit.UIFont - @objc public static var apptentiveInstructionsLabel: UIKit.UIFont - @objc public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor { + @objc get + @objc set + } + @objc @_Concurrency.MainActor public static var apptentiveAttachmentRemoveButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBorderSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDisclaimerLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogBackground: UIKit.UIColor? + @objc @_Concurrency.MainActor public static var apptentiveDialogTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogMessage: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogButtonBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogButtonLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveButtonBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogSeparator: UIKit.UIColor +} +@_Concurrency.MainActor extension UIKit.UIFont { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInput: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTextInputPlaceholder: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterStatus: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveQuestionLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTermsOfServiceLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveChoiceLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMinMaxLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSenderLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageDateLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveInstructionsLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.") - public static var apptentiveSubmitLabel: UIKit.UIFont - @objc public static var apptentiveSubmitStatusLabel: UIKit.UIFont - @objc public static var apptentiveDisclaimerLabel: UIKit.UIFont - @objc public static var apptentiveSubmitButtonTitle: UIKit.UIFont - @objc public static var apptentiveTextInput: UIKit.UIFont + @_Concurrency.MainActor public static var apptentiveSubmitLabel: UIKit.UIFont { + get + set + } + @objc @_Concurrency.MainActor public static var apptentiveSubmitStatusLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDisclaimerLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTextInput: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogText: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogMessage: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogButton: UIKit.UIFont } -extension UIKit.UIToolbar { +@_Concurrency.MainActor extension UIKit.UIToolbar { @objc public enum ToolbarMode : Swift.Int { case alwaysShown case hiddenWhenEmpty + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif + @available(iOS 2.0, *) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode + @objc @_Concurrency.MainActor public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode +} +@_Concurrency.MainActor extension CoreFoundation.CGFloat { + @_Concurrency.MainActor public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat + @_Concurrency.MainActor public static var apptentiveDialogCornerRadius: CoreFoundation.CGFloat + @_Concurrency.MainActor public static var apptentiveDialogButtonSpacing: CoreFoundation.CGFloat +} +@_Concurrency.MainActor extension CoreFoundation.CGSize { + @_Concurrency.MainActor public static var apptentiveThumbnail: CoreFoundation.CGSize } -extension CoreFoundation.CGFloat { - public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat +@available(iOS 26.0, *) +@_Concurrency.MainActor extension UIKit.UICornerConfiguration { + @_Concurrency.MainActor public static var apptentiveDialogButton: UIKit.UICornerConfiguration } +extension ApptentiveKit.DialogViewModel : Swift.Sendable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.Hashable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.RawRepresentable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Hashable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.RawRepresentable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.Equatable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.Hashable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.RawRepresentable {} -extension ApptentiveKit.SystemFontNames : Swift.Equatable {} -extension ApptentiveKit.SystemFontNames : Swift.Hashable {} -extension ApptentiveKit.SystemFontNames : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel : Swift.Sendable {} +extension ApptentiveKit.MessageCenterViewModel : Swift.Sendable {} extension ApptentiveKit.MessageCenterViewModel.Message.SentStatus : Swift.Hashable {} +extension ApptentiveKit.Apptentive : Swift.Sendable {} extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Equatable {} extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Hashable {} -extension ApptentiveKit.LogLevel : Swift.Hashable {} -extension ApptentiveKit.LogLevel : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice : Swift.Sendable {} extension ApptentiveKit.Apptentive.UITheme : Swift.Equatable {} extension ApptentiveKit.Apptentive.UITheme : Swift.Hashable {} extension ApptentiveKit.Apptentive.UITheme : Swift.RawRepresentable {} +extension ApptentiveKit.Apptentive.Region : Swift.Equatable {} +extension ApptentiveKit.Apptentive.Region : Swift.Hashable {} +extension ApptentiveKit.Apptentive.Region : Swift.RawRepresentable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.Equatable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.Hashable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.RawRepresentable {} extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Equatable {} extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Hashable {} +extension ApptentiveKit.SurveyViewModel.Page : Swift.Sendable {} extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Equatable {} extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Hashable {} extension ApptentiveKit.MessageCenterViewModelError : Swift.Equatable {} extension ApptentiveKit.MessageCenterViewModelError : Swift.Hashable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.Equatable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.Hashable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel.Question : Swift.Sendable {} +extension ApptentiveKit.InteractionPresenter : Swift.Sendable {} extension ApptentiveKit.DialogViewModel.DialogType : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.DialogType : Swift.Hashable {} @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") @@ -1340,22 +1297,12 @@ extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Equatable extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Hashable {} @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.RawRepresentable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.Equatable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.Hashable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.RawRepresentable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.Equatable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.Hashable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.RawRepresentable {} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Equatable {} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Hashable {} extension UIKit.UIToolbar.ToolbarMode : Swift.Equatable {} extension UIKit.UIToolbar.ToolbarMode : Swift.Hashable {} extension UIKit.UIToolbar.ToolbarMode : Swift.RawRepresentable {} diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.abi.json b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.abi.json index 0ccaadb..115afc1 100644 --- a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.abi.json +++ b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -1,8 +1,8 @@ { "ABIRoot": { "kind": "Root", - "name": "TopLevel", - "printedName": "TopLevel", + "name": "ApptentiveKit", + "printedName": "ApptentiveKit", "children": [ { "kind": "Import", @@ -51,6 +51,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "UIKit", @@ -83,7 +90,10 @@ "name": "WebKit", "printedName": "WebKit", "declKind": "Import", - "moduleName": "ApptentiveKit" + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Preconcurrency" + ] }, { "kind": "Import", @@ -149,6 +159,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override", "AccessControl", @@ -209,6 +220,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override", "AccessControl", @@ -242,6 +254,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override", "AccessControl" @@ -353,6 +366,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override" ], @@ -364,6 +378,7 @@ "mangledName": "$s13ApptentiveKit20DialogViewControllerC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Preconcurrency", "Custom", "AccessControl", "RawDocComment", @@ -384,6 +399,20 @@ "usr": "s:13ApptentiveKit23DialogViewModelDelegateP", "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP" }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -440,6 +469,13 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, { "kind": "Conformance", "name": "UITraitChangeObservable", @@ -458,6 +494,7 @@ "mangledName": "$s13ApptentiveKit29EnjoymentDialogViewControllerC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Preconcurrency", "Custom", "AccessControl", "ObjC" @@ -479,6 +516,20 @@ "usr": "s:13ApptentiveKit23DialogViewModelDelegateP", "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP" }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -535,6 +586,13 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, { "kind": "Conformance", "name": "UITraitChangeObservable", @@ -553,6 +611,7 @@ "mangledName": "$s13ApptentiveKit23TextModalViewControllerC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Preconcurrency", "Custom", "AccessControl", "ObjC" @@ -574,6 +633,20 @@ "usr": "s:13ApptentiveKit23DialogViewModelDelegateP", "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP" }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -630,6 +703,13 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, { "kind": "Conformance", "name": "UITraitChangeObservable", @@ -679,6 +759,16 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -726,6 +816,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -763,6 +860,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -775,8 +879,8 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "Foundation", + "printedName": "Foundation", "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ @@ -785,8 +889,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "OSLog", + "printedName": "OSLog", "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ @@ -800,441 +904,6 @@ "declKind": "Import", "moduleName": "ApptentiveKit" }, - { - "kind": "TypeDecl", - "name": "HTMLTextAlignment", - "printedName": "HTMLTextAlignment", - "children": [ - { - "kind": "Var", - "name": "center", - "printedName": "center", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.HTMLTextAlignment.Type) -> ApptentiveKit.HTMLTextAlignment", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.HTMLTextAlignment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO6centeryA2CmF", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO6centeryA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "left", - "printedName": "left", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.HTMLTextAlignment.Type) -> ApptentiveKit.HTMLTextAlignment", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.HTMLTextAlignment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO4leftyA2CmF", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO4leftyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "right", - "printedName": "right", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.HTMLTextAlignment.Type) -> ApptentiveKit.HTMLTextAlignment", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.HTMLTextAlignment.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO5rightyA2CmF", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO5rightyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.HTMLTextAlignment?", - "children": [ - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO8rawValueACSgSS_tcfc", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO8rawValueACSgSS_tcfc", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit17HTMLTextAlignmentO8rawValueSSvp", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO8rawValueSSvp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO8rawValueSSvg", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO8rawValueSSvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO", - "mangledName": "$s13ApptentiveKit17HTMLTextAlignmentO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "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": "TypeDecl", - "name": "SystemFontNames", - "printedName": "SystemFontNames", - "children": [ - { - "kind": "Var", - "name": "html", - "printedName": "html", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.SystemFontNames.Type) -> ApptentiveKit.SystemFontNames", - "children": [ - { - "kind": "TypeNominal", - "name": "SystemFontNames", - "printedName": "ApptentiveKit.SystemFontNames", - "usr": "s:13ApptentiveKit15SystemFontNamesO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.SystemFontNames.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "SystemFontNames", - "printedName": "ApptentiveKit.SystemFontNames", - "usr": "s:13ApptentiveKit15SystemFontNamesO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit15SystemFontNamesO4htmlyA2CmF", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO4htmlyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "os", - "printedName": "os", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.SystemFontNames.Type) -> ApptentiveKit.SystemFontNames", - "children": [ - { - "kind": "TypeNominal", - "name": "SystemFontNames", - "printedName": "ApptentiveKit.SystemFontNames", - "usr": "s:13ApptentiveKit15SystemFontNamesO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.SystemFontNames.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "SystemFontNames", - "printedName": "ApptentiveKit.SystemFontNames", - "usr": "s:13ApptentiveKit15SystemFontNamesO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit15SystemFontNamesO2osyA2CmF", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO2osyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.SystemFontNames?", - "children": [ - { - "kind": "TypeNominal", - "name": "SystemFontNames", - "printedName": "ApptentiveKit.SystemFontNames", - "usr": "s:13ApptentiveKit15SystemFontNamesO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit15SystemFontNamesO8rawValueACSgSS_tcfc", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO8rawValueACSgSS_tcfc", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit15SystemFontNamesO8rawValueSSvp", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO8rawValueSSvp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SystemFontNamesO8rawValueSSvg", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO8rawValueSSvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit15SystemFontNamesO", - "mangledName": "$s13ApptentiveKit15SystemFontNamesO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl" - ], - "enumRawTypeName": "String", - "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": "Import", "name": "UIKit", @@ -1302,6 +971,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "QuickLook", @@ -1359,14 +1035,31 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", "printedName": "UIKit", "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ - "RawDocComment" + "Preconcurrency" ] }, { @@ -1389,6 +1082,23 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "Foundation", @@ -1426,34 +1136,120 @@ "declKind": "Import", "moduleName": "ApptentiveKit" }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "TypeDecl", + "name": "ApptentiveDelegate", + "printedName": "ApptentiveDelegate", + "children": [ + { + "kind": "Function", + "name": "authenticationDidFail", + "printedName": "authenticationDidFail(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate(im)authenticationDidFailWith:", + "mangledName": "$s13ApptentiveKit0A8DelegateP21authenticationDidFail4withys5Error_p_tF", + "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate", + "mangledName": "$s13ApptentiveKit0A8DelegateP", + "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + } + ] + }, { "kind": "TypeDecl", - "name": "ApptentiveLogger", - "printedName": "ApptentiveLogger", + "name": "Apptentive", + "printedName": "Apptentive", "children": [ { "kind": "Var", - "name": "shouldHideSensitiveLogs", - "printedName": "shouldHideSensitiveLogs", + "name": "shared", + "printedName": "shared", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Apptentive", + "printedName": "ApptentiveKit.Apptentive", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cpy)shared", + "mangledName": "$s13ApptentiveKit0A0C6sharedACvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", + "Custom", "AccessControl", + "ObjC", "RawDocComment" ], + "isLet": true, "hasStorage": true, "accessors": [ { @@ -1463,87 +1259,51 @@ "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Apptentive", + "printedName": "ApptentiveKit.Apptentive", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cm)shared", + "mangledName": "$s13ApptentiveKit0A0C6sharedACvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final", + "ObjC" ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvMZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "accessorKind": "_modify" + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "logLevel", - "printedName": "logLevel", + "name": "delegate", + "printedName": "delegate", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "WeakStorage", + "printedName": "(any ApptentiveKit.ApptentiveDelegate)?" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovp", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovp", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)delegate", + "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Final", + "Custom", "HasStorage", + "ReferenceOwnership", "AccessControl", + "ObjC", "RawDocComment" ], + "ownership": 1, "hasStorage": true, "accessors": [ { @@ -1553,16 +1313,28 @@ "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Optional", + "printedName": "(any ApptentiveKit.ApptentiveDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveDelegate", + "printedName": "any ApptentiveKit.ApptentiveDelegate", + "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovg", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovg", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)delegate", + "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvg", "moduleName": "ApptentiveKit", "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -1577,16 +1349,28 @@ }, { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Optional", + "printedName": "(any ApptentiveKit.ApptentiveDelegate)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveDelegate", + "printedName": "any ApptentiveKit.ApptentiveDelegate", + "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovs", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovs", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDelegate:", + "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvs", "moduleName": "ApptentiveKit", "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -1601,38 +1385,40 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvM", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvM", + "usr": "s:13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvM", + "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvM", "moduleName": "ApptentiveKit", "implicit": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "default", - "printedName": "default", + "name": "interactionPresenter", + "printedName": "interactionPresenter", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "InteractionPresenter", + "printedName": "ApptentiveKit.InteractionPresenter", + "usr": "s:13ApptentiveKit20InteractionPresenterC" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvpZ", + "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp", + "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", + "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" ], - "isFromExtension": true, "hasStorage": true, "accessors": [ { @@ -1642,18 +1428,19 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "InteractionPresenter", + "printedName": "ApptentiveKit.InteractionPresenter", + "usr": "s:13ApptentiveKit20InteractionPresenterC" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvgZ", + "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg", + "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -1668,18 +1455,19 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "InteractionPresenter", + "printedName": "ApptentiveKit.InteractionPresenter", + "usr": "s:13ApptentiveKit20InteractionPresenterC" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvsZ", + "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs", + "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -1694,40 +1482,42 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvMZ", + "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM", + "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "engagement", - "printedName": "engagement", + "name": "theme", + "printedName": "theme", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)theme", + "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ "HasInitialValue", + "Final", + "Custom", "HasStorage", "AccessControl", + "ObjC", "RawDocComment" ], - "isFromExtension": true, "hasStorage": true, "accessors": [ { @@ -1737,18 +1527,20 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)theme", + "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -1763,18 +1555,20 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setTheme:", + "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -1789,40 +1583,42 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvMZ", + "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvM", + "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "interaction", - "printedName": "interaction", + "name": "shouldUseSecureTokenStorage", + "printedName": "shouldUseSecureTokenStorage", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)shouldUseSecureTokenStorage", + "mangledName": "$s13ApptentiveKit0A0C27shouldUseSecureTokenStorageSbvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ "HasInitialValue", + "Final", + "Custom", "HasStorage", "AccessControl", + "ObjC", "RawDocComment" ], - "isFromExtension": true, "hasStorage": true, "accessors": [ { @@ -1832,18 +1628,20 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)shouldUseSecureTokenStorage", + "mangledName": "$s13ApptentiveKit0A0C27shouldUseSecureTokenStorageSbvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -1858,18 +1656,20 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setShouldUseSecureTokenStorage:", + "mangledName": "$s13ApptentiveKit0A0C27shouldUseSecureTokenStorageSbvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -1884,41 +1684,49 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvMZ", + "usr": "s:13ApptentiveKit0A0C27shouldUseSecureTokenStorageSbvM", + "mangledName": "$s13ApptentiveKit0A0C27shouldUseSecureTokenStorageSbvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "network", - "printedName": "network", + "name": "personName", + "printedName": "personName", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV7networkACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)personName", + "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", + "Custom", "AccessControl", + "Custom", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -1927,18 +1735,28 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7networkACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personName", + "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -1953,18 +1771,28 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7networkACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setPersonName:", + "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -1979,41 +1807,49 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7networkACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvMZ", + "usr": "s:13ApptentiveKit0A0C10personNameSSSgvM", + "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "payload", - "printedName": "payload", + "name": "personEmailAddress", + "printedName": "personEmailAddress", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)personEmailAddress", + "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", + "Custom", "AccessControl", + "Custom", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2022,18 +1858,28 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personEmailAddress", + "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -2048,18 +1894,28 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setPersonEmailAddress:", + "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -2074,41 +1930,49 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvMZ", + "usr": "s:13ApptentiveKit0A0C18personEmailAddressSSSgvM", + "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "targeting", - "printedName": "targeting", + "name": "mParticleID", + "printedName": "mParticleID", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)mParticleID", + "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", + "Custom", "AccessControl", + "Custom", + "ObjC", "RawDocComment" ], - "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2117,18 +1981,28 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)mParticleID", + "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -2143,18 +2017,28 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setMParticleID:", + "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -2169,41 +2053,40 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvMZ", + "usr": "s:13ApptentiveKit0A0C11mParticleIDSSSgvM", + "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "messages", - "printedName": "messages", + "name": "personCustomData", + "printedName": "personCustomData", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvpZ", + "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp", + "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", + "Custom", "AccessControl", + "Custom", "RawDocComment" ], - "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2212,18 +2095,19 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvgZ", + "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg", + "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -2238,18 +2122,19 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvsZ", + "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs", + "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -2264,41 +2149,40 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvMZ", + "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0VvM", + "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0VvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "attachments", - "printedName": "attachments", + "name": "deviceCustomData", + "printedName": "deviceCustomData", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvpZ", + "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp", + "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", + "Custom", "AccessControl", + "Custom", "RawDocComment" ], - "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -2307,18 +2191,19 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvgZ", + "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg", + "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "get" }, { @@ -2333,18 +2218,19 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvsZ", + "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs", + "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "set" }, { @@ -2359,40 +2245,43 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvMZ", + "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM", + "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "resources", - "printedName": "resources", + "name": "unreadMessageCount", + "printedName": "unreadMessageCount", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV9resourcesACvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9resourcesACvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)unreadMessageCount", + "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ + "Final", "HasInitialValue", + "Custom", "HasStorage", "AccessControl", + "Dynamic", + "ObjC", "RawDocComment" ], - "isFromExtension": true, "hasStorage": true, "accessors": [ { @@ -2402,18 +2291,21 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9resourcesACvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9resourcesACvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)unreadMessageCount", + "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivg", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final", + "Dynamic", + "ObjC" + ], "accessorKind": "get" }, { @@ -2428,64 +2320,57 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveLogger", - "printedName": "ApptentiveKit.ApptentiveLogger", - "usr": "s:13ApptentiveKit0A6LoggerV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9resourcesACvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9resourcesACvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setUnreadMessageCount:", + "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivs", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } + "declAttributes": [ + "Final", + "Dynamic", + "ObjC" ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV9resourcesACvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV9resourcesACvMZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "isFromExtension": true, - "accessorKind": "_modify" + "accessorKind": "set" } ] }, { "kind": "Var", - "name": "logLevel", - "printedName": "logLevel", + "name": "distributionName", + "printedName": "distributionName", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvpZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvpZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)distributionName", + "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvp", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ + "Final", + "Custom", "AccessControl", + "Custom", + "ObjC", "RawDocComment" ], - "isFromExtension": true, "accessors": [ { "kind": "Accessor", @@ -2494,17 +2379,28 @@ "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvgZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvgZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionName", + "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvg", "moduleName": "ApptentiveKit", - "static": true, - "isFromExtension": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "get" }, { @@ -2519,17 +2415,28 @@ }, { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvsZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvsZ", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDistributionName:", + "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvs", "moduleName": "ApptentiveKit", - "static": true, - "isFromExtension": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], "accessorKind": "set" }, { @@ -2544,381 +2451,330 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvMZ", - "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvMZ", + "usr": "s:13ApptentiveKit0A0C16distributionNameSSSgvM", + "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvM", "moduleName": "ApptentiveKit", - "static": true, "implicit": true, - "isFromExtension": true, + "declAttributes": [ + "Final" + ], "accessorKind": "_modify" } ] - } - ], - "declKind": "Struct", - "usr": "s:13ApptentiveKit0A6LoggerV", - "mangledName": "$s13ApptentiveKit0A6LoggerV", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "LogLevel", - "printedName": "LogLevel", - "children": [ + }, { "kind": "Var", - "name": "debug", - "printedName": "debug", + "name": "distributionVersion", + "printedName": "distributionVersion", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - } - ] + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO5debugyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO5debugyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "info", - "printedName": "info", - "children": [ + "declKind": "Var", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)distributionVersion", + "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "Custom", + "ObjC", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO4infoyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO4infoyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "notice", - "printedName": "notice", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionVersion", + "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO6noticeyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO6noticeyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "warning", - "printedName": "warning", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDistributionVersion:", + "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C19distributionVersionSSSgvM", + "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvM", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO7warningyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO7warningyA2CmF", - "moduleName": "ApptentiveKit" + ] }, { - "kind": "Var", - "name": "error", - "printedName": "error", + "kind": "TypeDecl", + "name": "UITheme", + "printedName": "UITheme", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "Var", + "name": "apptentive", + "printedName": "apptentive", "children": [ { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.UITheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + } + ] } ] } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO5erroryA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO5erroryA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "critical", - "printedName": "critical", - "children": [ + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "kind": "Var", + "name": "customerOnly", + "printedName": "customerOnly", "children": [ { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO8criticalyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO8criticalyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "fault", - "printedName": "fault", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.UITheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C7UIThemeO12customerOnlyyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO12customerOnlyyA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "customerBasedOnApptentive", + "printedName": "customerBasedOnApptentive", "children": [ { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.LogLevel.Type", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", "children": [ { "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.UITheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + } + ] } ] } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit8LogLevelO5faultyA2CmF", - "mangledName": "$s13ApptentiveKit8LogLevelO5faultyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Function", - "name": "<", - "printedName": "<(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C7UIThemeO015customerBasedOnA0yA2EmF", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO015customerBasedOnA0yA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 2 }, { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit8LogLevelO1loiySbAC_ACtFZ", - "mangledName": "$s13ApptentiveKit8LogLevelO1loiySbAC_ACtFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.LogLevel?", + "kind": "Var", + "name": "none", + "printedName": "none", "children": [ { - "kind": "TypeNominal", - "name": "LogLevel", - "printedName": "ApptentiveKit.LogLevel", - "usr": "s:13ApptentiveKit8LogLevelO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.UITheme.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C7UIThemeO4noneyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO4noneyA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 }, { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit8LogLevelO8rawValueACSgSi_tcfc", - "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueACSgSi_tcfc", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit8LogLevelO8rawValueSivp", - "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueSivp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ApptentiveKit.Apptentive.UITheme?", + "children": [ + { + "kind": "TypeNominal", + "name": "UITheme", + "printedName": "ApptentiveKit.Apptentive.UITheme", + "usr": "s:13ApptentiveKit0A0C7UIThemeO" + } + ], + "usr": "s:Sq" + }, { "kind": "TypeNominal", "name": "Int", @@ -2926,49 +2782,17 @@ "usr": "s:Si" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit8LogLevelO8rawValueSivg", - "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueSivg", + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueAESgSi_tcfc", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueAESgSi_tcfc", "moduleName": "ApptentiveKit", "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit8LogLevelO", - "mangledName": "$s13ApptentiveKit8LogLevelO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "enumRawTypeName": "Int", - "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": [ + "init_kind": "Designated" + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", @@ -2976,387 +2800,271 @@ "printedName": "Swift.Int", "usr": "s:Si" } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueSivp", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueSivp", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueSivg", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueSivg", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessorKind": "get" + } ] } ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - } - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "ApptentiveDelegate", - "printedName": "ApptentiveDelegate", - "children": [ - { - "kind": "Function", - "name": "authenticationDidFail", - "printedName": "authenticationDidFail(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate(im)authenticationDidFailWith:", - "mangledName": "$s13ApptentiveKit0A8DelegateP21authenticationDidFail4withys5Error_p_tF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Protocol", - "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate", - "mangledName": "$s13ApptentiveKit0A8DelegateP", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 : AnyObject>", - "sugared_genericSig": "", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Apptentive", - "printedName": "Apptentive", - "children": [ - { - "kind": "Var", - "name": "shared", - "printedName": "shared", - "children": [ - { - "kind": "TypeNominal", - "name": "Apptentive", - "printedName": "ApptentiveKit.Apptentive", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cpy)shared", - "mangledName": "$s13ApptentiveKit0A0C6sharedACvpZ", + "declKind": "Enum", + "usr": "s:13ApptentiveKit0A0C7UIThemeO", + "mangledName": "$s13ApptentiveKit0A0C7UIThemeO", "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", "AccessControl", "ObjC", "RawDocComment" ], - "isLet": true, - "hasStorage": true, - "accessors": [ + "enumRawTypeName": "Int", + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "Apptentive", - "printedName": "ApptentiveKit.Apptentive", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cm)shared", - "mangledName": "$s13ApptentiveKit0A0C6sharedACvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "get" + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, { - "kind": "Var", - "name": "delegate", - "printedName": "delegate", + "kind": "TypeDecl", + "name": "AppCredentials", + "printedName": "AppCredentials", "children": [ { - "kind": "TypeNominal", - "name": "WeakStorage", - "printedName": "(any ApptentiveKit.ApptentiveDelegate)?" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)delegate", - "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "ReferenceOwnership", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "ownership": 1, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "key", + "printedName": "key", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ApptentiveKit.ApptentiveDelegate)?", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveDelegate", - "printedName": "any ApptentiveKit.ApptentiveDelegate", - "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)delegate", - "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvg", + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3keySSvp", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvp", "moduleName": "ApptentiveKit", - "implicit": true, "declAttributes": [ - "ObjC" + "HasStorage", + "AccessControl", + "RawDocComment" ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any ApptentiveKit.ApptentiveDelegate)?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveDelegate", - "printedName": "any ApptentiveKit.ApptentiveDelegate", - "usr": "c:@M@ApptentiveKit@objc(pl)ApptentiveDelegate" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3keySSvg", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDelegate:", - "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Var", + "name": "signature", + "printedName": "signature", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvM", - "mangledName": "$s13ApptentiveKit0A0C8delegateAA0A8Delegate_pSgvM", + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp", "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "interactionPresenter", - "printedName": "interactionPresenter", - "children": [ - { - "kind": "TypeNominal", - "name": "InteractionPresenter", - "printedName": "ApptentiveKit.InteractionPresenter", - "usr": "s:13ApptentiveKit20InteractionPresenterC" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp", - "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declAttributes": [ + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "InteractionPresenter", - "printedName": "ApptentiveKit.InteractionPresenter", - "usr": "s:13ApptentiveKit20InteractionPresenterC" + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg", - "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Constructor", + "name": "init", + "printedName": "init(key:signature:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" }, { "kind": "TypeNominal", - "name": "InteractionPresenter", - "printedName": "ApptentiveKit.InteractionPresenter", - "usr": "s:13ApptentiveKit20InteractionPresenterC" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs", - "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs", + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc", "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init(from:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM", - "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "theme", - "printedName": "theme", - "children": [ - { - "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)theme", - "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" + }, { "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" + "name": "Decoder", + "printedName": "any Swift.Decoder", + "usr": "s:s7DecoderP" } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)theme", - "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvg", + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc", "moduleName": "ApptentiveKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "throwing": true, + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Function", + "name": "encode", + "printedName": "encode(to:)", "children": [ { "kind": "TypeNominal", @@ -3365,163 +3073,274 @@ }, { "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" + "name": "Encoder", + "printedName": "any Swift.Encoder", + "usr": "s:s7EncoderP" } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setTheme:", - "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvs", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF", "moduleName": "ApptentiveKit", "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" + }, + { + "kind": "TypeNominal", + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvM", - "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvM", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, - "accessorKind": "_modify" + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV", + "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, { - "kind": "Var", - "name": "personName", - "printedName": "personName", + "kind": "TypeDecl", + "name": "Region", + "printedName": "Region", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "us", + "printedName": "us", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.Region.Type) -> ApptentiveKit.Apptentive.Region", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.Region.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + } + ] + } + ] } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)personName", - "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "accessors": [ + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C6RegionO2usyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C6RegionO2usyA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "Var", + "name": "eu", + "printedName": "eu", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.Region.Type) -> ApptentiveKit.Apptentive.Region", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.Region.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personName", - "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvg", + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C6RegionO2euyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C6RegionO2euyA2EmF", "moduleName": "ApptentiveKit", "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "RawDocComment" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "au", + "printedName": "au", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.Region.Type) -> ApptentiveKit.Apptentive.Region", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.Region.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setPersonName:", - "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvs", + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C6RegionO2auyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C6RegionO2auyA2EmF", "moduleName": "ApptentiveKit", "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "RawDocComment" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ApptentiveKit.Apptentive.Region?", + "children": [ + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C10personNameSSSgvM", - "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvM", + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C6RegionO8rawValueAESgSS_tcfc", + "mangledName": "$s13ApptentiveKit0A0C6RegionO8rawValueAESgSS_tcfc", "moduleName": "ApptentiveKit", "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "personEmailAddress", - "printedName": "personEmailAddress", - "children": [ + "init_kind": "Designated" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", "children": [ { "kind": "TypeNominal", @@ -3530,28 +3349,16 @@ "usr": "s:SS" } ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)personEmailAddress", - "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C6RegionO8rawValueSSvp", + "mangledName": "$s13ApptentiveKit0A0C6RegionO8rawValueSSvp", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", @@ -3560,32 +3367,63 @@ "usr": "s:SS" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C6RegionO8rawValueSSvg", + "mangledName": "$s13ApptentiveKit0A0C6RegionO8rawValueSSvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personEmailAddress", - "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + ] + } + ], + "declKind": "Enum", + "usr": "s:13ApptentiveKit0A0C6RegionO", + "mangledName": "$s13ApptentiveKit0A0C6RegionO", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", @@ -3593,837 +3431,640 @@ "printedName": "Swift.String", "usr": "s:SS" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setPersonEmailAddress:", - "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:SY", + "mangledName": "$sSY" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C18personEmailAddressSSSgvM", - "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, { - "kind": "Var", - "name": "mParticleID", - "printedName": "mParticleID", + "kind": "TypeDecl", + "name": "Environment", + "printedName": "Environment", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)mParticleID", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String, ApptentiveKit.Apptentive.Region) -> Swift.String", "children": [ { "kind": "TypeNominal", "name": "String", "printedName": "Swift.String", "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.String, ApptentiveKit.Apptentive.Region)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "usr": "s:13ApptentiveKit0A0C6RegionO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)mParticleID", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvg", + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C11EnvironmentVyAES2S_AC6RegionOtYbccfc", + "mangledName": "$s13ApptentiveKit0A0C11EnvironmentVyAES2S_AC6RegionOtYbccfc", "moduleName": "ApptentiveKit", "declAttributes": [ - "ObjC" + "AccessControl" ], - "accessorKind": "get" + "init_kind": "Designated" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "Var", + "name": "production", + "printedName": "production", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV10productionAEvpZ", + "mangledName": "$s13ApptentiveKit0A0C11EnvironmentV10productionAEvpZ", + "moduleName": "ApptentiveKit", + "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", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV10productionAEvgZ", + "mangledName": "$s13ApptentiveKit0A0C11EnvironmentV10productionAEvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "accessorKind": "get" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setMParticleID:", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "Function", + "name": "custom", + "printedName": "custom(_:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C11mParticleIDSSSgvM", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvM", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV6customyAE10Foundation3URLVFZ", + "mangledName": "$s13ApptentiveKit0A0C11EnvironmentV6customyAE10Foundation3URLVFZ", "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "personCustomData", - "printedName": "personCustomData", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" } ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp", - "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp", + "declKind": "Struct", + "usr": "s:13ApptentiveKit0A0C11EnvironmentV", + "mangledName": "$s13ApptentiveKit0A0C11EnvironmentV", "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", "RawDocComment" ], - "accessors": [ + "conformances": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg", - "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg", - "moduleName": "ApptentiveKit", - "accessorKind": "get" + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs", - "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs", - "moduleName": "ApptentiveKit", - "accessorKind": "set" + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0VvM", - "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0VvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, { - "kind": "Var", - "name": "deviceCustomData", - "printedName": "deviceCustomData", + "kind": "Function", + "name": "register", + "printedName": "register(with:region:environment:completion:)", "children": [ { "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp", - "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg", - "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg", - "moduleName": "ApptentiveKit", - "accessorKind": "get" + "kind": "TypeNominal", + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs", - "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs", - "moduleName": "ApptentiveKit", - "accessorKind": "set" + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "hasDefaultArg": true, + "usr": "s:13ApptentiveKit0A0C6RegionO" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "hasDefaultArg": true, + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Result<(), any Swift.Error>) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result<(), any Swift.Error>", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s6ResultO" + } + ] } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM", - "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C8register4with6region11environment10completionyAC14AppCredentialsV_AC6RegionOAC11EnvironmentVys6ResultOyyts5Error_pGYbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C8register4with6region11environment10completionyAC14AppCredentialsV_AC6RegionOAC11EnvironmentVys6ResultOyyts5Error_pGYbcSgtF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "unreadMessageCount", - "printedName": "unreadMessageCount", + "kind": "Function", + "name": "register", + "printedName": "register(with:region:environment:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppCredentials", + "printedName": "ApptentiveKit.Apptentive.AppCredentials", + "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" + }, + { + "kind": "TypeNominal", + "name": "Region", + "printedName": "ApptentiveKit.Apptentive.Region", + "hasDefaultArg": true, + "usr": "s:13ApptentiveKit0A0C6RegionO" + }, + { + "kind": "TypeNominal", + "name": "Environment", + "printedName": "ApptentiveKit.Apptentive.Environment", + "hasDefaultArg": true, + "usr": "s:13ApptentiveKit0A0C11EnvironmentV" } ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)unreadMessageCount", - "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivp", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C8register4with6region11environmentyAC14AppCredentialsV_AC6RegionOAC11EnvironmentVtYaKF", + "mangledName": "$s13ApptentiveKit0A0C8register4with6region11environmentyAC14AppCredentialsV_AC6RegionOAC11EnvironmentVtYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ - "HasInitialValue", - "HasStorage", + "Final", "AccessControl", - "Dynamic", - "ObjC", + "Nonisolated", "RawDocComment" ], - "hasStorage": true, - "accessors": [ + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "engage", + "printedName": "engage(event:from:completion:)", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "ApptentiveKit.Event", + "usr": "s:13ApptentiveKit5EventV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)unreadMessageCount", - "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" + "hasDefaultArg": true, + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Result) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Result", + "printedName": "Swift.Result", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:s6ResultO" + } + ] } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setUnreadMessageCount:", - "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "set" + "hasDefaultArg": true, + "usr": "s:Sq" } - ] + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGYbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGYbcSgtF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "distributionName", - "printedName": "distributionName", + "kind": "Function", + "name": "engage", + "printedName": "engage(event:from:)", "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Event", + "printedName": "ApptentiveKit.Event", + "usr": "s:13ApptentiveKit5EventV" + }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "UIKit.UIViewController?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], + "hasDefaultArg": true, "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)distributionName", - "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvp", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C6engage5event4fromSbAA5EventV_So16UIViewControllerCSgtYaKF", + "mangledName": "$s13ApptentiveKit0A0C6engage5event4fromSbAA5EventV_So16UIViewControllerCSgtYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", - "ObjC", + "Nonisolated", "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": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionName", - "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "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": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDistributionName:", - "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C16distributionNameSSSgvM", - "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] + "throwing": true, + "funcSelfKind": "NonMutating" }, { - "kind": "Var", - "name": "distributionVersion", - "printedName": "distributionVersion", + "kind": "Function", + "name": "dismissAllInteractions", + "printedName": "dismissAllInteractions(animated:)", "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)distributionVersion", - "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvp", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF", + "mangledName": "$s13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", - "ObjC", "RawDocComment" ], - "accessors": [ + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenter", + "printedName": "presentMessageCenter(from:with:completion:)", + "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": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionVersion", - "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", "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": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)setDistributionVersion:", - "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" + "usr": "s:Sq" }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ApptentiveKit.CustomData?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C19distributionVersionSSSgvM", - "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UITheme", - "printedName": "UITheme", - "children": [ + "hasDefaultArg": true, + "usr": "s:Sq" + }, { - "kind": "Var", - "name": "apptentive", - "printedName": "apptentive", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Result) -> ())?", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", + "printedName": "(Swift.Result) -> ()", "children": [ { "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Apptentive.UITheme.Type", + "name": "Result", + "printedName": "Swift.Result", "children": [ { "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 0 - }, - { - "kind": "Var", - "name": "none", - "printedName": "none", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme", - "children": [ - { - "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Apptentive.UITheme.Type", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" } - ] + ], + "usr": "s:s6ResultO" } ] } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A0C7UIThemeO4noneyA2EmF", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO4noneyA2EmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 1 + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGYbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGYbcSgtF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenter", + "printedName": "presentMessageCenter(from:with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.Apptentive.UITheme?", - "children": [ - { - "kind": "TypeNominal", - "name": "UITheme", - "printedName": "ApptentiveKit.Apptentive.UITheme", - "usr": "s:13ApptentiveKit0A0C7UIThemeO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueAESgSi_tcfc", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueAESgSi_tcfc", - "moduleName": "ApptentiveKit", - "implicit": true, - "init_kind": "Designated" + "usr": "s:Sq" }, { - "kind": "Var", - "name": "rawValue", - "printedName": "rawValue", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ApptentiveKit.CustomData?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "CustomData", + "printedName": "ApptentiveKit.CustomData", + "usr": "s:13ApptentiveKit10CustomDataV" } ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueSivp", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueSivp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A0C7UIThemeO8rawValueSivg", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO8rawValueSivg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit0A0C7UIThemeO", - "mangledName": "$s13ApptentiveKit0A0C7UIThemeO", + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from4withSbSo16UIViewControllerCSg_AA10CustomDataVSgtYaKF", + "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from4withSbSo16UIViewControllerCSg_AA10CustomDataVSgtYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", - "ObjC", + "Nonisolated", "RawDocComment" ], - "enumRawTypeName": "Int", - "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": "Function", - "name": "register", - "printedName": "register(with:completion:)", - "children": [ + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAttachment", + "printedName": "sendAttachment(_:)", + "children": [ { "kind": "TypeNominal", "name": "Void", @@ -4431,65 +4072,29 @@ }, { "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Result<(), any Swift.Error>) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result<(), any Swift.Error>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C8register4with10completionyAC14AppCredentialsV_ys6ResultOyyts5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C8register4with10completionyAC14AppCredentialsV_ys6ResultOyyts5Error_pGcSgtF", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentText:", + "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySSF", "moduleName": "ApptentiveKit", + "objc_name": "sendAttachmentText:", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", + "ObjC", "RawDocComment" ], "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "register", - "printedName": "register(with:)", + "name": "sendAttachment", + "printedName": "sendAttachment(_:)", "children": [ { "kind": "TypeNominal", @@ -4498,271 +4103,66 @@ }, { "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C8register4withyAC14AppCredentialsV_tYaKF", - "mangledName": "$s13ApptentiveKit0A0C8register4withyAC14AppCredentialsV_tYaKF", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentImage:", + "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySo7UIImageCF", "moduleName": "ApptentiveKit", + "objc_name": "sendAttachmentImage:", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", + "ObjC", "RawDocComment" ], - "throwing": true, "funcSelfKind": "NonMutating" }, { - "kind": "TypeDecl", - "name": "AppCredentials", - "printedName": "AppCredentials", + "kind": "Function", + "name": "sendAttachment", + "printedName": "sendAttachment(_:mediaType:)", "children": [ { - "kind": "Var", - "name": "key", - "printedName": "key", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3keySSvp", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvp", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit0A0C14AppCredentialsV3keySSvg", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "signature", - "printedName": "signature", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(key:signature:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(from:)", - "children": [ - { - "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" - }, - { - "kind": "TypeNominal", - "name": "Decoder", - "printedName": "any Swift.Decoder", - "usr": "s:s7DecoderP" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc", - "moduleName": "ApptentiveKit", - "implicit": true, - "throwing": true, - "init_kind": "Designated" + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { - "kind": "Function", - "name": "encode", - "printedName": "encode(to:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Encoder", - "printedName": "any Swift.Encoder", - "usr": "s:s7EncoderP" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF", - "moduleName": "ApptentiveKit", - "implicit": true, - "throwing": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" - }, - { - "kind": "TypeNominal", - "name": "AppCredentials", - "printedName": "ApptentiveKit.Apptentive.AppCredentials", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "funcSelfKind": "NonMutating" + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Struct", - "usr": "s:13ApptentiveKit0A0C14AppCredentialsV", - "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV", + "declKind": "Func", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentFile:withMimeType:", + "mangledName": "$s13ApptentiveKit0A0C14sendAttachment_9mediaTypey10Foundation4DataV_SStF", "moduleName": "ApptentiveKit", + "objc_name": "sendAttachmentFile:withMimeType:", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", + "ObjC", "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": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - } - ] + "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "engage", - "printedName": "engage(event:from:completion:)", + "name": "canShowInteraction", + "printedName": "canShowInteraction(event:completion:)", "children": [ { "kind": "TypeNominal", @@ -4775,21 +4175,6 @@ "printedName": "ApptentiveKit.Event", "usr": "s:13ApptentiveKit5EventV" }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - }, { "kind": "TypeNominal", "name": "Optional", @@ -4833,10 +4218,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGcSgtF", + "usr": "s:13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGYbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGYbcSgtF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", + "Custom", "AccessControl", "RawDocComment" ], @@ -4844,8 +4231,8 @@ }, { "kind": "Function", - "name": "engage", - "printedName": "engage(event:from:)", + "name": "canShowInteraction", + "printedName": "canShowInteraction(event:)", "children": [ { "kind": "TypeNominal", @@ -4858,29 +4245,16 @@ "name": "Event", "printedName": "ApptentiveKit.Event", "usr": "s:13ApptentiveKit5EventV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C6engage5event4fromSbAA5EventV_So16UIViewControllerCSgtYaKF", - "mangledName": "$s13ApptentiveKit0A0C6engage5event4fromSbAA5EventV_So16UIViewControllerCSgtYaKF", + "usr": "s:13ApptentiveKit0A0C18canShowInteraction5eventSbAA5EventV_tYaKF", + "mangledName": "$s13ApptentiveKit0A0C18canShowInteraction5eventSbAA5EventV_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", "RawDocComment" ], "throwing": true, @@ -4888,55 +4262,14 @@ }, { "kind": "Function", - "name": "dismissAllInteractions", - "printedName": "dismissAllInteractions(animated:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF", - "mangledName": "$s13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentMessageCenter", - "printedName": "presentMessageCenter(from:completion:)", + "name": "canShowMessageCenter", + "printedName": "canShowMessageCenter(completion:)", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - }, { "kind": "TypeNominal", "name": "Optional", @@ -4980,10 +4313,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from10completionySo16UIViewControllerCSg_ys6ResultOySbs5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from10completionySo16UIViewControllerCSg_ys6ResultOySbs5Error_pGcSgtF", + "usr": "s:13ApptentiveKit0A0C20canShowMessageCenter10completionyys6ResultOySbs5Error_pGYbcSg_tF", + "mangledName": "$s13ApptentiveKit0A0C20canShowMessageCenter10completionyys6ResultOySbs5Error_pGYbcSg_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", + "Custom", "AccessControl", "RawDocComment" ], @@ -4991,8 +4326,33 @@ }, { "kind": "Function", - "name": "presentMessageCenter", - "printedName": "presentMessageCenter(from:with:completion:)", + "name": "canShowMessageCenter", + "printedName": "canShowMessageCenter()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C20canShowMessageCenterSbyYaKF", + "mangledName": "$s13ApptentiveKit0A0C20canShowMessageCenterSbyYaKF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "AccessControl", + "Nonisolated", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(with:completion:)", "children": [ { "kind": "TypeNominal", @@ -5001,437 +4361,20 @@ }, { "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" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.CustomData?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", "children": [ { "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Result) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGcSgtF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentMessageCenter", - "printedName": "presentMessageCenter(from:with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.CustomData?", - "children": [ - { - "kind": "TypeNominal", - "name": "CustomData", - "printedName": "ApptentiveKit.CustomData", - "usr": "s:13ApptentiveKit10CustomDataV" - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from4withSbSo16UIViewControllerCSg_AA10CustomDataVSgtYaKF", - "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from4withSbSo16UIViewControllerCSg_AA10CustomDataVSgtYaKF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAttachment", - "printedName": "sendAttachment(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentText:", - "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySSF", - "moduleName": "ApptentiveKit", - "objc_name": "sendAttachmentText:", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAttachment", - "printedName": "sendAttachment(_:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentImage:", - "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySo7UIImageCF", - "moduleName": "ApptentiveKit", - "objc_name": "sendAttachmentImage:", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sendAttachment", - "printedName": "sendAttachment(_:mediaType:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentFile:withMimeType:", - "mangledName": "$s13ApptentiveKit0A0C14sendAttachment_9mediaTypey10Foundation4DataV_SStF", - "moduleName": "ApptentiveKit", - "objc_name": "sendAttachmentFile:withMimeType:", - "declAttributes": [ - "AccessControl", - "ObjC", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "canShowInteraction", - "printedName": "canShowInteraction(event:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Event", - "printedName": "ApptentiveKit.Event", - "usr": "s:13ApptentiveKit5EventV" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Result) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGcSgtF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "canShowInteraction", - "printedName": "canShowInteraction(event:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Event", - "printedName": "ApptentiveKit.Event", - "usr": "s:13ApptentiveKit5EventV" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C18canShowInteraction5eventSbAA5EventV_tYaKF", - "mangledName": "$s13ApptentiveKit0A0C18canShowInteraction5eventSbAA5EventV_tYaKF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "canShowMessageCenter", - "printedName": "canShowMessageCenter(completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Result) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C20canShowMessageCenter10completionyys6ResultOySbs5Error_pGcSg_tF", - "mangledName": "$s13ApptentiveKit0A0C20canShowMessageCenter10completionyys6ResultOySbs5Error_pGcSg_tF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "canShowMessageCenter", - "printedName": "canShowMessageCenter()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C20canShowMessageCenterSbyYaKF", - "mangledName": "$s13ApptentiveKit0A0C20canShowMessageCenterSbyYaKF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "logIn", - "printedName": "logIn(with:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", "name": "Result", @@ -5455,10 +4398,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C5logIn4with10completionySS_ys6ResultOyyts5Error_pGctF", - "mangledName": "$s13ApptentiveKit0A0C5logIn4with10completionySS_ys6ResultOyyts5Error_pGctF", + "usr": "s:13ApptentiveKit0A0C5logIn4with10completionySS_ys6ResultOyyts5Error_pGYbctF", + "mangledName": "$s13ApptentiveKit0A0C5logIn4with10completionySS_ys6ResultOyyts5Error_pGYbctF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], @@ -5486,7 +4431,9 @@ "mangledName": "$s13ApptentiveKit0A0C5logIn4withySS_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", "RawDocComment" ], "throwing": true, @@ -5543,10 +4490,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C6logOut10completionyys6ResultOyyts5Error_pGcSg_tF", - "mangledName": "$s13ApptentiveKit0A0C6logOut10completionyys6ResultOyyts5Error_pGcSg_tF", + "usr": "s:13ApptentiveKit0A0C6logOut10completionyys6ResultOyyts5Error_pGYbcSg_tF", + "mangledName": "$s13ApptentiveKit0A0C6logOut10completionyys6ResultOyyts5Error_pGYbcSg_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], @@ -5568,7 +4517,9 @@ "mangledName": "$s13ApptentiveKit0A0C6logOutyyYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", "RawDocComment" ], "throwing": true, @@ -5632,10 +4583,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C11updateToken_10completionySS_ys6ResultOyyts5Error_pGcSgtF", - "mangledName": "$s13ApptentiveKit0A0C11updateToken_10completionySS_ys6ResultOyyts5Error_pGcSgtF", + "usr": "s:13ApptentiveKit0A0C11updateToken_10completionySS_ys6ResultOyyts5Error_pGYbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C11updateToken_10completionySS_ys6ResultOyyts5Error_pGYbcSgtF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", + "Custom", "AccessControl", "RawDocComment" ], @@ -5663,40 +4616,131 @@ "mangledName": "$s13ApptentiveKit0A0C11updateTokenyySSYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", "AccessControl", + "Nonisolated", "RawDocComment" ], "throwing": true, "funcSelfKind": "NonMutating" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(apiBaseURL:)", + "kind": "TypeDecl", + "name": "BackendSync", + "printedName": "BackendSync", "children": [ { - "kind": "TypeNominal", - "name": "Apptentive", - "printedName": "ApptentiveKit.Apptentive", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "kind": "Var", + "name": "wrappedValue", + "printedName": "wrappedValue", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvp", + "mangledName": "$s13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvg", + "mangledName": "$s13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvg", + "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvs", + "mangledName": "$s13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvs", + "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvM", + "mangledName": "$s13ApptentiveKit0A0C11BackendSyncV12wrappedValuexvM", + "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "implicit": true, + "accessorKind": "_modify" + } + ] } ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A0C10apiBaseURLAC10Foundation0E0V_tcfc", - "mangledName": "$s13ApptentiveKit0A0C10apiBaseURLAC10Foundation0E0V_tcfc", + "declKind": "Struct", + "usr": "s:13ApptentiveKit0A0C11BackendSyncV", + "mangledName": "$s13ApptentiveKit0A0C11BackendSyncV", "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", "declAttributes": [ - "Convenience", "AccessControl", + "PropertyWrapper", "RawDocComment" ], - "init_kind": "Convenience" + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } + ] }, { "kind": "Constructor", @@ -5720,6 +4764,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Custom", "Override" ], "init_kind": "Designated" @@ -5746,7 +4791,8 @@ "mangledName": "$s13ApptentiveKit0A0C32setRemoteNotificationDeviceTokenyy10Foundation4DataVF", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -5756,46 +4802,14 @@ }, { "kind": "Function", - "name": "setRemoteNotifcationDeviceToken", - "printedName": "setRemoteNotifcationDeviceToken(_:)", + "name": "didReceiveRemoteNotification", + "printedName": "didReceiveRemoteNotification(_:fetchCompletionHandler:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setRemoteNotifcationDeviceToken:", - "mangledName": "$s13ApptentiveKit0A0C31setRemoteNotifcationDeviceTokenyy10Foundation4DataVF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "didReceiveRemoteNotification", - "printedName": "didReceiveRemoteNotification(_:fetchCompletionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", @@ -5837,10 +4851,11 @@ ], "declKind": "Func", "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)didReceiveRemoteNotification:fetchCompletionHandler:", - "mangledName": "$s13ApptentiveKit0A0C28didReceiveRemoteNotification_22fetchCompletionHandlerSbSDys11AnyHashableVypG_ySo23UIBackgroundFetchResultVctF", + "mangledName": "$s13ApptentiveKit0A0C28didReceiveRemoteNotification_22fetchCompletionHandlerSbSDys11AnyHashableVypG_ySo23UIBackgroundFetchResultVYbctF", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -5888,7 +4903,8 @@ "mangledName": "$s13ApptentiveKit0A0C33didReceveUserNotificationResponse_21withCompletionHandlerSbSo014UNNotificationG0C_yyctF", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -5937,7 +4953,8 @@ "mangledName": "$s13ApptentiveKit0A0C11willPresent_21withCompletionHandlerSbSo14UNNotificationC_ySo0H19PresentationOptionsVctF", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -5988,12 +5005,13 @@ ], "declKind": "Func", "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)userNotificationCenter:willPresentNotification:withCompletionHandler:", - "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_11willPresent21withCompletionHandlerySo06UNUserdE0C_So14UNNotificationCySo0L19PresentationOptionsVctF", + "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_11willPresent21withCompletionHandlerySo06UNUserdE0C_So14UNNotificationCySo0L19PresentationOptionsVYbctF", "moduleName": "ApptentiveKit", "objc_name": "userNotificationCenter:willPresentNotification:withCompletionHandler:", "declAttributes": [ - "Dynamic", + "Final", "ObjC", + "Custom", "AccessControl", "RawDocComment" ], @@ -6042,12 +5060,13 @@ ], "declKind": "Func", "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:", - "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_10didReceive21withCompletionHandlerySo06UNUserdE0C_So22UNNotificationResponseCyyctF", + "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_10didReceive21withCompletionHandlerySo06UNUserdE0C_So22UNNotificationResponseCyyYbctF", "moduleName": "ApptentiveKit", "objc_name": "userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:", "declAttributes": [ - "Dynamic", + "Final", "ObjC", + "Custom", "AccessControl", "RawDocComment" ], @@ -6079,6 +5098,8 @@ "mangledName": "$s13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Final", + "Custom", "AccessControl", "RawDocComment" ], @@ -6108,82 +5129,417 @@ "usr": "s:13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvg", "mangledName": "$s13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvg", "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final" + ], "isFromExtension": true, "accessorKind": "get" } ] }, { - "kind": "Function", - "name": "loadEngagementManifest", - "printedName": "loadEngagementManifest(at:completion:)", + "kind": "TypeDecl", + "name": "ConversationState", + "printedName": "ConversationState", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO4noneyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO4noneyA2EmF", + "moduleName": "ApptentiveKit" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", + "kind": "Var", + "name": "placeholder", + "printedName": "placeholder", "children": [ { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] } ], - "usr": "s:Sq" + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO11placeholderyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO11placeholderyA2EmF", + "moduleName": "ApptentiveKit" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", + "kind": "Var", + "name": "anonymousPending", + "printedName": "anonymousPending", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO16anonymousPendingyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO16anonymousPendingyA2EmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "legacyPending", + "printedName": "legacyPending", + "children": [ { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result<(), any Swift.Error>", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" }, { "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO13legacyPendingyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO13legacyPendingyA2EmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "anonymous", + "printedName": "anonymous", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO9anonymousyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO9anonymousyA2EmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "loggedIn", + "printedName": "loggedIn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO8loggedInyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO8loggedInyA2EmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "loggedOut", + "printedName": "loggedOut", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.Apptentive.ConversationState.Type) -> ApptentiveKit.Apptentive.ConversationState", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.Apptentive.ConversationState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO9loggedOutyA2EmF", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO9loggedOutyA2EmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "ApptentiveKit.Apptentive.ConversationState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" } ], - "usr": "s:s6ResultO" + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO8rawValueAESgSS_tcfc", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO8rawValueAESgSS_tcfc", + "moduleName": "ApptentiveKit", + "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:13ApptentiveKit0A0C17ConversationStateO8rawValueSSvp", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO8rawValueSSvp", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO8rawValueSSvg", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO8rawValueSSvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "accessorKind": "get" } ] } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C22loadEngagementManifest2at10completiony10Foundation3URLVSg_ys6ResultOyyts5Error_pGctF", - "mangledName": "$s13ApptentiveKit0A0C22loadEngagementManifest2at10completiony10Foundation3URLVSg_ys6ResultOyyts5Error_pGctF", + "declKind": "Enum", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO", + "mangledName": "$s13ApptentiveKit0A0C17ConversationStateO", "moduleName": "ApptentiveKit", "declAttributes": [ - "AccessControl", - "RawDocComment" + "AccessControl" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "enumRawTypeName": "String", + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "Function", - "name": "getInteractionList", - "printedName": "getInteractionList(_:)", + "name": "loadEngagementManifest", + "printedName": "loadEngagementManifest(at:)", "children": [ { "kind": "TypeNominal", @@ -6191,37 +5547,61 @@ "printedName": "()" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "([ApptentiveKit.Apptentive.InteractionListItem]) -> ()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit0A0C22loadEngagementManifest2aty10Foundation3URLVSg_tYaKF", + "mangledName": "$s13ApptentiveKit0A0C22loadEngagementManifest2aty10Foundation3URLVSg_tYaKF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getInteractionList", + "printedName": "getInteractionList()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[ApptentiveKit.Apptentive.InteractionListItem]", + "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[ApptentiveKit.Apptentive.InteractionListItem]", - "children": [ - { - "kind": "TypeNominal", - "name": "InteractionListItem", - "printedName": "ApptentiveKit.Apptentive.InteractionListItem", - "usr": "s:13ApptentiveKit0A0C19InteractionListItemV" - } - ], - "usr": "s:Sa" + "name": "InteractionListItem", + "printedName": "ApptentiveKit.Apptentive.InteractionListItem", + "usr": "s:13ApptentiveKit0A0C19InteractionListItemV" } - ] + ], + "usr": "s:Sa" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C18getInteractionListyyySayAC0dE4ItemVGcF", - "mangledName": "$s13ApptentiveKit0A0C18getInteractionListyyySayAC0dE4ItemVGcF", + "usr": "s:13ApptentiveKit0A0C18getInteractionListSayAC0dE4ItemVGyYaF", + "mangledName": "$s13ApptentiveKit0A0C18getInteractionListSayAC0dE4ItemVGyYaF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], @@ -6231,7 +5611,7 @@ { "kind": "Function", "name": "presentInteraction", - "printedName": "presentInteraction(with:completion:)", + "printedName": "presentInteraction(with:)", "children": [ { "kind": "TypeNominal", @@ -6243,54 +5623,26 @@ "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result<(), any Swift.Error>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C18presentInteraction4with10completionySS_ys6ResultOyyts5Error_pGctF", - "mangledName": "$s13ApptentiveKit0A0C18presentInteraction4with10completionySS_ys6ResultOyyts5Error_pGctF", + "usr": "s:13ApptentiveKit0A0C18presentInteraction4withySS_tYaKF", + "mangledName": "$s13ApptentiveKit0A0C18presentInteraction4withySS_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", "name": "presentInteraction", - "printedName": "presentInteraction(at:completion:)", + "printedName": "presentInteraction(at:)", "children": [ { "kind": "TypeNominal", @@ -6302,48 +5654,20 @@ "name": "URL", "printedName": "Foundation.URL", "usr": "s:10Foundation3URLV" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result<(), any Swift.Error>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C18presentInteraction2at10completiony10Foundation3URLV_ys6ResultOyyts5Error_pGctF", - "mangledName": "$s13ApptentiveKit0A0C18presentInteraction2at10completiony10Foundation3URLV_ys6ResultOyyts5Error_pGctF", + "usr": "s:13ApptentiveKit0A0C18presentInteraction2aty10Foundation3URLV_tYaKF", + "mangledName": "$s13ApptentiveKit0A0C18presentInteraction2aty10Foundation3URLV_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], "isFromExtension": true, + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -6495,7 +5819,23 @@ "AccessControl", "RawDocComment" ], - "isFromExtension": true + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } + ] }, { "kind": "Function", @@ -6539,6 +5879,8 @@ "mangledName": "$s13ApptentiveKit0A0C12getEventListyyySaySSGcF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], @@ -6548,237 +5890,67 @@ { "kind": "Function", "name": "getConnectionInfo", - "printedName": "getConnectionInfo(_:)", + "printedName": "getConnectionInfo()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String?, Swift.String?, Swift.String?, Swift.String?, Swift.String?) -> ()", + "name": "Tuple", + "printedName": "(ApptentiveKit.Apptentive.ConversationState, Swift.String?, Swift.String?)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ConversationState", + "printedName": "ApptentiveKit.Apptentive.ConversationState", + "usr": "s:13ApptentiveKit0A0C17ConversationStateO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String?, Swift.String?, Swift.String?, Swift.String?, Swift.String?)", + "name": "Optional", + "printedName": "Swift.String?", "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": "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" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "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": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "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" } - ] + ], + "usr": "s:Sq" } ] } ], "declKind": "Func", - "usr": "s:13ApptentiveKit0A0C17getConnectionInfoyyySSSg_A4EtcF", - "mangledName": "$s13ApptentiveKit0A0C17getConnectionInfoyyySSSg_A4EtcF", + "usr": "s:13ApptentiveKit0A0C17getConnectionInfoAC17ConversationStateO_SSSgAGtyYaF", + "mangledName": "$s13ApptentiveKit0A0C17getConnectionInfoAC17ConversationStateO_SSSgAGtyYaF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", + "Final", "AccessControl", "RawDocComment" ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, - { - "kind": "Function", - "name": "register", - "printedName": "register(with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveConfiguration", - "printedName": "ApptentiveKit.ApptentiveConfiguration", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)registerWithConfiguration:", - "mangledName": "$s13ApptentiveKit0A0C8register4withyAA0A13ConfigurationC_tFZ", - "moduleName": "ApptentiveKit", - "static": true, - "deprecated": true, - "objc_name": "registerWithConfiguration:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "register", - "printedName": "register(with:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveConfiguration", - "printedName": "ApptentiveKit.ApptentiveConfiguration", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Bool) -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)registerWithConfiguration:completion:", - "mangledName": "$s13ApptentiveKit0A0C8register4with10completionyAA0A13ConfigurationC_ySbcSgtF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "registerWithConfiguration:completion:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "sharedConnection", - "printedName": "sharedConnection()", - "children": [ - { - "kind": "TypeNominal", - "name": "Apptentive", - "printedName": "ApptentiveKit.Apptentive", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)sharedConnection", - "mangledName": "$s13ApptentiveKit0A0C16sharedConnectionACyFZ", - "moduleName": "ApptentiveKit", - "static": true, - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, { "kind": "Var", - "name": "appID", - "printedName": "appID", + "name": "fontName", + "printedName": "fontName", "children": [ { "kind": "TypeNominal", @@ -6796,17 +5968,21 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)appID", - "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvp", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cpy)fontName", + "mangledName": "$s13ApptentiveKit0A0C8fontNameSSSgvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ - "Dynamic", + "HasInitialValue", + "Final", + "Custom", + "HasStorage", "AccessControl", "ObjC", - "Available" + "RawDocComment" ], "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -6829,12 +6005,14 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)appID", - "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvg", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)fontName", + "mangledName": "$s13ApptentiveKit0A0C8fontNameSSSgvgZ", "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "get" @@ -6865,297 +6043,102 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAppID:", - "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvs", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)setFontName:", + "mangledName": "$s13ApptentiveKit0A0C8fontNameSSSgvsZ", "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "set" - } - ] - }, - { - "kind": "Var", - "name": "showInfoButton", - "printedName": "showInfoButton", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)showInfoButton", - "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)showInfoButton", - "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" }, { "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setShowInfoButton:", - "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvs", + "usr": "s:13ApptentiveKit0A0C8fontNameSSSgvMZ", + "mangledName": "$s13ApptentiveKit0A0C8fontNameSSSgvMZ", "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "Final" ], "isFromExtension": true, - "accessorKind": "set" + "accessorKind": "_modify" } ] }, { - "kind": "Var", - "name": "surveyTermsAndConditions", - "printedName": "surveyTermsAndConditions", + "kind": "Function", + "name": "register", + "printedName": "register(with:completion:)", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", - "children": [ - { - "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)surveyTermsAndConditions", - "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ + "name": "Void", + "printedName": "()" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", - "children": [ - { - "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)surveyTermsAndConditions", - "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" + "kind": "TypeNominal", + "name": "ApptentiveConfiguration", + "printedName": "ApptentiveKit.ApptentiveConfiguration", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration" }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Bool) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", "children": [ { "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setSurveyTermsAndConditions:", - "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" - } - ] - }, - { - "kind": "Var", - "name": "apptentiveKey", - "printedName": "apptentiveKey", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)apptentiveKey", - "mangledName": "$s13ApptentiveKit0A0C13apptentiveKeySSvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)apptentiveKey", - "mangledName": "$s13ApptentiveKit0A0C13apptentiveKeySSvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] - }, - { - "kind": "Var", - "name": "apptentiveSignature", - "printedName": "apptentiveSignature", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "hasDefaultArg": true, + "usr": "s:Sq" } ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)apptentiveSignature", - "mangledName": "$s13ApptentiveKit0A0C19apptentiveSignatureSSvp", + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)registerWithConfiguration:completion:", + "mangledName": "$s13ApptentiveKit0A0C8register4with10completionyAA0A13ConfigurationC_ySbYbcSgtF", "moduleName": "ApptentiveKit", "deprecated": true, + "objc_name": "registerWithConfiguration:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" ], "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)apptentiveSignature", - "mangledName": "$s13ApptentiveKit0A0C19apptentiveSignatureSSvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - } - ] + "funcSelfKind": "NonMutating" }, { "kind": "Function", @@ -7194,7 +6177,8 @@ "moduleName": "ApptentiveKit", "objc_name": "engage:fromViewController:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC" ], @@ -7261,11 +6245,12 @@ ], "declKind": "Func", "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:fromViewController:completion:", - "mangledName": "$s13ApptentiveKit0A0C6engage_18fromViewController10completionySS_So06UIViewF0CSgySbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C6engage_18fromViewController10completionySS_So06UIViewF0CSgySbYbcSgtF", "moduleName": "ApptentiveKit", "objc_name": "engage:fromViewController:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC" ], @@ -7337,7 +6322,8 @@ "deprecated": true, "objc_name": "engage:withCustomData:fromViewController:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7432,12 +6418,13 @@ ], "declKind": "Func", "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:fromViewController:completion:", - "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData4from10completionySS_SDys11AnyHashableVypGSgSo16UIViewControllerCSgySbcSgtF", + "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData4from10completionySS_SDys11AnyHashableVypGSgSo16UIViewControllerCSgySbYbcSgtF", "moduleName": "ApptentiveKit", "deprecated": true, "objc_name": "engage:withCustomData:fromViewController:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7447,8 +6434,8 @@ }, { "kind": "Function", - "name": "engage", - "printedName": "engage(event:withCustomData:withExtendedData:from:)", + "name": "queryCanShowInteraction", + "printedName": "queryCanShowInteraction(forEvent:completion:)", "children": [ { "kind": "TypeNominal", @@ -7462,90 +6449,33 @@ "usr": "s:SS" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[Swift.AnyHashable : Any]]?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.AnyHashable : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ], - "usr": "s:Sq" + ] } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:withExtendedData:fromViewController:", - "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData0e8ExtendedG04fromySS_SDys11AnyHashableVypGSgSayAKGSgSo16UIViewControllerCSgtF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowInteractionForEvent:completion:", + "mangledName": "$s13ApptentiveKit0A0C23queryCanShowInteraction8forEvent10completionySS_ySbYbctF", "moduleName": "ApptentiveKit", "deprecated": true, - "objc_name": "engage:withCustomData:withExtendedData:fromViewController:", + "objc_name": "queryCanShowInteractionForEvent:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7555,9 +6485,54 @@ }, { "kind": "Function", - "name": "engage", - "printedName": "engage(event:withCustomData:withExtendedData:from:completion:)", - "children": [ + "name": "queryCanShowMessageCenter", + "printedName": "queryCanShowMessageCenter(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowMessageCenterWithCompletion:", + "mangledName": "$s13ApptentiveKit0A0C25queryCanShowMessageCenter10completionyySbYbc_tF", + "moduleName": "ApptentiveKit", + "deprecated": true, + "objc_name": "queryCanShowMessageCenterWithCompletion:", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenterCompat", + "printedName": "presentMessageCenterCompat(from:)", + "children": [ { "kind": "TypeNominal", "name": "Void", @@ -7565,9 +6540,124 @@ }, { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Optional", + "printedName": "UIKit.UIViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:", + "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4fromySo16UIViewControllerCSg_tF", + "moduleName": "ApptentiveKit", + "objc_name": "presentMessageCenterFromViewController:", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenterCompat", + "printedName": "presentMessageCenterCompat(from:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Swift.Bool) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:completion:", + "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from10completionySo16UIViewControllerCSg_ySbYbcSgtF", + "moduleName": "ApptentiveKit", + "deprecated": true, + "objc_name": "presentMessageCenterFromViewController:completion:", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenterCompat", + "printedName": "presentMessageCenterCompat(from:withCustomData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", @@ -7595,38 +6685,42 @@ } ], "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:", + "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomDataySo16UIViewControllerCSg_SDys11AnyHashableVypGSgtF", + "moduleName": "ApptentiveKit", + "objc_name": "presentMessageCenterFromViewController:withCustomData:", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentMessageCenterCompat", + "printedName": "presentMessageCenterCompat(from:withCustomData:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", "name": "Optional", - "printedName": "[[Swift.AnyHashable : Any]]?", + "printedName": "UIKit.UIViewController?", "children": [ { "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.AnyHashable : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], "usr": "s:Sq" @@ -7634,13 +6728,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIViewController?", + "printedName": "[Swift.AnyHashable : Any]?", "children": [ { "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" + "name": "Dictionary", + "printedName": "[Swift.AnyHashable : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "AnyHashable", + "printedName": "Swift.AnyHashable", + "usr": "s:s11AnyHashableV" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" } ], "usr": "s:Sq" @@ -7674,13 +6781,14 @@ } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:withExtendedData:fromViewController:completion:", - "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData0e8ExtendedG04from10completionySS_SDys11AnyHashableVypGSgSayALGSgSo16UIViewControllerCSgySbcSgtF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:completion:", + "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomData10completionySo16UIViewControllerCSg_SDys11AnyHashableVypGSgySbYbcSgtF", "moduleName": "ApptentiveKit", "deprecated": true, - "objc_name": "engage:withCustomData:withExtendedData:fromViewController:completion:", + "objc_name": "presentMessageCenterFromViewController:withCustomData:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7690,8 +6798,8 @@ }, { "kind": "Function", - "name": "queryCanShowInteraction", - "printedName": "queryCanShowInteraction(forEvent:completion:)", + "name": "removeCustomPersonData", + "printedName": "removeCustomPersonData(withKey:)", "children": [ { "kind": "TypeNominal", @@ -7703,34 +6811,17 @@ "name": "String", "printedName": "Swift.String", "usr": "s:SS" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowInteractionForEvent:completion:", - "mangledName": "$s13ApptentiveKit0A0C23queryCanShowInteraction8forEvent10completionySS_ySbctF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomPersonDataWithKey:", + "mangledName": "$s13ApptentiveKit0A0C22removeCustomPersonData7withKeyySS_tF", "moduleName": "ApptentiveKit", "deprecated": true, - "objc_name": "queryCanShowInteractionForEvent:completion:", + "objc_name": "removeCustomPersonDataWithKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7740,44 +6831,30 @@ }, { "kind": "Function", - "name": "extendedData", - "printedName": "extendedData(date:)", + "name": "removeCustomDeviceData", + "printedName": "removeCustomDeviceData(withKey:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Date", - "printedName": "Foundation.Date", - "usr": "s:10Foundation4DateV" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataDate:", - "mangledName": "$s13ApptentiveKit0A0C12extendedData4dateSDys11AnyHashableVypG10Foundation4DateV_tFZ", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomDeviceDataWithKey:", + "mangledName": "$s13ApptentiveKit0A0C22removeCustomDeviceData7withKeyySS_tF", "moduleName": "ApptentiveKit", - "static": true, "deprecated": true, - "objc_name": "extendedDataDate:", + "objc_name": "removeCustomDeviceDataWithKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7787,50 +6864,36 @@ }, { "kind": "Function", - "name": "extendedData", - "printedName": "extendedData(latitude:longitude:)", + "name": "addCustomDeviceData", + "printedName": "addCustomDeviceData(_:withKey:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataLocationForLatitude:longitude:", - "mangledName": "$s13ApptentiveKit0A0C12extendedData8latitude9longitudeSDys11AnyHashableVypGSd_SdtFZ", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataString:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySS_SStF", "moduleName": "ApptentiveKit", - "static": true, "deprecated": true, - "objc_name": "extendedDataLocationForLatitude:longitude:", + "objc_name": "addCustomDeviceDataString:withKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -7840,157 +6903,75 @@ }, { "kind": "Function", - "name": "extendedData", - "printedName": "extendedData(transactionID:affiliation:revenue:shipping:tax:currency:commerceItems:)", + "name": "addCustomDeviceData", + "printedName": "addCustomDeviceData(_:withKey:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - }, - { - "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": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataNumber:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySo8NSNumberC_SStF", + "moduleName": "ApptentiveKit", + "deprecated": true, + "objc_name": "addCustomDeviceDataNumber:withKey:", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addCustomDeviceData", + "printedName": "addCustomDeviceData(_:withKey:)", + "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "[[Swift.AnyHashable : Any]]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[[Swift.AnyHashable : Any]]", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sa" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:", - "mangledName": "$s13ApptentiveKit0A0C12extendedData13transactionID11affiliation7revenue8shipping3tax8currency13commerceItemsSDys11AnyHashableVypGSSSg_AOSo8NSNumberCSgA2rOSayANGSgtFZ", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataBool:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySb_SStF", "moduleName": "ApptentiveKit", - "static": true, "deprecated": true, - "objc_name": "extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:", + "objc_name": "addCustomDeviceDataBool:withKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8000,122 +6981,36 @@ }, { "kind": "Function", - "name": "extendedData", - "printedName": "extendedData(itemID:name:category:price:quantity:currency:)", + "name": "addCustomPersonData", + "printedName": "addCustomPersonData(_:withKey:)", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" + "name": "Void", + "printedName": "()" }, { "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": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "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.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSNumber?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - } - ], - "usr": "s:Sq" + "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" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:", - "mangledName": "$s13ApptentiveKit0A0C12extendedData6itemID4name8category5price8quantity8currencySDys11AnyHashableVypGSSSg_A2NSo8NSNumberCSgAqNtFZ", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataString:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySS_SStF", "moduleName": "ApptentiveKit", - "static": true, "deprecated": true, - "objc_name": "extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:", + "objc_name": "addCustomPersonDataString:withKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8125,8 +7020,8 @@ }, { "kind": "Function", - "name": "queryCanShowMessageCenter", - "printedName": "queryCanShowMessageCenter(completion:)", + "name": "addCustomPersonData", + "printedName": "addCustomPersonData(_:withKey:)", "children": [ { "kind": "TypeNominal", @@ -8134,32 +7029,27 @@ "printedName": "()" }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ] + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowMessageCenterWithCompletion:", - "mangledName": "$s13ApptentiveKit0A0C25queryCanShowMessageCenter10completionyySbc_tF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataNumber:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySo8NSNumberC_SStF", "moduleName": "ApptentiveKit", "deprecated": true, - "objc_name": "queryCanShowMessageCenterWithCompletion:", + "objc_name": "addCustomPersonDataNumber:withKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8169,8 +7059,8 @@ }, { "kind": "Function", - "name": "presentMessageCenterCompat", - "printedName": "presentMessageCenterCompat(from:)", + "name": "addCustomPersonData", + "printedName": "addCustomPersonData(_:withKey:)", "children": [ { "kind": "TypeNominal", @@ -8179,36 +7069,37 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:", - "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4fromySo16UIViewControllerCSg_tF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataBool:withKey:", + "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySb_SStF", "moduleName": "ApptentiveKit", - "objc_name": "presentMessageCenterFromViewController:", + "deprecated": true, + "objc_name": "addCustomPersonDataBool:withKey:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", - "ObjC" + "ObjC", + "Available" ], "isFromExtension": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", - "name": "presentMessageCenterCompat", - "printedName": "presentMessageCenterCompat(from:completion:)", + "name": "logIn", + "printedName": "logIn(withToken:completion:)", "children": [ { "kind": "TypeNominal", @@ -8217,54 +7108,59 @@ }, { "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" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Bool) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, (any Swift.Error)?) -> ()", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, (any Swift.Error)?)", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "Bool", "printedName": "Swift.Bool", "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any Swift.Error)?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "any Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" } ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:completion:", - "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from10completionySo16UIViewControllerCSg_ySbcSgtF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logInWithToken:completion:", + "mangledName": "$s13ApptentiveKit0A0C5logIn9withToken10completionySS_ySb_s5Error_pSgtYbctF", "moduleName": "ApptentiveKit", "deprecated": true, - "objc_name": "presentMessageCenterFromViewController:completion:", + "objc_name": "logInWithToken:completion:", "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8274,119 +7170,271 @@ }, { "kind": "Function", - "name": "presentMessageCenterCompat", - "printedName": "presentMessageCenterCompat(from:withCustomData:)", + "name": "logOut", + "printedName": "logOut()", "children": [ { "kind": "TypeNominal", "name": "Void", "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - }, + } + ], + "declKind": "Func", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logOut", + "mangledName": "$s13ApptentiveKit0A0C6logOutyyF", + "moduleName": "ApptentiveKit", + "deprecated": true, + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "authenticationFailureCallback", + "printedName": "authenticationFailureCallback", + "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", + "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", "children": [ { "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Tuple", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveAuthenticationFailureReason", + "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", + "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] } - ], - "usr": "s:SD" + ] } ], "usr": "s:Sq" } ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:", - "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomDataySo16UIViewControllerCSg_SDys11AnyHashableVypGSgtF", + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)authenticationFailureCallback", + "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvp", "moduleName": "ApptentiveKit", - "objc_name": "presentMessageCenterFromViewController:withCustomData:", + "deprecated": true, "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", - "ObjC" + "ObjC", + "Available" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "presentMessageCenterCompat", - "printedName": "presentMessageCenterCompat(from:withCustomData:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "accessors": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" + "name": "Optional", + "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveAuthenticationFailureReason", + "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", + "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)authenticationFailureCallback", + "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvg", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", "children": [ { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveAuthenticationFailureReason", + "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", + "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ] + } + ] } ], - "usr": "s:SD" + "usr": "s:Sq" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAuthenticationFailureCallback:", + "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvs", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvM", + "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvM", + "moduleName": "ApptentiveKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "updateToken", + "printedName": "updateToken(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" }, { "kind": "TypeNominal", @@ -8417,229 +7465,13 @@ } ], "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:completion:", - "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomData10completionySo16UIViewControllerCSg_SDys11AnyHashableVypGSgySbcSgtF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "presentMessageCenterFromViewController:withCustomData:completion:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "dismissMessageCenter", - "printedName": "dismissMessageCenter(animated:completion:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)dismissMessageCenterWithAnimated:completion:", - "mangledName": "$s13ApptentiveKit0A0C20dismissMessageCenter8animated10completionySb_yycSgtF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "dismissMessageCenterWithAnimated:completion:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "unreadMessageCountAccessoryView", - "printedName": "unreadMessageCountAccessoryView(apptentiveHeart:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIView", - "printedName": "UIKit.UIView", - "usr": "c:objc(cs)UIView" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)unreadMessageCountAccessoryViewWithApptentiveHeart:", - "mangledName": "$s13ApptentiveKit0A0C31unreadMessageCountAccessoryView15apptentiveHeartSo6UIViewCSb_tF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "unreadMessageCountAccessoryViewWithApptentiveHeart:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "openAppStore", - "printedName": "openAppStore()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)openAppStore", - "mangledName": "$s13ApptentiveKit0A0C12openAppStoreyyF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "setPushProvider", - "printedName": "setPushProvider(_:deviceToken:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" - }, - { - "kind": "TypeNominal", - "name": "Data", - "printedName": "Foundation.Data", - "usr": "s:10Foundation4DataV" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setPushProvider:deviceToken:", - "mangledName": "$s13ApptentiveKit0A0C15setPushProvider_11deviceTokenyAA0adE0O_10Foundation4DataVtF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "didReceveUserNotificationResponse", - "printedName": "didReceveUserNotificationResponse(_:from:withCompletionHandler:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "UNNotificationResponse", - "printedName": "UserNotifications.UNNotificationResponse", - "usr": "c:objc(cs)UNNotificationResponse" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIViewController?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)didReceveUserNotificationResponse:from:withCompletionHandler:", - "mangledName": "$s13ApptentiveKit0A0C33didReceveUserNotificationResponse_4from21withCompletionHandlerSbSo014UNNotificationG0C_So16UIViewControllerCSgyyctF", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)updateToken:completion:", + "mangledName": "$s13ApptentiveKit0A0C11updateToken_10completionySS_ySbYbcSgtF", "moduleName": "ApptentiveKit", "deprecated": true, "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8649,31 +7481,24 @@ }, { "kind": "Var", - "name": "advertisingIdentifier", - "printedName": "advertisingIdentifier", + "name": "logLevel", + "printedName": "logLevel", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.UUID?", - "children": [ - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" - } - ], - "usr": "s:Sq" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)advertisingIdentifier", - "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvp", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)logLevel", + "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovp", "moduleName": "ApptentiveKit", "deprecated": true, "declAttributes": [ - "Dynamic", + "Final", + "Custom", "AccessControl", "ObjC", "Available" @@ -8687,26 +7512,18 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.UUID?", - "children": [ - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" - } - ], - "usr": "s:Sq" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)advertisingIdentifier", - "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvg", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logLevel", + "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovg", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "get" @@ -8723,1302 +7540,661 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.UUID?", - "children": [ - { - "kind": "TypeNominal", - "name": "UUID", - "printedName": "Foundation.UUID", - "usr": "s:10Foundation4UUIDV" - } - ], - "usr": "s:Sq" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAdvertisingIdentifier:", - "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvs", + "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setLogLevel:", + "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovs", "moduleName": "ApptentiveKit", "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A0C8logLevelAA0a3LogD0OvM", + "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0OvM", + "moduleName": "ApptentiveKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } ] + } + ], + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive", + "mangledName": "$s13ApptentiveKit0A0C", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Final", + "AccessControl", + "Custom", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ApptentiveError", + "printedName": "ApptentiveError", + "children": [ { "kind": "Var", - "name": "mParticleId", - "printedName": "mParticleId", + "name": "internalInconsistency", + "printedName": "internalInconsistency", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + } + ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)mParticleId", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "invalidCustomDataType", + "printedName": "invalidCustomDataType", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)mParticleId", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyA2CmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "fileExistsAtContainerDirectoryPath", + "printedName": "fileExistsAtContainerDirectoryPath", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setMParticleId:", - "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF", + "moduleName": "ApptentiveKit" }, { - "kind": "Function", - "name": "removeCustomPersonData", - "printedName": "removeCustomPersonData(withKey:)", + "kind": "Var", + "name": "unsupportedBackendStateTransition", + "printedName": "unsupportedBackendStateTransition", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomPersonDataWithKey:", - "mangledName": "$s13ApptentiveKit0A0C22removeCustomPersonData7withKeyySS_tF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "removeCustomPersonDataWithKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "removeCustomDeviceData", - "printedName": "removeCustomDeviceData(withKey:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomDeviceDataWithKey:", - "mangledName": "$s13ApptentiveKit0A0C22removeCustomDeviceData7withKeyySS_tF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "removeCustomDeviceDataWithKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomDeviceData", - "printedName": "addCustomDeviceData(_:withKey:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataString:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySS_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomDeviceDataString:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomDeviceData", - "printedName": "addCustomDeviceData(_:withKey:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataNumber:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySo8NSNumberC_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomDeviceDataNumber:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomDeviceData", - "printedName": "addCustomDeviceData(_:withKey:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "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@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataBool:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySb_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomDeviceDataBool:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomPersonData", - "printedName": "addCustomPersonData(_:withKey:)", - "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" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataString:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySS_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomPersonDataString:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomPersonData", - "printedName": "addCustomPersonData(_:withKey:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataNumber:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySo8NSNumberC_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomPersonDataNumber:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "addCustomPersonData", - "printedName": "addCustomPersonData(_:withKey:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "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@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataBool:withKey:", - "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySb_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "addCustomPersonDataBool:withKey:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Var", - "name": "styleSheet", - "printedName": "styleSheet", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)styleSheet", - "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)styleSheet", - "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO33unsupportedBackendStateTransitionyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO33unsupportedBackendStateTransitionyA2CmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "emptyEventName", + "printedName": "emptyEventName", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setStyleSheet:", - "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" - } - ] - }, - { - "kind": "Function", - "name": "checkSDKConfiguration", - "printedName": "checkSDKConfiguration()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)checkSDKConfiguration", - "mangledName": "$s13ApptentiveKit0A0C21checkSDKConfigurationyyF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO14emptyEventNameyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO14emptyEventNameyA2CmF", + "moduleName": "ApptentiveKit" }, { - "kind": "Function", - "name": "logIn", - "printedName": "logIn(withToken:completion:)", + "kind": "Var", + "name": "notLoggedIn", + "printedName": "notLoggedIn", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, { "kind": "TypeFunc", "name": "Function", - "printedName": "(Swift.Bool, (any Swift.Error)?) -> ()", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.Bool, (any Swift.Error)?)", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any Swift.Error)?", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:Sq" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } ] } ] } ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logInWithToken:completion:", - "mangledName": "$s13ApptentiveKit0A0C5logIn9withToken10completionySS_ySb_s5Error_pSgtctF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "objc_name": "logInWithToken:completion:", - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "logOut", - "printedName": "logOut()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logOut", - "mangledName": "$s13ApptentiveKit0A0C6logOutyyF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO11notLoggedInyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO11notLoggedInyA2CmF", + "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "authenticationFailureCallback", - "printedName": "authenticationFailureCallback", + "name": "alreadyLoggedIn", + "printedName": "alreadyLoggedIn", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (Swift.String, Swift.String) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", + "printedName": "(Swift.String, Swift.String) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", "name": "Tuple", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", + "printedName": "(subject: Swift.String, id: Swift.String)", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveAuthenticationFailureReason", - "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", - "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" + "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" - } - ], - "usr": "s:Sq" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ] } ] - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)authenticationFailureCallback", - "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ + }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveAuthenticationFailureReason", - "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", - "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)authenticationFailureCallback", - "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO15alreadyLoggedInyACSS_SStcACmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO15alreadyLoggedInyACSS_SStcACmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "loginCalledBeforeRegister", + "printedName": "loginCalledBeforeRegister", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ())?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?)", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveAuthenticationFailureReason", - "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason", - "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAuthenticationFailureCallback:", - "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SSSgtcSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO25loginCalledBeforeRegisteryA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO25loginCalledBeforeRegisteryA2CmF", + "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "preInteractionCallback", - "printedName": "preInteractionCallback", + "name": "activeConversationPending", + "printedName": "activeConversationPending", "children": [ { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool", + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ] + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } ] } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)preInteractionCallback", - "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO25activeConversationPendingyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO25activeConversationPendingyA2CmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "missingSubClaim", + "printedName": "missingSubClaim", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)preInteractionCallback", - "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO15missingSubClaimyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO15missingSubClaimyA2CmF", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Var", + "name": "mismatchedSubClaim", + "printedName": "mismatchedSubClaim", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "[Swift.AnyHashable : Any]?", - "children": [ - { - "kind": "TypeNominal", - "name": "Dictionary", - "printedName": "[Swift.AnyHashable : Any]", - "children": [ - { - "kind": "TypeNominal", - "name": "AnyHashable", - "printedName": "Swift.AnyHashable", - "usr": "s:s11AnyHashableV" - }, - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" - } - ], - "usr": "s:SD" - } - ], - "usr": "s:Sq" - } - ] - } - ] + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } - ], - "usr": "s:Sq" + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setPreInteractionCallback:", - "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" + ] } - ] + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO18mismatchedSubClaimyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO18mismatchedSubClaimyA2CmF", + "moduleName": "ApptentiveKit" }, { - "kind": "Function", - "name": "updateToken", - "printedName": "updateToken(_:completion:)", + "kind": "Var", + "name": "invalidEncryptionKey", + "printedName": "invalidEncryptionKey", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "((Swift.Bool) -> ())?", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Bool) -> ()", + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } ] } - ], - "hasDefaultArg": true, - "usr": "s:Sq" + ] } ], - "declKind": "Func", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)updateToken:completion:", - "mangledName": "$s13ApptentiveKit0A0C11updateToken_10completionySS_ySbcSgtF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "funcSelfKind": "NonMutating" + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO20invalidEncryptionKeyyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO20invalidEncryptionKeyyA2CmF", + "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "logLevel", - "printedName": "logLevel", + "name": "invalidAppCredentials", + "printedName": "invalidAppCredentials", "children": [ { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)logLevel", - "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Dynamic", - "AccessControl", - "ObjC", - "Available" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logLevel", - "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovg", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeFunc", + "name": "Function", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" }, { "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" + "name": "Metatype", + "printedName": "ApptentiveKit.ApptentiveError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + } + ] } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setLogLevel:", - "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovs", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "isFromExtension": true, - "accessorKind": "set" + ] } - ] - } - ], - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive", - "mangledName": "$s13ApptentiveKit0A0C", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)NSObject", - "hasMissingDesignatedInitializers": 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" + ], + "declKind": "EnumElement", + "usr": "s:13ApptentiveKit0A5ErrorO21invalidAppCredentialsyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO21invalidAppCredentialsyA2CmF", + "moduleName": "ApptentiveKit" }, - { - "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ApptentiveError", - "printedName": "ApptentiveError", - "children": [ { "kind": "Var", - "name": "internalInconsistency", - "printedName": "internalInconsistency", + "name": "noActiveConversation", + "printedName": "noActiveConversation", "children": [ { "kind": "TypeFunc", @@ -10048,24 +8224,24 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF", + "usr": "s:13ApptentiveKit0A5ErrorO20noActiveConversationyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO20noActiveConversationyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "invalidCustomDataType", - "printedName": "invalidCustomDataType", + "name": "authenticationFailed", + "printedName": "authenticationFailed", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (Any?) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (ApptentiveKit.AuthenticationFailureReason?, Swift.String?) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(Any?) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason?, Swift.String?) -> ApptentiveKit.ApptentiveError", "children": [ { "kind": "TypeNominal", @@ -10075,16 +8251,38 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Any?", + "name": "Tuple", + "printedName": "(reason: ApptentiveKit.AuthenticationFailureReason?, responseString: Swift.String?)", "children": [ { "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "Any" + "name": "Optional", + "printedName": "ApptentiveKit.AuthenticationFailureReason?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" } - ], - "usr": "s:Sq" + ] } ] }, @@ -10105,14 +8303,14 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyACypSgcACmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyACypSgcACmF", + "usr": "s:13ApptentiveKit0A5ErrorO20authenticationFailedyAcA27AuthenticationFailureReasonOSg_SSSgtcACmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO20authenticationFailedyAcA27AuthenticationFailureReasonOSg_SSSgtcACmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "fileExistsAtContainerDirectoryPath", - "printedName": "fileExistsAtContainerDirectoryPath", + "name": "resourceNotDecodableAsImage", + "printedName": "resourceNotDecodableAsImage", "children": [ { "kind": "TypeFunc", @@ -10142,25 +8340,51 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF", + "usr": "s:13ApptentiveKit0A5ErrorO27resourceNotDecodableAsImageyA2CmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO27resourceNotDecodableAsImageyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "unsupportedBackendStateTransition", - "printedName": "unsupportedBackendStateTransition", + "name": "interactionExceededRateLimit", + "printedName": "interactionExceededRateLimit", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (Swift.Int, Swift.Int) -> ApptentiveKit.ApptentiveError", "children": [ { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Int, Swift.Int) -> ApptentiveKit.ApptentiveError", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(count: Swift.Int, limit: Swift.Int)", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ] }, { "kind": "TypeNominal", @@ -10179,73 +8403,190 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO33unsupportedBackendStateTransitionyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO33unsupportedBackendStateTransitionyA2CmF", + "usr": "s:13ApptentiveKit0A5ErrorO28interactionExceededRateLimityACSi_SitcACmF", + "mangledName": "$s13ApptentiveKit0A5ErrorO28interactionExceededRateLimityACSi_SitcACmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "emptyEventName", - "printedName": "emptyEventName", + "name": "errorDescription", + "printedName": "errorDescription", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvp", + "mangledName": "$s13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ] + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvg", + "mangledName": "$s13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvg", + "moduleName": "ApptentiveKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "ApptentiveError", + "printedName": "ApptentiveKit.ApptentiveError", + "usr": "s:13ApptentiveKit0A5ErrorO" } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO14emptyEventNameyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO14emptyEventNameyA2CmF", - "moduleName": "ApptentiveKit" + "declKind": "Func", + "usr": "s:13ApptentiveKit0A5ErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s13ApptentiveKit0A5ErrorO2eeoiySbAC_ACtFZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13ApptentiveKit0A5ErrorO", + "mangledName": "$s13ApptentiveKit0A5ErrorO", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "LocalizedError", + "printedName": "LocalizedError", + "usr": "s:10Foundation14LocalizedErrorP", + "mangledName": "$s10Foundation14LocalizedErrorP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationFailureReason", + "printedName": "AuthenticationFailureReason", + "children": [ { "kind": "Var", - "name": "notLoggedIn", - "printedName": "notLoggedIn", + "name": "invalidAlgorithm", + "printedName": "invalidAlgorithm", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" } ] } @@ -10253,62 +8594,36 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO11notLoggedInyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO11notLoggedInyA2CmF", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO16invalidAlgorithmyA2CmF", + "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO16invalidAlgorithmyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "alreadyLoggedIn", - "printedName": "alreadyLoggedIn", + "name": "malformedToken", + "printedName": "malformedToken", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (Swift.String, Swift.String) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.String, Swift.String) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(subject: Swift.String, id: 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": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" } ] } @@ -10316,36 +8631,36 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO15alreadyLoggedInyACSS_SStcACmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO15alreadyLoggedInyACSS_SStcACmF", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO14malformedTokenyA2CmF", + "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO14malformedTokenyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "loginCalledBeforeRegister", - "printedName": "loginCalledBeforeRegister", + "name": "invalidToken", + "printedName": "invalidToken", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" } ] } @@ -10353,36 +8668,36 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO25loginCalledBeforeRegisteryA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO25loginCalledBeforeRegisteryA2CmF", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO12invalidTokenyA2CmF", + "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO12invalidTokenyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "activeConversationPending", - "printedName": "activeConversationPending", + "name": "missingSubClaim", + "printedName": "missingSubClaim", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" } ] } @@ -10390,542 +8705,36 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO25activeConversationPendingyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO25activeConversationPendingyA2CmF", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO15missingSubClaimyA2CmF", + "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO15missingSubClaimyA2CmF", "moduleName": "ApptentiveKit" }, { "kind": "Var", - "name": "missingSubClaim", - "printedName": "missingSubClaim", + "name": "mismatchedSubClaim", + "printedName": "mismatchedSubClaim", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", + "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", + "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO15missingSubClaimyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO15missingSubClaimyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "mismatchedSubClaim", - "printedName": "mismatchedSubClaim", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO18mismatchedSubClaimyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO18mismatchedSubClaimyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "invalidEncryptionKey", - "printedName": "invalidEncryptionKey", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO20invalidEncryptionKeyyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO20invalidEncryptionKeyyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "noActiveConversation", - "printedName": "noActiveConversation", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO20noActiveConversationyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO20noActiveConversationyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "authenticationFailed", - "printedName": "authenticationFailed", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (ApptentiveKit.AuthenticationFailureReason?, Swift.String?) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason?, Swift.String?) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Tuple", - "printedName": "(reason: ApptentiveKit.AuthenticationFailureReason?, responseString: Swift.String?)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.AuthenticationFailureReason?", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - } - ] - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO20authenticationFailedyAcA27AuthenticationFailureReasonOSg_SSSgtcACmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO20authenticationFailedyAcA27AuthenticationFailureReasonOSg_SSSgtcACmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "resourceNotDecodableAsImage", - "printedName": "resourceNotDecodableAsImage", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveError.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveError", - "printedName": "ApptentiveKit.ApptentiveError", - "usr": "s:13ApptentiveKit0A5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A5ErrorO27resourceNotDecodableAsImageyA2CmF", - "mangledName": "$s13ApptentiveKit0A5ErrorO27resourceNotDecodableAsImageyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "errorDescription", - "printedName": "errorDescription", - "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:13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvp", - "mangledName": "$s13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvp", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvg", - "mangledName": "$s13ApptentiveKit0A5ErrorO16errorDescriptionSSSgvg", - "moduleName": "ApptentiveKit", - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit0A5ErrorO", - "mangledName": "$s13ApptentiveKit0A5ErrorO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Error", - "printedName": "Error", - "usr": "s:s5ErrorP", - "mangledName": "$ss5ErrorP" - }, - { - "kind": "Conformance", - "name": "LocalizedError", - "printedName": "LocalizedError", - "usr": "s:10Foundation14LocalizedErrorP", - "mangledName": "$s10Foundation14LocalizedErrorP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "AuthenticationFailureReason", - "printedName": "AuthenticationFailureReason", - "children": [ - { - "kind": "Var", - "name": "invalidAlgorithm", - "printedName": "invalidAlgorithm", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO16invalidAlgorithmyA2CmF", - "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO16invalidAlgorithmyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "malformedToken", - "printedName": "malformedToken", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO14malformedTokenyA2CmF", - "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO14malformedTokenyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "invalidToken", - "printedName": "invalidToken", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO12invalidTokenyA2CmF", - "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO12invalidTokenyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "missingSubClaim", - "printedName": "missingSubClaim", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO15missingSubClaimyA2CmF", - "mangledName": "$s13ApptentiveKit27AuthenticationFailureReasonO15missingSubClaimyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "mismatchedSubClaim", - "printedName": "mismatchedSubClaim", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.AuthenticationFailureReason.Type) -> ApptentiveKit.AuthenticationFailureReason", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.AuthenticationFailureReason.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "AuthenticationFailureReason", - "printedName": "ApptentiveKit.AuthenticationFailureReason", - "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" + "name": "AuthenticationFailureReason", + "printedName": "ApptentiveKit.AuthenticationFailureReason", + "usr": "s:13ApptentiveKit27AuthenticationFailureReasonO" } ] } @@ -11241,6 +9050,20 @@ ], "enumRawTypeName": "String", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -11290,9 +9113,23 @@ "printedName": "Encodable", "usr": "s:SE", "mangledName": "$sSE" - } - ] - }, + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, { "kind": "Var", "name": "apptentiveAssertionHandler", @@ -11359,6 +9196,7 @@ "HasInitialValue", "HasStorage", "AccessControl", + "Nonisolated", "RawDocComment" ], "hasStorage": true, @@ -11545,6 +9383,23 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "UIKit", @@ -11700,6 +9555,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -11725,9 +9587,41 @@ "usr": "s:13ApptentiveKit20CustomDataCompatibleP", "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP", "moduleName": "ApptentiveKit", + "genericSig": "<τ_0_0 : Swift.Sendable>", + "sugared_genericSig": "", "declAttributes": [ "AccessControl", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } ] }, { @@ -12030,6 +9924,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -12050,6 +9958,20 @@ "printedName": "Encodable", "usr": "s:SE", "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, @@ -12103,6 +10025,7 @@ "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ + "Custom", "RawDocComment" ], "reqNewWitnessTableEntry": true, @@ -12133,6 +10056,7 @@ "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ + "Custom", "RawDocComment" ], "reqNewWitnessTableEntry": true, @@ -12163,6 +10087,7 @@ "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ + "Custom", "RawDocComment" ], "reqNewWitnessTableEntry": true, @@ -12193,6 +10118,7 @@ "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ + "Custom", "RawDocComment" ], "reqNewWitnessTableEntry": true, @@ -12223,6 +10149,7 @@ "sugared_genericSig": "", "protocolReq": true, "declAttributes": [ + "Custom", "RawDocComment" ], "reqNewWitnessTableEntry": true, @@ -12237,7 +10164,24 @@ "sugared_genericSig": "", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + } ] }, { @@ -12271,6 +10215,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12328,6 +10273,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12377,6 +10323,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12415,17 +10362,18 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessage10Foundation16AttributedStringVvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessage10Foundation16AttributedStringVvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12440,14 +10388,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessage10Foundation16AttributedStringVvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessage10Foundation16AttributedStringVvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -12465,23 +10413,24 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC14disclaimerText10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerText10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12494,21 +10443,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC14disclaimerText10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerText10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "accessorKind": "get" } @@ -12525,6 +10474,22 @@ "declAttributes": [ "AccessControl", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } ] }, { @@ -12553,6 +10518,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12603,6 +10569,22 @@ "declAttributes": [ "AccessControl", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } ] }, { @@ -12623,6 +10605,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -12671,6 +10654,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "ReferenceOwnership", "AccessControl", @@ -12775,6 +10759,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC11currentPageAC0G0Cvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12824,6 +10809,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC9questionsSayAC8QuestionCGvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12873,6 +10859,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC17isMarkedAsInvalidSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12905,23 +10892,24 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessage10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessage10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12934,21 +10922,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessage10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessage10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "accessorKind": "get" } @@ -12962,23 +10950,24 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC12introductionSSSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introductionSSSgvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC12introduction10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introduction10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -12991,21 +10980,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC12introductionSSSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introductionSSSgvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC12introduction10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introduction10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "accessorKind": "get" } @@ -13028,6 +11017,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC17advanceButtonTextSSvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13069,6 +11059,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC22invalidQuestionIndexes10Foundation8IndexSetVvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13111,6 +11102,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -13198,6 +11190,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -13303,6 +11296,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8setValue_3forySSSg_10Foundation9IndexPathVtF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13330,6 +11324,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC20selectValueFromRange2aty10Foundation9IndexPathV_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13351,6 +11346,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC22openTermsAndConditionsyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13368,10 +11364,11 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit15SurveyViewModelC7advanceyyF", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC7advanceyyF", + "usr": "s:13ApptentiveKit15SurveyViewModelC7advanceyyYaF", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC7advanceyyYaF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13394,6 +11391,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC7isValidSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13609,6 +11607,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -13642,6 +11654,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC11displayModeAC07DisplayG0Ovp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13683,6 +11696,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC19shouldConfirmCancelSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13732,6 +11746,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC27currentSelectedSegmentIndexSiSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13764,6 +11779,90 @@ } ] }, + { + "kind": "Var", + "name": "isIntroPage", + "printedName": "isIntroPage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit15SurveyViewModelC11isIntroPageSbvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC11isIntroPageSbvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit15SurveyViewModelC11isIntroPageSbvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC11isIntroPageSbvg", + "moduleName": "ApptentiveKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSuccessPage", + "printedName": "isSuccessPage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit15SurveyViewModelC13isSuccessPageSbvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC13isSuccessPageSbvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Custom", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit15SurveyViewModelC13isSuccessPageSbvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC13isSuccessPageSbvg", + "moduleName": "ApptentiveKit", + "accessorKind": "get" + } + ] + }, { "kind": "Function", "name": "launch", @@ -13780,6 +11879,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC6launchyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13801,6 +11901,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC15continuePartialyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13828,6 +11929,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC6cancel7partialySb_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -13856,6 +11958,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -13905,6 +12008,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -13962,6 +12066,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14027,6 +12132,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14092,6 +12198,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "SetterAccess", "AccessControl", @@ -14153,6 +12260,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC5valueSiSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14210,6 +12318,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC12choiceLabelsSaySSGvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14264,6 +12373,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC11selectValue2atySi_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14286,6 +12396,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC27accessibilityHintForSegmentSSvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14316,6 +12427,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14325,6 +12437,22 @@ "inheritsConvenienceInitializers": true, "superclassNames": [ "ApptentiveKit.SurveyViewModel.Question" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } ] }, { @@ -14358,6 +12486,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14419,6 +12548,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC06toggleF02atySi_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14441,6 +12571,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14selectionStyleAE09SelectionI0Ovp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -14656,6 +12787,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -14684,17 +12829,18 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5label10Foundation16AttributedStringVvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5label10Foundation16AttributedStringVvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14709,14 +12855,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5label10Foundation16AttributedStringVvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5label10Foundation16AttributedStringVvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -14726,117 +12872,6 @@ } ] }, - { - "kind": "Var", - "name": "htmlLabel", - "printedName": "htmlLabel", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSAttributedString?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSAttributedString", - "printedName": "Foundation.NSAttributedString", - "usr": "c:objc(cs)NSAttributedString" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSAttributedString?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSAttributedString", - "printedName": "Foundation.NSAttributedString", - "usr": "c:objc(cs)NSAttributedString" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSAttributedString?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSAttributedString", - "printedName": "Foundation.NSAttributedString", - "usr": "c:objc(cs)NSAttributedString" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvs", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvM", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C9htmlLabelSo18NSAttributedStringCSgvM", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "_modify" - } - ] - }, { "kind": "Var", "name": "placeholderText", @@ -14863,6 +12898,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14920,6 +12956,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -14968,6 +13005,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C10isSelectedSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "SetterAccess", "AccessControl", @@ -15013,6 +13051,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C17isMarkedAsInvalidSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "SetterAccess", "AccessControl", @@ -15067,6 +13106,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15158,10 +13198,34 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] } ], "declKind": "Class", @@ -15169,6 +13233,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -15178,6 +13243,36 @@ "inheritsConvenienceInitializers": true, "superclassNames": [ "ApptentiveKit.SurveyViewModel.Question" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } ] }, { @@ -15203,6 +13298,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15242,24 +13338,25 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC11description10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11description10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15275,21 +13372,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC11description10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11description10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -15307,24 +13404,25 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC10disclaimerSSSgvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC10disclaimerSSSgvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC10disclaimer10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC10disclaimer10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15340,21 +13438,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC10disclaimerSSSgvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC10disclaimerSSSgvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC10disclaimer10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC10disclaimer10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -15390,6 +13488,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15447,6 +13546,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15504,6 +13604,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15550,10 +13651,34 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" ], "isFromExtension": true, - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { "kind": "TypeDecl", @@ -15567,16 +13692,17 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvp", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvp", + "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4text10Foundation16AttributedStringVvp", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4text10Foundation16AttributedStringVvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "Final", "AccessControl", @@ -15592,14 +13718,14 @@ "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvg", - "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvg", + "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4text10Foundation16AttributedStringVvg", + "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4text10Foundation16AttributedStringVvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -15626,6 +13752,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC10isRequiredSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "Final", "AccessControl", @@ -15683,6 +13810,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12requiredTextSSSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "Final", "AccessControl", @@ -15740,6 +13868,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12errorMessageSSvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "Final", "AccessControl", @@ -15797,6 +13926,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12instructionsSSSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "Final", "AccessControl", @@ -15855,6 +13985,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -15941,6 +14072,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC18accessibilityLabelSSvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -15972,10 +14104,34 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" ], "isFromExtension": true, - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { "kind": "TypeDecl", @@ -16008,6 +14164,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -16065,6 +14222,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -16122,6 +14280,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -16213,6 +14372,7 @@ "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -16222,6 +14382,36 @@ "inheritsConvenienceInitializers": true, "superclassNames": [ "ApptentiveKit.SurveyViewModel.Question" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } ] } ], @@ -16231,9 +14421,33 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { "kind": "Import", @@ -16277,14 +14491,21 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "SwiftUI", + "printedName": "SwiftUI", "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment" ] }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -16305,6 +14526,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -16345,6 +14573,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "UIKit", @@ -16381,6 +14616,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16414,6 +14652,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16447,6 +14688,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16488,6 +14732,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16529,6 +14776,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16570,6 +14820,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16597,6 +14850,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16624,6 +14880,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -16651,234 +14910,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:didFailToRemoveAttachmentAt:with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27didFailToRemoveAttachmentAt4withyAA0cdeF0C_Sis5Error_ptF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27didFailToRemoveAttachmentAt4withyAA0cdeF0C_Sis5Error_ptF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:didFailToAddAttachmentWith:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_26didFailToAddAttachmentWithyAA0cdeF0C_s5Error_ptF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_26didFailToAddAttachmentWithyAA0cdeF0C_s5Error_ptF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:didFailToSendMessageWith:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_013didFailToSendC4WithyAA0cdeF0C_s5Error_ptF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_013didFailToSendC4WithyAA0cdeF0C_s5Error_ptF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:attachmentDownloadDidFinishAt:inMessageAt:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "IndexPath", - "printedName": "Foundation.IndexPath", - "usr": "s:10Foundation9IndexPathV" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_29attachmentDownloadDidFinishAt02incM0yAA0cdeF0C_Si10Foundation9IndexPathVtF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_29attachmentDownloadDidFinishAt02incM0yAA0cdeF0C_Si10Foundation9IndexPathVtF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:attachmentDownloadDidFailAt:inMessageAt:with:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - }, - { - "kind": "TypeNominal", - "name": "IndexPath", - "printedName": "Foundation.IndexPath", - "usr": "s:10Foundation9IndexPathV" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27attachmentDownloadDidFailAt02incM04withyAA0cdeF0C_Si10Foundation9IndexPathVs5Error_ptF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27attachmentDownloadDidFailAt02incM04withyAA0cdeF0C_Si10Foundation9IndexPathVs5Error_ptF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "messageCenterViewModel", - "printedName": "messageCenterViewModel(_:profilePhoto:didDownloadFor:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "MessageCenterViewModel", - "printedName": "ApptentiveKit.MessageCenterViewModel", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC" - }, - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - }, - { - "kind": "TypeNominal", - "name": "IndexPath", - "printedName": "Foundation.IndexPath", - "usr": "s:10Foundation9IndexPathV" - } + "declAttributes": [ + "Custom" ], - "declKind": "Func", - "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_12profilePhoto14didDownloadForyAA0cdeF0C_So7UIImageC10Foundation9IndexPathVtF", - "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_12profilePhoto14didDownloadForyAA0cdeF0C_So7UIImageC10Foundation9IndexPathVtF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>", - "sugared_genericSig": "", - "protocolReq": true, "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" } @@ -16891,7 +14925,24 @@ "sugared_genericSig": "", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + } ] }, { @@ -16917,6 +14968,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -16974,6 +15026,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17031,6 +15084,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17080,6 +15134,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17129,6 +15184,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17178,6 +15234,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17227,6 +15284,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17276,6 +15334,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17325,6 +15384,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17374,6 +15434,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17423,6 +15484,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17472,6 +15534,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17529,6 +15592,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17601,6 +15665,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17719,6 +15784,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17806,6 +15872,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17893,6 +15960,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17942,6 +16010,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -17991,6 +16060,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18040,6 +16110,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18089,6 +16160,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18138,6 +16210,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18187,6 +16260,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18236,6 +16310,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18285,6 +16360,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18334,6 +16410,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18383,6 +16460,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18432,6 +16510,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18481,6 +16560,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18530,6 +16610,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18579,6 +16660,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18628,6 +16710,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18677,6 +16760,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18726,6 +16810,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18775,6 +16860,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18824,6 +16910,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18873,6 +16960,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18922,6 +17010,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -18971,6 +17060,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19020,6 +17110,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19069,6 +17160,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19126,6 +17218,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19237,6 +17330,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19339,6 +17433,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19425,6 +17520,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19511,6 +17607,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC22shouldAllowProfileEditSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -19802,6 +17899,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -19843,6 +17954,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC012oldestUnreadC9IndexPath10Foundation0iJ0VSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -19900,6 +18012,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC06newestC9IndexPath10Foundation0hI0VSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -19948,6 +18061,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18commitProfileEditsyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -19969,6 +18083,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18cancelProfileEditsyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -19990,6 +18105,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC6launchyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20011,6 +18127,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC6cancelyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20033,6 +18150,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC08numberOfC6GroupsSivp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20079,6 +18197,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC04markC6AsRead2aty10Foundation9IndexPathV_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20107,6 +18226,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23numberOfMessagesInGroup2atS2i_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20143,6 +18263,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28dateStringForMessagesInGroup2atSSSgSi_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20171,6 +18292,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC7message2atAC0C0C10Foundation9IndexPathV_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20200,13 +18322,15 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -20226,6 +18350,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC0AC0C0Cvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "SetterAccess", "AccessControl", @@ -20279,6 +18404,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20385,6 +18511,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16draftAttachmentsSayAC0C0C10AttachmentCGvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20449,13 +18576,15 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -20476,13 +18605,15 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -20503,13 +18634,15 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -20529,6 +18662,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC24remainingAttachmentSlotsSivp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20570,6 +18704,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16canAddAttachmentSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20611,6 +18746,7 @@ "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC07canSendC0Sbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -20647,51 +18783,38 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC04sendC0yyF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC04sendC0yyF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC04sendC0yyYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC04sendC0yyYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", "name": "getGreetingImage", - "printedName": "getGreetingImage(completion:)", + "printedName": "getGreetingImage()", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIImage) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ] + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC16getGreetingImage10completionyySo7UIImageCc_tF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16getGreetingImage10completionyySo7UIImageCc_tF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC16getGreetingImageSo7UIImageCyYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16getGreetingImageSo7UIImageCyYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -20701,8 +18824,17 @@ "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", @@ -20712,12 +18844,14 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit22MessageCenterViewModelC15getProfilePhoto3fory10Foundation9IndexPathV_tF", - "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15getProfilePhoto3fory10Foundation9IndexPathV_tF", + "usr": "s:13ApptentiveKit22MessageCenterViewModelC15getProfilePhoto3forSo7UIImageCSg10Foundation9IndexPathV_tYaKF", + "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15getProfilePhoto3forSo7UIImageCSg10Foundation9IndexPathV_tYaKF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { @@ -21524,6 +19658,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -21895,6 +20043,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Hashable", @@ -22131,6 +20293,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Decodable", @@ -22201,6 +20377,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -22929,6 +21119,20 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -22992,6 +21196,20 @@ "isFromExtension": true, "hasMissingDesignatedInitializers": true, "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -23008,9 +21226,40 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] }, { "kind": "TypeDecl", @@ -23196,6 +21445,20 @@ "AccessControl" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -23223,6 +21486,13 @@ "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, @@ -23267,13 +21537,121 @@ ] }, { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", + "kind": "TypeDecl", + "name": "GlassDialogButton", + "printedName": "GlassDialogButton", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)GlassDialogButton", + "mangledName": "$s13ApptentiveKit17GlassDialogButtonC", "moduleName": "ApptentiveKit", + "intro_iOS": "26", "declAttributes": [ - "RawDocComment" + "Preconcurrency", + "Custom", + "AccessControl", + "Available", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UIView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } ] }, { @@ -23288,8 +21666,8 @@ }, { "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", + "name": "UIKit", + "printedName": "UIKit", "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ @@ -23316,6 +21694,60 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", "name": "Event", @@ -23503,6 +21935,46 @@ "accessorKind": "get" } ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13ApptentiveKit5EventV11descriptionSSvp", + "mangledName": "$s13ApptentiveKit5EventV11descriptionSSvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit5EventV11descriptionSSvg", + "mangledName": "$s13ApptentiveKit5EventV11descriptionSSvg", + "moduleName": "ApptentiveKit", + "accessorKind": "get" + } + ] } ], "declKind": "Struct", @@ -23514,6 +21986,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "ExpressibleByStringLiteral", @@ -23543,6 +22029,20 @@ "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": "Conformance", "name": "ExpressibleByExtendedGraphemeClusterLiteral", @@ -23565,6 +22065,13 @@ "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, { "kind": "Conformance", "name": "ExpressibleByUnicodeScalarLiteral", @@ -23631,6 +22138,7 @@ "mangledName": "$s13ApptentiveKit20InteractionPresenterCACycfc", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23654,11 +22162,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tKF", - "mangledName": "$s13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tKF", + "usr": "s:13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tYaKF", + "mangledName": "$s13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tYaKF", "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23683,11 +22192,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tKF", - "mangledName": "$s13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tKF", + "usr": "s:13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tYaKF", + "mangledName": "$s13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tYaKF", "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23712,11 +22222,12 @@ } ], "declKind": "Func", - "usr": "s:13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tKF", - "mangledName": "$s13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tKF", + "usr": "s:13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tYaKF", + "mangledName": "$s13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tYaKF", "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23726,7 +22237,7 @@ { "kind": "Function", "name": "presentTextModal", - "printedName": "presentTextModal(with:completion:)", + "printedName": "presentTextModal(with:)", "children": [ { "kind": "TypeNominal", @@ -23738,54 +22249,25 @@ "name": "DialogViewModel", "printedName": "ApptentiveKit.DialogViewModel", "usr": "s:13ApptentiveKit15DialogViewModelC" - }, - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Swift.Result<(), any Swift.Error>) -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Result", - "printedName": "Swift.Result<(), any Swift.Error>", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "any Swift.Error", - "usr": "s:s5ErrorP" - } - ], - "usr": "s:s6ResultO" - } - ] } ], "declKind": "Func", - "usr": "s:13ApptentiveKit20InteractionPresenterC16presentTextModal4with10completionyAA15DialogViewModelC_ys6ResultOyyts5Error_pGctF", - "mangledName": "$s13ApptentiveKit20InteractionPresenterC16presentTextModal4with10completionyAA15DialogViewModelC_ys6ResultOyyts5Error_pGctF", + "usr": "s:13ApptentiveKit20InteractionPresenterC16presentTextModal4withyAA15DialogViewModelC_tYaKF", + "mangledName": "$s13ApptentiveKit20InteractionPresenterC16presentTextModal4withyAA15DialogViewModelC_tYaKF", "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], + "throwing": true, "funcSelfKind": "NonMutating" }, { "kind": "Function", "name": "presentViewController", - "printedName": "presentViewController(_:completion:)", + "printedName": "presentViewController(_:)", "children": [ { "kind": "TypeNominal", @@ -23797,40 +22279,15 @@ "name": "UIViewController", "printedName": "UIKit.UIViewController", "usr": "c:objc(cs)UIViewController" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(() -> ())?", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "() -> ()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ] - } - ], - "hasDefaultArg": true, - "usr": "s:Sq" } ], "declKind": "Func", - "usr": "s:13ApptentiveKit20InteractionPresenterC21presentViewController_10completionySo06UIViewG0C_yycSgtKF", - "mangledName": "$s13ApptentiveKit20InteractionPresenterC21presentViewController_10completionySo06UIViewG0C_yycSgtKF", + "usr": "s:13ApptentiveKit20InteractionPresenterC21presentViewControlleryySo06UIViewG0CYaKF", + "mangledName": "$s13ApptentiveKit20InteractionPresenterC21presentViewControlleryySo06UIViewG0CYaKF", "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23862,6 +22319,7 @@ "mangledName": "$s13ApptentiveKit20InteractionPresenterC33validatedPresentingViewControllerSo06UIViewH0CSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23911,6 +22369,7 @@ "mangledName": "$s13ApptentiveKit20InteractionPresenterC31messageCenterCurrentlyPresentedSbvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -23958,6 +22417,7 @@ "moduleName": "ApptentiveKit", "isOpen": true, "declAttributes": [ + "Custom", "AccessControl" ], "funcSelfKind": "NonMutating" @@ -23970,7 +22430,31 @@ "isOpen": true, "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } ] }, { @@ -24140,6 +22624,38 @@ "usr": "s:13ApptentiveKit25InteractionPresenterErrorO26noPresentingViewControlleryA2CmF", "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO26noPresentingViewControlleryA2CmF", "moduleName": "ApptentiveKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "InteractionPresenterError", + "printedName": "ApptentiveKit.InteractionPresenterError", + "usr": "s:13ApptentiveKit25InteractionPresenterErrorO" + }, + { + "kind": "TypeNominal", + "name": "InteractionPresenterError", + "printedName": "ApptentiveKit.InteractionPresenterError", + "usr": "s:13ApptentiveKit25InteractionPresenterErrorO" + } + ], + "declKind": "Func", + "usr": "s:13ApptentiveKit25InteractionPresenterErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO2eeoiySbAC_ACtFZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" } ], "declKind": "Enum", @@ -24151,6 +22667,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Error", @@ -24158,12 +22688,26 @@ "usr": "s:s5ErrorP", "mangledName": "$ss5ErrorP" }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, { "kind": "Conformance", "name": "Sendable", "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, @@ -24177,16 +22721,6 @@ "RawDocComment" ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, { "kind": "Import", "name": "UIKit", @@ -24257,6 +22791,16 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "Import", "name": "PhotosUI", @@ -24264,7 +22808,7 @@ "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ - "RawDocComment" + "Preconcurrency" ] }, { @@ -24301,6 +22845,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "Foundation", @@ -24313,8 +22864,8 @@ }, { "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", + "name": "OSLog", + "printedName": "OSLog", "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ @@ -24326,11 +22877,25 @@ "name": "UIKit", "printedName": "UIKit", "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment" ] }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "TypeDecl", "name": "DialogViewModelDelegate", @@ -24366,6 +22931,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.DialogViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" }, @@ -24387,6 +22955,9 @@ "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.DialogViewModelDelegate>", "sugared_genericSig": "", "protocolReq": true, + "declAttributes": [ + "Custom" + ], "reqNewWitnessTableEntry": true, "funcSelfKind": "NonMutating" } @@ -24399,7 +22970,24 @@ "sugared_genericSig": "", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + } ] }, { @@ -24415,24 +23003,25 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15DialogViewModelC5titleSSSgvp", - "mangledName": "$s13ApptentiveKit15DialogViewModelC5titleSSSgvp", + "usr": "s:13ApptentiveKit15DialogViewModelC5title10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15DialogViewModelC5title10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24448,21 +23037,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15DialogViewModelC5titleSSSgvg", - "mangledName": "$s13ApptentiveKit15DialogViewModelC5titleSSSgvg", + "usr": "s:13ApptentiveKit15DialogViewModelC5title10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15DialogViewModelC5title10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -24480,24 +23069,25 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15DialogViewModelC7messageSSSgvp", - "mangledName": "$s13ApptentiveKit15DialogViewModelC7messageSSSgvp", + "usr": "s:13ApptentiveKit15DialogViewModelC7message10Foundation16AttributedStringVSgvp", + "mangledName": "$s13ApptentiveKit15DialogViewModelC7message10Foundation16AttributedStringVSgvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24513,21 +23103,21 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "Swift.String?", + "printedName": "Foundation.AttributedString?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "AttributedString", + "printedName": "Foundation.AttributedString", + "usr": "s:10Foundation16AttributedStringV" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15DialogViewModelC7messageSSSgvg", - "mangledName": "$s13ApptentiveKit15DialogViewModelC7messageSSSgvg", + "usr": "s:13ApptentiveKit15DialogViewModelC7message10Foundation16AttributedStringVSgvg", + "mangledName": "$s13ApptentiveKit15DialogViewModelC7message10Foundation16AttributedStringVSgvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -24555,6 +23145,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24612,6 +23203,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "Final", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24669,6 +23261,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24755,6 +23348,7 @@ "mangledName": "$s13ApptentiveKit15DialogViewModelC5imageAC5ImageOvp", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24842,6 +23436,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "AccessControl", "RawDocComment" @@ -24928,6 +23523,7 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", + "Custom", "HasStorage", "ReferenceOwnership", "AccessControl", @@ -25037,6 +23633,7 @@ "mangledName": "$s13ApptentiveKit15DialogViewModelC14buttonSelected2atySi_tF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -25058,6 +23655,7 @@ "mangledName": "$s13ApptentiveKit15DialogViewModelC6launchyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -25079,6 +23677,7 @@ "mangledName": "$s13ApptentiveKit15DialogViewModelC6cancelyyF", "moduleName": "ApptentiveKit", "declAttributes": [ + "Custom", "AccessControl", "RawDocComment" ], @@ -25275,6 +23874,20 @@ "RawDocComment" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -25404,12 +24017,12 @@ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.DialogViewModel.Image.Type) -> (UIKit.UIImage, Swift.String, ApptentiveKit.DialogViewModel.Image.Layout, CoreGraphics.CGFloat) -> ApptentiveKit.DialogViewModel.Image", + "printedName": "(ApptentiveKit.DialogViewModel.Image.Type) -> (UIKit.UIImage, Swift.String, ApptentiveKit.DialogViewModel.Image.Layout) -> ApptentiveKit.DialogViewModel.Image", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(UIKit.UIImage, Swift.String, ApptentiveKit.DialogViewModel.Image.Layout, CoreGraphics.CGFloat) -> ApptentiveKit.DialogViewModel.Image", + "printedName": "(UIKit.UIImage, Swift.String, ApptentiveKit.DialogViewModel.Image.Layout) -> ApptentiveKit.DialogViewModel.Image", "children": [ { "kind": "TypeNominal", @@ -25420,7 +24033,7 @@ { "kind": "TypeNominal", "name": "Tuple", - "printedName": "(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout, maxHeight: CoreGraphics.CGFloat)", + "printedName": "(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout)", "children": [ { "kind": "TypeNominal", @@ -25439,12 +24052,6 @@ "name": "Layout", "printedName": "ApptentiveKit.DialogViewModel.Image.Layout", "usr": "s:13ApptentiveKit15DialogViewModelC5ImageO6LayoutO" - }, - { - "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" } ] } @@ -25467,8 +24074,8 @@ } ], "declKind": "EnumElement", - "usr": "s:13ApptentiveKit15DialogViewModelC5ImageO6loadedyAESo7UIImageC_SSAE6LayoutO14CoreFoundation7CGFloatVtcAEmF", - "mangledName": "$s13ApptentiveKit15DialogViewModelC5ImageO6loadedyAESo7UIImageC_SSAE6LayoutO12CoreGraphics7CGFloatVtcAEmF", + "usr": "s:13ApptentiveKit15DialogViewModelC5ImageO6loadedyAESo7UIImageC_SSAE6LayoutOtcAEmF", + "mangledName": "$s13ApptentiveKit15DialogViewModelC5ImageO6loadedyAESo7UIImageC_SSAE6LayoutOtcAEmF", "moduleName": "ApptentiveKit" }, { @@ -25707,6 +24314,20 @@ ], "enumRawTypeName": "String", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -25787,6 +24408,20 @@ ], "isFromExtension": true, "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -25923,8 +24558,8 @@ } ], "declKind": "Var", - "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvp", - "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvp", + "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyyYbScMYccvp", + "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyyYbScMYccvp", "moduleName": "ApptentiveKit", "declAttributes": [ "Final", @@ -25959,8 +24594,8 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvg", - "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvg", + "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyyYbScMYccvg", + "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyyYbScMYccvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -26205,6 +24840,20 @@ ], "enumRawTypeName": "String", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -26253,7 +24902,23 @@ "RawDocComment" ], "isFromExtension": true, - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } + ] } ], "declKind": "Class", @@ -26262,9 +24927,33 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "AccessControl", + "Custom", "RawDocComment" ], - "hasMissingDesignatedInitializers": true + "hasMissingDesignatedInitializers": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] }, { "kind": "Import", @@ -26309,8 +24998,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26389,8 +25079,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26469,8 +25160,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26549,8 +25241,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26637,8 +25330,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26733,8 +25427,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26813,8 +25508,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26893,8 +25589,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -26973,8 +25670,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -27053,8 +25751,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -27133,8 +25832,9 @@ "moduleName": "ApptentiveKit", "declAttributes": [ "HasInitialValue", - "HasStorage", + "Preconcurrency", "Custom", + "HasStorage", "Dynamic", "AccessControl", "ObjC", @@ -27215,6 +25915,7 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override", "AccessControl", @@ -27242,45 +25943,13 @@ "declAttributes": [ "Dynamic", "ObjC", + "Preconcurrency", "Custom", "Override", "AccessControl", "RawDocComment" ], "funcSelfKind": "NonMutating" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(frame:)", - "children": [ - { - "kind": "TypeNominal", - "name": "DialogView", - "printedName": "ApptentiveKit.DialogView", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogView" - }, - { - "kind": "TypeNominal", - "name": "CGRect", - "printedName": "CoreFoundation.CGRect", - "usr": "c:@S@CGRect" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)initWithFrame:", - "mangledName": "$s13ApptentiveKit10DialogViewC5frameACSo6CGRectV_tcfc", - "moduleName": "ApptentiveKit", - "overriding": true, - "implicit": true, - "objc_name": "initWithFrame:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override" - ], - "init_kind": "Designated" } ], "declKind": "Class", @@ -27288,6 +25957,7 @@ "mangledName": "$s13ApptentiveKit10DialogViewC", "moduleName": "ApptentiveKit", "declAttributes": [ + "Preconcurrency", "Custom", "AccessControl", "RawDocComment", @@ -27295,12 +25965,27 @@ ], "superclassUsr": "c:objc(cs)UIView", "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, "superclassNames": [ "UIKit.UIView", "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -27370,6 +26055,13 @@ "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, @@ -27450,6 +26142,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "Import", "name": "UIKit", @@ -27540,6 +26239,13 @@ "RawDocComment" ] }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "TypeDecl", "name": "ApptentiveAuthenticationFailureReason", @@ -28134,6 +26840,20 @@ ], "enumRawTypeName": "Int", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -28373,6 +27093,7 @@ "deprecated": true, "implicit": true, "declAttributes": [ + "Available", "Available" ], "accessorKind": "_modify" @@ -28473,6 +27194,7 @@ "deprecated": true, "implicit": true, "declAttributes": [ + "Available", "Available" ], "accessorKind": "_modify" @@ -28481,8 +27203,8 @@ }, { "kind": "Var", - "name": "baseURL", - "printedName": "baseURL", + "name": "overrideBaseURL", + "printedName": "overrideBaseURL", "children": [ { "kind": "TypeNominal", @@ -28500,16 +27222,14 @@ } ], "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)baseURL", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvp", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)overrideBaseURL", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC15overrideBaseURL10Foundation0F0VSgvp", "moduleName": "ApptentiveKit", - "deprecated": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", "ObjC", - "Available", "RawDocComment" ], "hasStorage": true, @@ -28535,8 +27255,8 @@ } ], "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)baseURL", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvg", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)overrideBaseURL", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC15overrideBaseURL10Foundation0F0VSgvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -28570,8 +27290,130 @@ } ], "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setBaseURL:", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvs", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setOverrideBaseURL:", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC15overrideBaseURL10Foundation0F0VSgvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A13ConfigurationC15overrideBaseURL10Foundation0F0VSgvM", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC15overrideBaseURL10Foundation0F0VSgvM", + "moduleName": "ApptentiveKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "region", + "printedName": "region", + "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)region", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC6regionSSSgvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC", + "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)region", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC6regionSSSgvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "ObjC" + ], + "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setRegion:", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC6regionSSSgvs", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ @@ -28591,8 +27433,8 @@ } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvM", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvM", + "usr": "s:13ApptentiveKit0A13ConfigurationC6regionSSSgvM", + "mangledName": "$s13ApptentiveKit0A13ConfigurationC6regionSSSgvM", "moduleName": "ApptentiveKit", "deprecated": true, "implicit": true, @@ -28851,354 +27693,6 @@ } ] }, - { - "kind": "Var", - "name": "appID", - "printedName": "appID", - "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)appID", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "ObjC", - "Available", - "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)appID", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setAppID:", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A13ConfigurationC5appIDSSSgvM", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "showInfoButton", - "printedName": "showInfoButton", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)showInfoButton", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "ObjC", - "Available", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)showInfoButton", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setShowInfoButton:", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvM", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "surveyTermsAndConditions", - "printedName": "surveyTermsAndConditions", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", - "children": [ - { - "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)surveyTermsAndConditions", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "AccessControl", - "ObjC", - "Available", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", - "children": [ - { - "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)surveyTermsAndConditions", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.TermsAndConditions?", - "children": [ - { - "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - } - ], - "usr": "s:Sq" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setSurveyTermsAndConditions:", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvM", - "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" - } - ] - }, { "kind": "Constructor", "name": "init", @@ -29323,6 +27817,20 @@ "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -29376,35 +27884,35 @@ }, { "kind": "TypeDecl", - "name": "ApptentivePushProvider", - "printedName": "ApptentivePushProvider", + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveLogLevel", "children": [ { "kind": "Var", - "name": "apptentive", - "printedName": "apptentive", + "name": "undefined", + "printedName": "undefined", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider", + "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentivePushProvider.Type", + "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ] } @@ -29412,8 +27920,8 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderApptentive", - "mangledName": "$s13ApptentiveKit0A12PushProviderO10apptentiveyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelUndefined", + "mangledName": "$s13ApptentiveKit0A8LogLevelO9undefinedyA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", @@ -29423,30 +27931,30 @@ }, { "kind": "Var", - "name": "urbanAirship", - "printedName": "urbanAirship", + "name": "crit", + "printedName": "crit", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider", + "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentivePushProvider.Type", + "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ] } @@ -29454,8 +27962,8 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderUrbanAirship", - "mangledName": "$s13ApptentiveKit0A12PushProviderO12urbanAirshipyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelCrit", + "mangledName": "$s13ApptentiveKit0A8LogLevelO4crityA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", @@ -29465,30 +27973,30 @@ }, { "kind": "Var", - "name": "amazonSNS", - "printedName": "amazonSNS", + "name": "error", + "printedName": "error", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider", + "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentivePushProvider.Type", + "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ] } @@ -29496,8 +28004,8 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderAmazonSNS", - "mangledName": "$s13ApptentiveKit0A12PushProviderO9amazonSNSyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelError", + "mangledName": "$s13ApptentiveKit0A8LogLevelO5erroryA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", @@ -29507,30 +28015,30 @@ }, { "kind": "Var", - "name": "parse", - "printedName": "parse", + "name": "warn", + "printedName": "warn", "children": [ { "kind": "TypeFunc", "name": "Function", - "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider", + "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" }, { "kind": "TypeNominal", "name": "Metatype", - "printedName": "ApptentiveKit.ApptentivePushProvider.Type", + "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" + "name": "ApptentiveLogLevel", + "printedName": "ApptentiveKit.ApptentiveLogLevel", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" } ] } @@ -29538,8 +28046,8 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderParse", - "mangledName": "$s13ApptentiveKit0A12PushProviderO5parseyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelWarn", + "mangledName": "$s13ApptentiveKit0A8LogLevelO4warnyA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", @@ -29547,138 +28055,10 @@ ], "fixedbinaryorder": 3 }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(rawValue:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.ApptentivePushProvider?", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentivePushProvider", - "printedName": "ApptentiveKit.ApptentivePushProvider", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A12PushProviderO8rawValueACSgSi_tcfc", - "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueACSgSi_tcfc", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit0A12PushProviderO8rawValueSivp", - "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueSivp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A12PushProviderO8rawValueSivg", - "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueSivg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - } - ] - } - ], - "declKind": "Enum", - "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider", - "mangledName": "$s13ApptentiveKit0A12PushProviderO", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "ObjC", - "Available" - ], - "enumRawTypeName": "Int", - "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": "TypeDecl", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveLogLevel", - "children": [ { "kind": "Var", - "name": "undefined", - "printedName": "undefined", + "name": "info", + "printedName": "info", "children": [ { "kind": "TypeFunc", @@ -29708,19 +28088,19 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelUndefined", - "mangledName": "$s13ApptentiveKit0A8LogLevelO9undefinedyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelInfo", + "mangledName": "$s13ApptentiveKit0A8LogLevelO4infoyA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", "ObjC" ], - "fixedbinaryorder": 0 + "fixedbinaryorder": 4 }, { "kind": "Var", - "name": "crit", - "printedName": "crit", + "name": "debug", + "printedName": "debug", "children": [ { "kind": "TypeFunc", @@ -29750,19 +28130,19 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelCrit", - "mangledName": "$s13ApptentiveKit0A8LogLevelO4crityA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelDebug", + "mangledName": "$s13ApptentiveKit0A8LogLevelO5debugyA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", "ObjC" ], - "fixedbinaryorder": 1 + "fixedbinaryorder": 5 }, { "kind": "Var", - "name": "error", - "printedName": "error", + "name": "verbose", + "printedName": "verbose", "children": [ { "kind": "TypeFunc", @@ -29792,176 +28172,8 @@ } ], "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelError", - "mangledName": "$s13ApptentiveKit0A8LogLevelO5erroryA2CmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 2 - }, - { - "kind": "Var", - "name": "warn", - "printedName": "warn", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelWarn", - "mangledName": "$s13ApptentiveKit0A8LogLevelO4warnyA2CmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 3 - }, - { - "kind": "Var", - "name": "info", - "printedName": "info", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelInfo", - "mangledName": "$s13ApptentiveKit0A8LogLevelO4infoyA2CmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 4 - }, - { - "kind": "Var", - "name": "debug", - "printedName": "debug", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelDebug", - "mangledName": "$s13ApptentiveKit0A8LogLevelO5debugyA2CmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment", - "ObjC" - ], - "fixedbinaryorder": 5 - }, - { - "kind": "Var", - "name": "verbose", - "printedName": "verbose", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveLogLevel.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveLogLevel", - "printedName": "ApptentiveKit.ApptentiveLogLevel", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelVerbose", - "mangledName": "$s13ApptentiveKit0A8LogLevelO7verboseyA2CmF", + "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelVerbose", + "mangledName": "$s13ApptentiveKit0A8LogLevelO7verboseyA2CmF", "moduleName": "ApptentiveKit", "declAttributes": [ "RawDocComment", @@ -30054,6 +28266,20 @@ ], "enumRawTypeName": "UInt", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -30092,106 +28318,331 @@ } ] }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "CoreTelephony", + "printedName": "CoreTelephony", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, { "kind": "TypeDecl", - "name": "TermsAndConditions", - "printedName": "TermsAndConditions", + "name": "DialogButton", + "printedName": "DialogButton", "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(bodyText:linkText:linkURL:)", + "kind": "Var", + "name": "titleFont", + "printedName": "titleFont", "children": [ { "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" - }, + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" + } + ], + "declKind": "Var", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)titleFont", + "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "HasInitialValue", + "Preconcurrency", + "Custom", + "HasStorage", + "Dynamic", + "AccessControl", + "ObjC", + "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": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)titleFont", + "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setTitleFont:", + "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit18TermsAndConditionsC8bodyText04linkG00H3URLACSSSg_AG10Foundation0I0VSgtcfc", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyText04linkG00H3URLACSSSg_AG10Foundation0I0VSgtcfc", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "init_kind": "Designated" + ] }, { "kind": "Var", - "name": "bodyText", - "printedName": "bodyText", + "name": "cornerRadius", + "printedName": "cornerRadius", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvp", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvp", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)cornerRadius", + "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvp", "moduleName": "ApptentiveKit", "declAttributes": [ - "Final", + "HasInitialValue", + "Preconcurrency", + "Custom", "HasStorage", - "AccessControl" + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -30201,61 +28652,78 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvg", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvg", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)cornerRadius", + "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setCornerRadius:", + "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } ] }, { "kind": "Var", - "name": "linkText", - "printedName": "linkText", + "name": "borderWidth", + "printedName": "borderWidth", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvp", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvp", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderWidth", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvp", "moduleName": "ApptentiveKit", "declAttributes": [ - "Final", + "HasInitialValue", + "Preconcurrency", + "Custom", "HasStorage", - "AccessControl" + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" ], - "isLet": true, "hasStorage": true, "accessors": [ { @@ -30265,62 +28733,160 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvg", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvg", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderWidth", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvg", "moduleName": "ApptentiveKit", "implicit": true, "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderWidth:", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" } ] }, { "kind": "Var", - "name": "linkURL", - "printedName": "linkURL", + "name": "borderColor", + "printedName": "borderColor", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Var", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderColor", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvp", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "HasInitialValue", + "Preconcurrency", + "Custom", + "HasStorage", + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], - "usr": "s:Sq" + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderColor", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvg", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderColor:", + "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvs", + "moduleName": "ApptentiveKit", + "implicit": true, + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "intrinsicContentSize", + "printedName": "intrinsicContentSize", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvp", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvp", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)intrinsicContentSize", + "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvp", "moduleName": "ApptentiveKit", + "overriding": true, + "objc_name": "intrinsicContentSize", "declAttributes": [ - "Final", - "HasStorage", - "AccessControl" + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "AccessControl", + "RawDocComment" ], - "isLet": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -30329,73 +28895,118 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.URL?", - "children": [ - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "usr": "s:Sq" + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvg", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvg", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)intrinsicContentSize", + "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvg", "moduleName": "ApptentiveKit", - "implicit": true, + "overriding": true, + "objc_name": "intrinsicContentSize", "declAttributes": [ - "Final" + "Dynamic", + "ObjC" ], "accessorKind": "get" } ] }, { - "kind": "Constructor", - "name": "init", - "printedName": "init()", + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", "children": [ { "kind": "TypeNominal", - "name": "TermsAndConditions", - "printedName": "ApptentiveKit.TermsAndConditions", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions" + "name": "Void", + "printedName": "()" } ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions(im)init", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsCACycfc", + "declKind": "Func", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)layoutSubviews", + "mangledName": "$s13ApptentiveKit12DialogButtonC14layoutSubviewsyyF", "moduleName": "ApptentiveKit", "overriding": true, - "implicit": true, - "objc_name": "init", + "objc_name": "layoutSubviews", "declAttributes": [ "Dynamic", "ObjC", - "Override" + "Preconcurrency", + "Custom", + "Override", + "AccessControl", + "RawDocComment" ], - "init_kind": "Designated" + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "didMoveToWindow", + "printedName": "didMoveToWindow()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)didMoveToWindow", + "mangledName": "$s13ApptentiveKit12DialogButtonC15didMoveToWindowyyF", + "moduleName": "ApptentiveKit", + "overriding": true, + "objc_name": "didMoveToWindow", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" } ], "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions", - "mangledName": "$s13ApptentiveKit18TermsAndConditionsC", + "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton", + "mangledName": "$s13ApptentiveKit12DialogButtonC", "moduleName": "ApptentiveKit", - "deprecated": true, "declAttributes": [ + "Preconcurrency", + "Custom", "AccessControl", - "Available", + "RawDocComment", "ObjC" ], - "superclassUsr": "c:objc(cs)NSObject", + "superclassUsr": "c:objc(cs)UIButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, "superclassNames": [ + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -30444,1052 +29055,1116 @@ "printedName": "CustomDebugStringConvertible", "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "ApptentiveStyle", - "printedName": "ApptentiveStyle", - "children": [ + }, { - "kind": "Function", - "name": "font", - "printedName": "font(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A5StyleP4font3forSo6UIFontCAA0aC10IdentifierO_tF", - "mangledName": "$s13ApptentiveKit0A5StyleP4font3forSo6UIFontCAA0aC10IdentifierO_tF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveStyle>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { - "kind": "Function", - "name": "color", - "printedName": "color(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A5StyleP5color3forSo7UIColorCAA0aC10IdentifierO_tF", - "mangledName": "$s13ApptentiveKit0A5StyleP5color3forSo7UIColorCAA0aC10IdentifierO_tF", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveStyle>", - "sugared_genericSig": "", - "deprecated": true, - "protocolReq": true, - "declAttributes": [ - "Available" - ], - "reqNewWitnessTableEntry": true, - "funcSelfKind": "NonMutating" + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } - ], - "declKind": "Protocol", - "usr": "s:13ApptentiveKit0A5StyleP", - "mangledName": "$s13ApptentiveKit0A5StyleP", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" ] }, { "kind": "TypeDecl", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveStyleIdentifier", - "children": [ + "name": "DismissButton", + "printedName": "DismissButton", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)DismissButton", + "mangledName": "$s13ApptentiveKit13DismissButtonC", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ApptentiveKit.DialogButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ { - "kind": "Var", - "name": "body", - "printedName": "body", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO4bodyyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO4bodyyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { - "kind": "Var", - "name": "headerTitle", - "printedName": "headerTitle", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO11headerTitleyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO11headerTitleyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { - "kind": "Var", - "name": "headerMessage", - "printedName": "headerMessage", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO13headerMessageyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13headerMessageyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { - "kind": "Var", - "name": "messageDate", - "printedName": "messageDate", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO11messageDateyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO11messageDateyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { - "kind": "Var", - "name": "messageSender", - "printedName": "messageSender", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO13messageSenderyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13messageSenderyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { - "kind": "Var", - "name": "messageStatus", - "printedName": "messageStatus", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO13messageStatusyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13messageStatusyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" }, { - "kind": "Var", - "name": "messageCenterStatus", - "printedName": "messageCenterStatus", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO19messageCenterStatusyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO19messageCenterStatusyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" }, { - "kind": "Var", - "name": "surveyInstructions", - "printedName": "surveyInstructions", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO18surveyInstructionsyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO18surveyInstructionsyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { - "kind": "Var", - "name": "doneButton", - "printedName": "doneButton", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO10doneButtonyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO10doneButtonyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" }, { - "kind": "Var", - "name": "button", - "printedName": "button", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO6buttonyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO6buttonyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { - "kind": "Var", - "name": "submitButton", - "printedName": "submitButton", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO12submitButtonyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO12submitButtonyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" }, { - "kind": "Var", - "name": "textInput", - "printedName": "textInput", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO9textInputyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9textInputyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { - "kind": "Var", - "name": "headerBackground", - "printedName": "headerBackground", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO16headerBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO16headerBackgroundyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "InteractionButton", + "printedName": "InteractionButton", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)InteractionButton", + "mangledName": "$s13ApptentiveKit17InteractionButtonC", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ApptentiveKit.DialogButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { - "kind": "Var", - "name": "footerBackground", - "printedName": "footerBackground", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO16footerBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO16footerBackgroundyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "YesButton", + "printedName": "YesButton", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)YesButton", + "mangledName": "$s13ApptentiveKit9YesButtonC", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ApptentiveKit.DialogButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "NoButton", + "printedName": "NoButton", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)NoButton", + "mangledName": "$s13ApptentiveKit8NoButtonC", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Preconcurrency", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ApptentiveKit.DialogButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "Var", - "name": "failure", - "printedName": "failure", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO7failureyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO7failureyA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { - "kind": "Var", - "name": "separator", - "printedName": "separator", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO9separatoryA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9separatoryA2CmF", - "moduleName": "ApptentiveKit" + "kind": "Conformance", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "Import", + "name": "CryptoKit", + "printedName": "CryptoKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "MobileCoreServices", + "printedName": "MobileCoreServices", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "QuickLookThumbnailing", + "printedName": "QuickLookThumbnailing", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UniformTypeIdentifiers", + "printedName": "UniformTypeIdentifiers", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "CoreTelephony", + "printedName": "CoreTelephony", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "OSLog", + "printedName": "OSLog", + "declKind": "Import", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "TypeDecl", + "name": "ApptentiveNavigationController", + "printedName": "ApptentiveNavigationController", + "children": [ { "kind": "Var", - "name": "background", - "printedName": "background", + "name": "preferredStatusBarStyle", + "printedName": "preferredStatusBarStyle", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "UIStatusBarStyle", + "printedName": "UIKit.UIStatusBarStyle", + "usr": "c:@E@UIStatusBarStyle" } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO10backgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO10backgroundyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "collectionBackground", - "printedName": "collectionBackground", - "children": [ + "declKind": "Var", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(py)preferredStatusBarStyle", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvp", + "moduleName": "ApptentiveKit", + "overriding": true, + "objc_name": "preferredStatusBarStyle", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] + "name": "UIStatusBarStyle", + "printedName": "UIKit.UIStatusBarStyle", + "usr": "c:@E@UIStatusBarStyle" } - ] + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)preferredStatusBarStyle", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvg", + "moduleName": "ApptentiveKit", + "overriding": true, + "objc_name": "preferredStatusBarStyle", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "accessorKind": "get" } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO20collectionBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO20collectionBackgroundyA2CmF", - "moduleName": "ApptentiveKit" + ] }, { "kind": "Var", - "name": "textInputBackground", - "printedName": "textInputBackground", + "name": "prefersLargeHeader", + "printedName": "prefersLargeHeader", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO19textInputBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO19textInputBackgroundyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "textInputPlaceholder", - "printedName": "textInputPlaceholder", - "children": [ + "declKind": "Var", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cpy)prefersLargeHeader", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO20textInputPlaceholderyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO20textInputPlaceholderyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "messageBackground", - "printedName": "messageBackground", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)prefersLargeHeader", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" + "name": "Void", + "printedName": "()" }, { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO17messageBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO17messageBackgroundyA2CmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "replyBackground", - "printedName": "replyBackground", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)setPrefersLargeHeader:", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO15replyBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO15replyBackgroundyA2CmF", - "moduleName": "ApptentiveKit" + ] }, { - "kind": "Var", - "name": "contextBackground", - "printedName": "contextBackground", + "kind": "Constructor", + "name": "init", + "printedName": "init(navigationBarClass:toolbarClass:)", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier", + "kind": "TypeNominal", + "name": "ApptentiveNavigationController", + "printedName": "ApptentiveKit.ApptentiveNavigationController", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any AnyObject.Type)?", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - }, + "name": "ExistentialMetatype", + "printedName": "any AnyObject.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ] + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(any AnyObject.Type)?", + "children": [ { "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type", + "name": "ExistentialMetatype", + "printedName": "any AnyObject.Type", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" + "name": "ProtocolComposition", + "printedName": "AnyObject" } ] } - ] + ], + "usr": "s:Sq" } ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO17contextBackgroundyA2CmF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO17contextBackgroundyA2CmF", - "moduleName": "ApptentiveKit" + "declKind": "Constructor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNavigationBarClass:toolbarClass:", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18navigationBarClass07toolbarG0ACyXlXpSg_AFtcfc", + "moduleName": "ApptentiveKit", + "overriding": true, + "implicit": true, + "intro_iOS": "5.0", + "objc_name": "initWithNavigationBarClass:toolbarClass:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override", + "Available" + ], + "init_kind": "Designated" }, { - "kind": "Function", - "name": "==", - "printedName": "==(_:_:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(rootViewController:)", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" + "name": "ApptentiveNavigationController", + "printedName": "ApptentiveKit.ApptentiveNavigationController", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" }, { "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO2eeoiySbAC_ACtFZ", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO2eeoiySbAC_ACtFZ", + "declKind": "Constructor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithRootViewController:", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC08rootViewD0ACSo06UIViewD0C_tcfc", "moduleName": "ApptentiveKit", - "static": true, + "overriding": true, "implicit": true, - "funcSelfKind": "NonMutating" + "objc_name": "initWithRootViewController:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override" + ], + "init_kind": "Designated" }, { - "kind": "Var", - "name": "hashValue", - "printedName": "hashValue", + "kind": "Constructor", + "name": "init", + "printedName": "init(nibName:bundle:)", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO9hashValueSivp", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9hashValueSivp", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessors": [ + "name": "ApptentiveNavigationController", + "printedName": "ApptentiveKit.ApptentiveNavigationController", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO9hashValueSivg", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9hashValueSivg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" + "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" } - ] + ], + "declKind": "Constructor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNibName:bundle:", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", + "moduleName": "ApptentiveKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithNibName:bundle:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Override" + ], + "init_kind": "Designated" }, { - "kind": "Function", - "name": "hash", - "printedName": "hash(into:)", + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Optional", + "printedName": "ApptentiveKit.ApptentiveNavigationController?", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveNavigationController", + "printedName": "ApptentiveKit.ApptentiveNavigationController", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" + } + ], + "usr": "s:Sq" }, { "kind": "TypeNominal", - "name": "Hasher", - "printedName": "Swift.Hasher", - "paramValueOwnership": "InOut", - "usr": "s:s6HasherV" + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO4hash4intoys6HasherVz_tF", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO4hash4intoys6HasherVz_tF", + "declKind": "Constructor", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithCoder:", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC5coderACSgSo7NSCoderC_tcfc", "moduleName": "ApptentiveKit", + "overriding": true, "implicit": true, - "funcSelfKind": "NonMutating" + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Preconcurrency", + "Custom", + "Required" + ], + "init_kind": "Designated" } ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO", - "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO", + "declKind": "Class", + "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController", + "mangledName": "$s13ApptentiveKit0A20NavigationControllerC", "moduleName": "ApptentiveKit", - "deprecated": true, "declAttributes": [ + "Preconcurrency", + "Custom", "AccessControl", - "Available" + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)UINavigationController", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UINavigationController", + "UIKit.UIViewController", + "UIKit.UIResponder", + "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -31503,232 +30178,227 @@ "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": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" } ] }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "SwiftUI", + "printedName": "SwiftUI", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, + { + "kind": "Import", + "name": "DeveloperToolsSupport", + "printedName": "DeveloperToolsSupport", + "declKind": "Import", + "moduleName": "ApptentiveKit" + }, { "kind": "TypeDecl", - "name": "ApptentiveStyleSheet", - "printedName": "ApptentiveStyleSheet", - "children": [ + "name": "URLSession", + "printedName": "URLSession", + "declKind": "Class", + "usr": "c:objc(cs)NSURLSession", + "moduleName": "Foundation", + "isOpen": true, + "intro_iOS": "7.0", + "objc_name": "NSURLSession", + "declAttributes": [ + "Available", + "ObjC", + "SynthesizedProtocol", + "NonSendable", + "Sendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ { - "kind": "Function", - "name": "font", - "printedName": "font(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A10StyleSheetC4font3forSo6UIFontCAA0aC10IdentifierO_tF", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC4font3forSo6UIFontCAA0aC10IdentifierO_tF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { - "kind": "Function", - "name": "color", - "printedName": "color(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - }, - { - "kind": "TypeNominal", - "name": "ApptentiveStyleIdentifier", - "printedName": "ApptentiveKit.ApptentiveStyleIdentifier", - "usr": "s:13ApptentiveKit0A15StyleIdentifierO" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A10StyleSheetC5color3forSo7UIColorCAA0aC10IdentifierO_tF", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC5color3forSo7UIColorCAA0aC10IdentifierO_tF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(contentsOf:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.ApptentiveStyleSheet?", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveStyleSheet", - "printedName": "ApptentiveKit.ApptentiveStyleSheet", - "usr": "s:13ApptentiveKit0A10StyleSheetC" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "URL", - "printedName": "Foundation.URL", - "usr": "s:10Foundation3URLV" - } - ], - "declKind": "Constructor", - "usr": "s:13ApptentiveKit0A10StyleSheetC10contentsOfACSg10Foundation3URLV_tcfc", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC10contentsOfACSg10Foundation3URLV_tcfc", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "Convenience", - "AccessControl", - "Available" - ], - "init_kind": "Convenience" + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { - "kind": "Var", - "name": "fontFamily", - "printedName": "fontFamily", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasStorage", - "AccessControl", - "Available" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvg", - "moduleName": "ApptentiveKit", - "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:13ApptentiveKit0A10StyleSheetC10fontFamilySSvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" - } - ] + "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": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Logger", + "printedName": "Logger", + "children": [ { "kind": "Var", - "name": "lightFaceAttribute", - "printedName": "lightFaceAttribute", + "name": "default", + "printedName": "default", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvp", + "usr": "s:2os6LoggerV13ApptentiveKitE7defaultACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7defaultACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -31738,113 +30408,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvg", + "usr": "s:2os6LoggerV13ApptentiveKitE7defaultACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7defaultACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": 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:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "regularFaceAttribute", - "printedName": "regularFaceAttribute", + "name": "engagement", + "printedName": "engagement", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvp", + "usr": "s:2os6LoggerV13ApptentiveKitE10engagementACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE10engagementACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -31854,113 +30458,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvg", + "usr": "s:2os6LoggerV13ApptentiveKitE10engagementACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE10engagementACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": 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:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "mediumFaceAttribute", - "printedName": "mediumFaceAttribute", + "name": "interaction", + "printedName": "interaction", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvp", + "usr": "s:2os6LoggerV13ApptentiveKitE11interactionACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE11interactionACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -31970,113 +30508,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvg", + "usr": "s:2os6LoggerV13ApptentiveKitE11interactionACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE11interactionACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": 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:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "boldFaceAttribute", - "printedName": "boldFaceAttribute", + "name": "network", + "printedName": "network", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvp", + "usr": "s:2os6LoggerV13ApptentiveKitE7networkACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7networkACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32086,104 +30558,47 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvg", + "usr": "s:2os6LoggerV13ApptentiveKitE7networkACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7networkACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": 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:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "primaryColor", - "printedName": "primaryColor", + "name": "payload", + "printedName": "payload", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvp", + "usr": "s:2os6LoggerV13ApptentiveKitE7payloadACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7payloadACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32193,88 +30608,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvg", + "usr": "s:2os6LoggerV13ApptentiveKitE7payloadACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE7payloadACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "secondaryColor", - "printedName": "secondaryColor", + "name": "targeting", + "printedName": "targeting", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvp", + "usr": "s:2os6LoggerV13ApptentiveKitE9targetingACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE9targetingACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32284,88 +30658,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvg", + "usr": "s:2os6LoggerV13ApptentiveKitE9targetingACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE9targetingACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "failureColor", - "printedName": "failureColor", + "name": "messages", + "printedName": "messages", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvp", + "usr": "s:2os6LoggerV13ApptentiveKitE8messagesACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE8messagesACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32375,88 +30708,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvM", + "usr": "s:2os6LoggerV13ApptentiveKitE8messagesACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE8messagesACvgZ", "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" } ] }, { "kind": "Var", - "name": "backgroundColor", - "printedName": "backgroundColor", + "name": "attachments", + "printedName": "attachments", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvp", + "usr": "s:2os6LoggerV13ApptentiveKitE11attachmentsACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE11attachmentsACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32466,88 +30758,47 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvg", + "usr": "s:2os6LoggerV13ApptentiveKitE11attachmentsACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE11attachmentsACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "separatorColor", - "printedName": "separatorColor", + "name": "resources", + "printedName": "resources", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvp", + "usr": "s:2os6LoggerV13ApptentiveKitE9resourcesACvpZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE9resourcesACvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ + "HasInitialValue", "HasStorage", "AccessControl", - "Available" + "RawDocComment" ], + "isFromExtension": true, + "isLet": true, "hasStorage": true, "accessors": [ { @@ -32557,1077 +30808,1288 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Logger", + "printedName": "os.Logger", + "usr": "s:2os6LoggerV" } ], "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvg", + "usr": "s:2os6LoggerV13ApptentiveKitE9resourcesACvgZ", + "mangledName": "$s2os6LoggerV13ApptentiveKitE9resourcesACvgZ", "moduleName": "ApptentiveKit", + "static": true, "implicit": true, + "isFromExtension": true, "accessorKind": "get" - }, + } + ] + } + ], + "declKind": "Struct", + "usr": "s:2os6LoggerV", + "mangledName": "$s2os6LoggerV", + "moduleName": "os", + "intro_Macosx": "11.0", + "intro_iOS": "14.0", + "intro_tvOS": "14.0", + "intro_watchOS": "7.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "String", + "printedName": "String", + "declKind": "Struct", + "usr": "s:SS", + "mangledName": "$sSS", + "moduleName": "Swift", + "declAttributes": [ + "EagerMove", + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinStringLiteral", + "printedName": "_ExpressibleByBuiltinStringLiteral", + "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", + "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "CustomDataCompatible", + "printedName": "CustomDataCompatible", + "usr": "s:13ApptentiveKit20CustomDataCompatibleP", + "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" + }, + { + "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": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" + }, + { + "kind": "Conformance", + "name": "_HasContiguousBytes", + "printedName": "_HasContiguousBytes", + "usr": "s:s19_HasContiguousBytesP", + "mangledName": "$ss19_HasContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "TextOutputStream", + "printedName": "TextOutputStream", + "usr": "s:s16TextOutputStreamP", + "mangledName": "$ss16TextOutputStreamP" + }, + { + "kind": "Conformance", + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", + "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", + "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", + "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", + "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByStringLiteral", + "printedName": "ExpressibleByStringLiteral", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "StringLiteralType", + "printedName": "StringLiteralType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" - }, + ] + } + ], + "usr": "s:s26ExpressibleByStringLiteralP", + "mangledName": "$ss26ExpressibleByStringLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByExtendedGraphemeClusterLiteral", + "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", + "children": [ { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "ExtendedGraphemeClusterLiteralType", + "printedName": "ExtendedGraphemeClusterLiteralType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", + "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" }, { - "kind": "Var", - "name": "collectionBackgroundColor", - "printedName": "collectionBackgroundColor", + "kind": "Conformance", + "name": "ExpressibleByUnicodeScalarLiteral", + "printedName": "ExpressibleByUnicodeScalarLiteral", "children": [ { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "kind": "TypeWitness", + "name": "UnicodeScalarLiteralType", + "printedName": "UnicodeScalarLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] } ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasStorage", - "AccessControl", - "Available" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", + "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + }, + { + "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": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:SK", + "mangledName": "$sSK" }, { - "kind": "Var", - "name": "placeholderColor", - "printedName": "placeholderColor", + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", "children": [ { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasStorage", - "AccessControl", - "Available" - ], - "hasStorage": true, - "accessors": [ + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" + } + ] + }, { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Index", + "printedName": "Swift.String.Index", + "usr": "s:SS5IndexV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "DefaultIndices", + "printedName": "Swift.DefaultIndices", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:SI" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Character", + "printedName": "Swift.Character", + "usr": "s:SJ" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Iterator", + "printedName": "Swift.String.Iterator", + "usr": "s:SS8IteratorV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:ST", + "mangledName": "$sST" }, { - "kind": "Var", - "name": "sizeAdjustment", - "printedName": "sizeAdjustment", + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "StringProtocol", + "printedName": "StringProtocol", "children": [ { - "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvp", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvp", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "HasStorage", - "AccessControl", - "Available" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "UTF8View", + "printedName": "UTF8View", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "UTF8View", + "printedName": "Swift.String.UTF8View", + "usr": "s:SS8UTF8ViewV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvg", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "UTF16View", + "printedName": "UTF16View", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "UTF16View", + "printedName": "Swift.String.UTF16View", + "usr": "s:SS9UTF16ViewV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "UnicodeScalarView", + "printedName": "UnicodeScalarView", + "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "UnicodeScalarView", + "printedName": "Swift.String.UnicodeScalarView", + "usr": "s:SS17UnicodeScalarViewV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvs", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "accessorKind": "set" + ] }, { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvM", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvM", - "moduleName": "ApptentiveKit", - "deprecated": true, - "implicit": true, - "declAttributes": [ - "Available" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:Sy", + "mangledName": "$sSy" }, { - "kind": "Function", - "name": "setFontDescriptor", - "printedName": "setFontDescriptor(_:forStyle:)", + "kind": "Conformance", + "name": "ExpressibleByStringInterpolation", + "printedName": "ExpressibleByStringInterpolation", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIFontDescriptor", - "printedName": "UIKit.UIFontDescriptor", - "usr": "c:objc(cs)UIFontDescriptor" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeWitness", + "name": "StringInterpolation", + "printedName": "StringInterpolation", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultStringInterpolation", + "printedName": "Swift.DefaultStringInterpolation", + "usr": "s:s26DefaultStringInterpolationV" + } + ] } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A10StyleSheetC17setFontDescriptor_03forC0ySo06UIFontG0C_SStF", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC17setFontDescriptor_03forC0ySo06UIFontG0C_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "funcSelfKind": "NonMutating" + "usr": "s:s32ExpressibleByStringInterpolationP", + "mangledName": "$ss32ExpressibleByStringInterpolationP" }, { - "kind": "Function", - "name": "setColor", - "printedName": "setColor(_:forStyle:)", + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Substring", + "printedName": "Swift.Substring", + "usr": "s:Ss" + } + ] } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit0A10StyleSheetC8setColor_03forC0ySo7UIColorC_SStF", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC8setColor_03forC0ySo7UIColorC_SStF", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } ], - "funcSelfKind": "NonMutating" - } - ], - "declKind": "Class", - "usr": "s:13ApptentiveKit0A10StyleSheetC", - "mangledName": "$s13ApptentiveKit0A10StyleSheetC", - "moduleName": "ApptentiveKit", - "deprecated": true, - "declAttributes": [ - "AccessControl", - "Available" - ], - "hasMissingDesignatedInitializers": true, - "conformances": [ + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, { "kind": "Conformance", - "name": "ApptentiveStyle", - "printedName": "ApptentiveStyle", - "usr": "s:13ApptentiveKit0A5StyleP", - "mangledName": "$s13ApptentiveKit0A5StyleP" - } - ] - }, - { - "kind": "Import", - "name": "CommonCrypto", - "printedName": "CommonCrypto", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "CoreTelephony", - "printedName": "CoreTelephony", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "StoreKit", - "printedName": "StoreKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "Transferable", + "printedName": "Transferable", + "children": [ + { + "kind": "TypeWitness", + "name": "Representation", + "printedName": "Representation", + "children": [ + { + "kind": "TypeNominal", + "name": "OpaqueTypeArchetype", + "printedName": "some CoreTransferable.TransferRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "TransferRepresentation", + "printedName": "CoreTransferable.TransferRepresentation", + "usr": "s:16CoreTransferable22TransferRepresentationP" + } + ] + } + ] + } + ], + "usr": "s:16CoreTransferable0B0P", + "mangledName": "$s16CoreTransferable0B0P" + } ] }, { "kind": "TypeDecl", - "name": "DialogButton", - "printedName": "DialogButton", - "children": [ + "name": "Double", + "printedName": "Double", + "declKind": "Struct", + "usr": "s:Sd", + "mangledName": "$sSd", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ { - "kind": "Var", - "name": "titleFont", - "printedName": "titleFont", + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "CustomDataCompatible", + "printedName": "CustomDataCompatible", + "usr": "s:13ApptentiveKit20CustomDataCompatibleP", + "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" + }, + { + "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": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "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": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" + }, + { + "kind": "Conformance", + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", "children": [ { - "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)titleFont", - "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "Dynamic", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", "children": [ { "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" + "name": "UInt64", + "printedName": "Swift.UInt64", + "usr": "s:s6UInt64V" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)titleFont", - "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setTitleFont:", - "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "set" + ] } - ] + ], + "usr": "s:SB", + "mangledName": "$sSB" }, { - "kind": "Var", - "name": "cornerRadius", - "printedName": "cornerRadius", + "kind": "Conformance", + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", "children": [ { - "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] } ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)cornerRadius", - "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "Dynamic", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, + { + "kind": "Conformance", + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)cornerRadius", - "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - }, + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setCornerRadius:", - "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "set" + ] } - ] + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" }, { - "kind": "Var", - "name": "borderWidth", - "printedName": "borderWidth", + "kind": "Conformance", + "name": "_ExpressibleByBuiltinFloatLiteral", + "printedName": "_ExpressibleByBuiltinFloatLiteral", + "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", + "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" + }, + { + "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": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", "children": [ { - "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] } ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderWidth", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "Dynamic", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderWidth", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Double.SIMD2Storage", + "usr": "s:Sd12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Double.SIMD4Storage", + "usr": "s:Sd12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Double.SIMD8Storage", + "usr": "s:Sd12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Double.SIMD16Storage", + "usr": "s:Sd13SIMD16StorageV" + } + ] }, { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, + "name": "SIMD32Storage", + "printedName": "Swift.Double.SIMD32Storage", + "usr": "s:Sd13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "SIMD64Storage", + "printedName": "Swift.Double.SIMD64Storage", + "usr": "s:Sd13SIMD64StorageV" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderWidth:", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "set" + ] } - ] + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" }, { - "kind": "Var", - "name": "borderColor", - "printedName": "borderColor", + "kind": "Conformance", + "name": "BitwiseCopyable", + "printedName": "BitwiseCopyable", + "usr": "s:s15BitwiseCopyableP", + "mangledName": "$ss15BitwiseCopyableP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", "children": [ { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderColor", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvp", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "HasInitialValue", - "HasStorage", - "Custom", - "Dynamic", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderColor", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvg", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" - }, + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderColor:", - "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvs", - "moduleName": "ApptentiveKit", - "implicit": true, - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "set" + ] } - ] + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { - "kind": "Var", - "name": "intrinsicContentSize", - "printedName": "intrinsicContentSize", + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", "children": [ { - "kind": "TypeNominal", - "name": "CGSize", - "printedName": "CoreFoundation.CGSize", - "usr": "c:@S@CGSize" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)intrinsicContentSize", - "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvp", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "intrinsicContentSize", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "CGSize", - "printedName": "CoreFoundation.CGSize", - "usr": "c:@S@CGSize" + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)intrinsicContentSize", - "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvg", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "intrinsicContentSize", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" + ] } - ] + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" }, { - "kind": "Function", - "name": "layoutSubviews", - "printedName": "layoutSubviews()", + "kind": "Conformance", + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" + }, + { + "kind": "Conformance", + "name": "Animatable", + "printedName": "Animatable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "AnimatableData", + "printedName": "AnimatableData", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ] } ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)layoutSubviews", - "mangledName": "$s13ApptentiveKit12DialogButtonC14layoutSubviewsyyF", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "layoutSubviews", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "usr": "s:7SwiftUI10AnimatableP", + "mangledName": "$s7SwiftUI10AnimatableP" }, { - "kind": "Function", - "name": "didMoveToWindow", - "printedName": "didMoveToWindow()", + "kind": "Conformance", + "name": "AtomicRepresentable", + "printedName": "AtomicRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "kind": "TypeWitness", + "name": "AtomicRepresentation", + "printedName": "AtomicRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "_Atomic64BitStorage", + "printedName": "Synchronization._Atomic64BitStorage", + "usr": "s:15Synchronization19_Atomic64BitStorageV" + } + ] } ], - "declKind": "Func", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)didMoveToWindow", - "mangledName": "$s13ApptentiveKit12DialogButtonC15didMoveToWindowyyF", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "didMoveToWindow", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "AccessControl", - "RawDocComment" - ], - "funcSelfKind": "NonMutating" + "usr": "s:15Synchronization19AtomicRepresentableP", + "mangledName": "$s15Synchronization19AtomicRepresentableP" } - ], - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton", - "mangledName": "$s13ApptentiveKit12DialogButtonC", - "moduleName": "ApptentiveKit", + ] + }, + { + "kind": "TypeDecl", + "name": "Float", + "printedName": "Float", + "declKind": "Struct", + "usr": "s:Sf", + "mangledName": "$sSf", + "moduleName": "Swift", "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:objc(cs)UIButton", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIButton", - "UIKit.UIControl", - "UIKit.UIView", - "UIKit.UIResponder", - "ObjectiveC.NSObject" + "Frozen" ], + "isExternal": true, "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "CustomDataCompatible", + "printedName": "CustomDataCompatible", + "usr": "s:13ApptentiveKit20CustomDataCompatibleP", + "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" + }, + { + "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": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "_CVarArgPassedAsDouble", + "printedName": "_CVarArgPassedAsDouble", + "usr": "s:s22_CVarArgPassedAsDoubleP", + "mangledName": "$ss22_CVarArgPassedAsDoubleP" + }, + { + "kind": "Conformance", + "name": "_CVarArgAligned", + "printedName": "_CVarArgAligned", + "usr": "s:s15_CVarArgAlignedP", + "mangledName": "$ss15_CVarArgAlignedP" }, { "kind": "Conformance", @@ -33638,17 +32100,10 @@ }, { "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" + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" }, { "kind": "Conformance", @@ -33666,115 +32121,182 @@ }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "TextOutputStreamable", + "printedName": "TextOutputStreamable", + "usr": "s:s20TextOutputStreamableP", + "mangledName": "$ss20TextOutputStreamableP" }, { "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "BinaryFloatingPoint", + "printedName": "BinaryFloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "RawSignificand", + "printedName": "RawSignificand", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt32", + "printedName": "Swift.UInt32", + "usr": "s:s6UInt32V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "RawExponent", + "printedName": "RawExponent", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "usr": "s:SB", + "mangledName": "$sSB" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "DismissButton", - "printedName": "DismissButton", - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)DismissButton", - "mangledName": "$s13ApptentiveKit13DismissButtonC", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ApptentiveKit.DialogButton", - "UIKit.UIButton", - "UIKit.UIControl", - "UIKit.UIView", - "UIKit.UIResponder", - "ObjectiveC.NSObject" - ], - "conformances": [ + "name": "ExpressibleByFloatLiteral", + "printedName": "ExpressibleByFloatLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "FloatLiteralType", + "printedName": "FloatLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:s25ExpressibleByFloatLiteralP", + "mangledName": "$ss25ExpressibleByFloatLiteralP" + }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "FloatingPoint", + "printedName": "FloatingPoint", + "children": [ + { + "kind": "TypeWitness", + "name": "Exponent", + "printedName": "Exponent", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SF", + "mangledName": "$sSF" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" + }, + { + "kind": "Conformance", + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "_ExpressibleByBuiltinFloatLiteral", + "printedName": "_ExpressibleByBuiltinFloatLiteral", + "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", + "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" }, { "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" }, { "kind": "Conformance", @@ -33782,167 +32304,316 @@ "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "InteractionButton", - "printedName": "InteractionButton", - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)InteractionButton", - "mangledName": "$s13ApptentiveKit17InteractionButtonC", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ApptentiveKit.DialogButton", - "UIKit.UIButton", - "UIKit.UIControl", - "UIKit.UIView", - "UIKit.UIResponder", - "ObjectiveC.NSObject" - ], - "conformances": [ + }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + "name": "SIMDScalar", + "printedName": "SIMDScalar", + "children": [ + { + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", + "children": [ + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD2Storage", + "printedName": "Swift.Float.SIMD2Storage", + "usr": "s:Sf12SIMD2StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD4Storage", + "printedName": "Swift.Float.SIMD4Storage", + "usr": "s:Sf12SIMD4StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD8Storage", + "printedName": "Swift.Float.SIMD8Storage", + "usr": "s:Sf12SIMD8StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD16Storage", + "printedName": "Swift.Float.SIMD16Storage", + "usr": "s:Sf13SIMD16StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD32Storage", + "printedName": "Swift.Float.SIMD32Storage", + "usr": "s:Sf13SIMD32StorageV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", + "children": [ + { + "kind": "TypeNominal", + "name": "SIMD64Storage", + "printedName": "Swift.Float.SIMD64Storage", + "usr": "s:Sf13SIMD64StorageV" + } + ] + } + ], + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + "name": "BitwiseCopyable", + "printedName": "BitwiseCopyable", + "usr": "s:s15BitwiseCopyableP", + "mangledName": "$ss15BitwiseCopyableP" }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, { "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", + "children": [ + { + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", + "children": [ + { + "kind": "TypeNominal", + "name": "Float", + "printedName": "Swift.Float", + "usr": "s:Sf" + } + ] + } + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" }, { "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "AtomicRepresentable", + "printedName": "AtomicRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "AtomicRepresentation", + "printedName": "AtomicRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "_Atomic32BitStorage", + "printedName": "Synchronization._Atomic32BitStorage", + "usr": "s:15Synchronization19_Atomic32BitStorageV" + } + ] + } + ], + "usr": "s:15Synchronization19AtomicRepresentableP", + "mangledName": "$s15Synchronization19AtomicRepresentableP" } ] }, { "kind": "TypeDecl", - "name": "YesButton", - "printedName": "YesButton", - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)YesButton", - "mangledName": "$s13ApptentiveKit9YesButtonC", - "moduleName": "ApptentiveKit", + "name": "Int", + "printedName": "Int", + "declKind": "Struct", + "usr": "s:Si", + "mangledName": "$sSi", + "moduleName": "Swift", "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ApptentiveKit.DialogButton", - "UIKit.UIButton", - "UIKit.UIControl", - "UIKit.UIView", - "UIKit.UIResponder", - "ObjectiveC.NSObject" + "Frozen" ], + "isExternal": true, "conformances": [ { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "FixedWidthInteger", + "printedName": "FixedWidthInteger", + "usr": "s:s17FixedWidthIntegerP", + "mangledName": "$ss17FixedWidthIntegerP" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "SignedInteger", + "printedName": "SignedInteger", + "usr": "s:SZ", + "mangledName": "$sSZ" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "_ExpressibleByBuiltinIntegerLiteral", + "printedName": "_ExpressibleByBuiltinIntegerLiteral", + "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + "name": "BinaryInteger", + "printedName": "BinaryInteger", + "children": [ + { + "kind": "TypeWitness", + "name": "Words", + "printedName": "Words", + "children": [ + { + "kind": "TypeNominal", + "name": "Words", + "printedName": "Swift.Int.Words", + "usr": "s:Si5WordsV" + } + ] + } + ], + "usr": "s:Sz", + "mangledName": "$sSz" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + "name": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "SignedNumeric", + "printedName": "SignedNumeric", + "usr": "s:s13SignedNumericP", + "mangledName": "$ss13SignedNumericP" }, { "kind": "Conformance", @@ -33953,122 +32624,174 @@ }, { "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "Numeric", + "printedName": "Numeric", + "children": [ + { + "kind": "TypeWitness", + "name": "Magnitude", + "printedName": "Magnitude", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ] + } + ], + "usr": "s:Sj", + "mangledName": "$sSj" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", + "children": [ + { + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:Sx", + "mangledName": "$sSx" + }, + { + "kind": "Conformance", + "name": "AdditiveArithmetic", + "printedName": "AdditiveArithmetic", + "usr": "s:s18AdditiveArithmeticP", + "mangledName": "$ss18AdditiveArithmeticP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByIntegerLiteral", + "printedName": "ExpressibleByIntegerLiteral", + "children": [ + { + "kind": "TypeWitness", + "name": "IntegerLiteralType", + "printedName": "IntegerLiteralType", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:s27ExpressibleByIntegerLiteralP", + "mangledName": "$ss27ExpressibleByIntegerLiteralP" + }, + { + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "CustomDataCompatible", + "printedName": "CustomDataCompatible", + "usr": "s:13ApptentiveKit20CustomDataCompatibleP", + "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "NoButton", - "printedName": "NoButton", - "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)NoButton", - "mangledName": "$s13ApptentiveKit8NoButtonC", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "Custom", - "AccessControl", - "RawDocComment", - "ObjC" - ], - "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton", - "hasMissingDesignatedInitializers": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ApptentiveKit.DialogButton", - "UIKit.UIButton", - "UIKit.UIControl", - "UIKit.UIView", - "UIKit.UIResponder", - "ObjectiveC.NSObject" - ], - "conformances": [ + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "CodingKeyRepresentable", + "printedName": "CodingKeyRepresentable", + "usr": "s:s22CodingKeyRepresentableP", + "mangledName": "$ss22CodingKeyRepresentableP" }, { "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObservingPublishing", - "printedName": "_KeyValueCodingAndObservingPublishing", - "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", - "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" }, { "kind": "Conformance", - "name": "_KeyValueCodingAndObserving", - "printedName": "_KeyValueCodingAndObserving", - "usr": "s:10Foundation27_KeyValueCodingAndObservingP", - "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + "name": "MirrorPath", + "printedName": "MirrorPath", + "usr": "s:s10MirrorPathP", + "mangledName": "$ss10MirrorPathP" }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "CustomDebugStringConvertible", - "printedName": "CustomDebugStringConvertible", - "usr": "s:s28CustomDebugStringConvertibleP", - "mangledName": "$ss28CustomDebugStringConvertibleP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" }, { "kind": "Conformance", @@ -34076,1417 +32799,705 @@ "printedName": "Sendable", "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "MobileCoreServices", - "printedName": "MobileCoreServices", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "QuickLookThumbnailing", - "printedName": "QuickLookThumbnailing", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "TypeDecl", - "name": "Sysctl", - "printedName": "Sysctl", - "children": [ + }, { - "kind": "TypeDecl", - "name": "Error", - "printedName": "Error", - "children": [ - { - "kind": "Var", - "name": "unknown", - "printedName": "unknown", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Sysctl.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO7unknownyA2EmF", - "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO7unknownyA2EmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "malformedUTF8", - "printedName": "malformedUTF8", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Sysctl.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO13malformedUTF8yA2EmF", - "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO13malformedUTF8yA2EmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "invalidSize", - "printedName": "invalidSize", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Sysctl.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO11invalidSizeyA2EmF", - "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO11invalidSizeyA2EmF", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Var", - "name": "posixError", - "printedName": "posixError", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> (Darwin.POSIXErrorCode) -> ApptentiveKit.Sysctl.Error", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(Darwin.POSIXErrorCode) -> ApptentiveKit.Sysctl.Error", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - }, - { - "kind": "TypeNominal", - "name": "POSIXErrorCode", - "printedName": "Darwin.POSIXErrorCode", - "usr": "c:@M@Darwin@E@POSIXErrorCode" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "ApptentiveKit.Sysctl.Error.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "Error", - "printedName": "ApptentiveKit.Sysctl.Error", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO05posixD0yAE6Darwin14POSIXErrorCodeOcAEmF", - "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO05posixD0yAE6Darwin14POSIXErrorCodeOcAEmF", - "moduleName": "ApptentiveKit" - } - ], - "declKind": "Enum", - "usr": "s:13ApptentiveKit6SysctlV5ErrorO", - "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "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": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" }, { - "kind": "Function", - "name": "data", - "printedName": "data(for:)", + "kind": "Conformance", + "name": "SIMDScalar", + "printedName": "SIMDScalar", "children": [ { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int8]", + "kind": "TypeWitness", + "name": "SIMDMaskScalar", + "printedName": "SIMDMaskScalar", "children": [ { "kind": "TypeNominal", - "name": "Int8", - "printedName": "Swift.Int8", - "usr": "s:s4Int8V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ], - "usr": "s:Sa" + ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV4data3forSays4Int8VGSays5Int32VG_tKFZ", - "mangledName": "$s13ApptentiveKit6SysctlV4data3forSays4Int8VGSays5Int32VG_tKFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "keys", - "printedName": "keys(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", + "kind": "TypeWitness", + "name": "SIMD2Storage", + "printedName": "SIMD2Storage", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "SIMD2Storage", + "printedName": "Swift.Int.SIMD2Storage", + "usr": "s:Si12SIMD2StorageV" } - ], - "usr": "s:Sa" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV4keys3forSays5Int32VGSS_tKFZ", - "mangledName": "$s13ApptentiveKit6SysctlV4keys3forSays5Int32VGSS_tKFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(ofType:forKeys:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + ] }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.Type", + "kind": "TypeWitness", + "name": "SIMD4Storage", + "printedName": "SIMD4Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD4Storage", + "printedName": "Swift.Int.SIMD4Storage", + "usr": "s:Si12SIMD4StorageV" } ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", + "kind": "TypeWitness", + "name": "SIMD8Storage", + "printedName": "SIMD8Storage", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "SIMD8Storage", + "printedName": "Swift.Int.SIMD8Storage", + "usr": "s:Si12SIMD8StorageV" } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_Says5Int32VGtKlFZ", - "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_Says5Int32VGtKlFZ", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(ofType:forKeys:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + ] }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.Type", + "kind": "TypeWitness", + "name": "SIMD16Storage", + "printedName": "SIMD16Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD16Storage", + "printedName": "Swift.Int.SIMD16Storage", + "usr": "s:Si13SIMD16StorageV" } ] }, { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", + "kind": "TypeWitness", + "name": "SIMD32Storage", + "printedName": "SIMD32Storage", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "SIMD32Storage", + "printedName": "Swift.Int.SIMD32Storage", + "usr": "s:Si13SIMD32StorageV" } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_s5Int32VdtKlFZ", - "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_s5Int32VdtKlFZ", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "value", - "printedName": "value(ofType:forName:)", - "children": [ - { - "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + ] }, { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "τ_0_0.Type", + "kind": "TypeWitness", + "name": "SIMD64Storage", + "printedName": "SIMD64Storage", "children": [ { "kind": "TypeNominal", - "name": "GenericTypeParam", - "printedName": "τ_0_0" + "name": "SIMD64Storage", + "printedName": "Swift.Int.SIMD64Storage", + "usr": "s:Si13SIMD64StorageV" } ] - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forNamexxm_SStKlFZ", - "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forNamexxm_SStKlFZ", - "moduleName": "ApptentiveKit", - "genericSig": "<τ_0_0>", - "sugared_genericSig": "", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" + "usr": "s:s10SIMDScalarP", + "mangledName": "$ss10SIMDScalarP" }, { - "kind": "Function", - "name": "string", - "printedName": "string(for:)", + "kind": "Conformance", + "name": "BitwiseCopyable", + "printedName": "BitwiseCopyable", + "usr": "s:s15BitwiseCopyableP", + "mangledName": "$ss15BitwiseCopyableP" + }, + { + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ], - "usr": "s:Sa" + ] } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV6string3forSSSays5Int32VG_tKFZ", - "mangledName": "$s13ApptentiveKit6SysctlV6string3forSSSays5Int32VG_tKFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" + "usr": "s:10Foundation18_FormatSpecifiableP", + "mangledName": "$s10Foundation18_FormatSpecifiableP" }, { - "kind": "Function", - "name": "string", - "printedName": "string(for:)", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "Array", - "printedName": "[Swift.Int32]", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } - ], - "usr": "s:Sa" - } - ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV6string3forSSs5Int32Vd_tKFZ", - "mangledName": "$s13ApptentiveKit6SysctlV6string3forSSs5Int32Vd_tKFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" - }, - { - "kind": "Function", - "name": "string", - "printedName": "string(for:)", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - }, - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + ] } ], - "declKind": "Func", - "usr": "s:13ApptentiveKit6SysctlV6string3forS2S_tKFZ", - "mangledName": "$s13ApptentiveKit6SysctlV6string3forS2S_tKFZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "throwing": true, - "funcSelfKind": "NonMutating" + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { - "kind": "Var", - "name": "hostName", - "printedName": "hostName", + "kind": "Conformance", + "name": "_FormatSpecifiable", + "printedName": "_FormatSpecifiable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV8hostNameSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV8hostNameSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "_Arg", + "printedName": "_Arg", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Int64", + "printedName": "Swift.Int64", + "usr": "s:s5Int64V" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV8hostNameSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV8hostNameSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:7SwiftUI18_FormatSpecifiableP", + "mangledName": "$s7SwiftUI18_FormatSpecifiableP" }, { - "kind": "Var", - "name": "machine", - "printedName": "machine", + "kind": "Conformance", + "name": "AtomicRepresentable", + "printedName": "AtomicRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV7machineSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV7machineSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "AtomicRepresentation", + "printedName": "AtomicRepresentation", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "_Atomic64BitStorage", + "printedName": "Synchronization._Atomic64BitStorage", + "usr": "s:15Synchronization19_Atomic64BitStorageV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV7machineSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV7machineSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:15Synchronization19AtomicRepresentableP", + "mangledName": "$s15Synchronization19AtomicRepresentableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Bool", + "printedName": "Bool", + "declKind": "Struct", + "usr": "s:Sb", + "mangledName": "$sSb", + "moduleName": "Swift", + "declAttributes": [ + "Frozen" + ], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { - "kind": "Var", - "name": "model", - "printedName": "model", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV5modelSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV5modelSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV5modelSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV5modelSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" - } - ] + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" }, { - "kind": "Var", - "name": "activeCPUs", - "printedName": "activeCPUs", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV10activeCPUss5Int32VvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV10activeCPUss5Int32VvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV10activeCPUss5Int32VvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV10activeCPUss5Int32VvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" - } - ] + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { - "kind": "Var", - "name": "osRelease", - "printedName": "osRelease", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV9osReleaseSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV9osReleaseSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV9osReleaseSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV9osReleaseSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" - } - ] + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { - "kind": "Var", - "name": "osType", - "printedName": "osType", + "kind": "Conformance", + "name": "CustomDataCompatible", + "printedName": "CustomDataCompatible", + "usr": "s:13ApptentiveKit20CustomDataCompatibleP", + "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByBuiltinBooleanLiteral", + "printedName": "_ExpressibleByBuiltinBooleanLiteral", + "usr": "s:s35_ExpressibleByBuiltinBooleanLiteralP", + "mangledName": "$ss35_ExpressibleByBuiltinBooleanLiteralP" + }, + { + "kind": "Conformance", + "name": "ExpressibleByBooleanLiteral", + "printedName": "ExpressibleByBooleanLiteral", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV6osTypeSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV6osTypeSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "BooleanLiteralType", + "printedName": "BooleanLiteralType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV6osTypeSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV6osTypeSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:s27ExpressibleByBooleanLiteralP", + "mangledName": "$ss27ExpressibleByBooleanLiteralP" }, { - "kind": "Var", - "name": "osVersion", - "printedName": "osVersion", + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "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": "LosslessStringConvertible", + "printedName": "LosslessStringConvertible", + "usr": "s:s25LosslessStringConvertibleP", + "mangledName": "$ss25LosslessStringConvertibleP" + }, + { + "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": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "BitwiseCopyable", + "printedName": "BitwiseCopyable", + "usr": "s:s15BitwiseCopyableP", + "mangledName": "$ss15BitwiseCopyableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV9osVersionSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV9osVersionSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV9osVersionSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV9osVersionSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { - "kind": "Var", - "name": "version", - "printedName": "version", + "kind": "Conformance", + "name": "AtomicRepresentable", + "printedName": "AtomicRepresentable", "children": [ { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "declKind": "Var", - "usr": "s:13ApptentiveKit6SysctlV7versionSSvpZ", - "mangledName": "$s13ApptentiveKit6SysctlV7versionSSvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "AtomicRepresentation", + "printedName": "AtomicRepresentation", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "_Atomic8BitStorage", + "printedName": "Synchronization._Atomic8BitStorage", + "usr": "s:15Synchronization18_Atomic8BitStorageV" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit6SysctlV7versionSSvgZ", - "mangledName": "$s13ApptentiveKit6SysctlV7versionSSvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "accessorKind": "get" + ] } - ] + ], + "usr": "s:15Synchronization19AtomicRepresentableP", + "mangledName": "$s15Synchronization19AtomicRepresentableP" } - ], - "declKind": "Struct", - "usr": "s:13ApptentiveKit6SysctlV", - "mangledName": "$s13ApptentiveKit6SysctlV", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" ] }, { "kind": "TypeDecl", - "name": "ApptentiveNavigationController", - "printedName": "ApptentiveNavigationController", - "children": [ + "name": "Date", + "printedName": "Date", + "declKind": "Struct", + "usr": "s:10Foundation4DateV", + "mangledName": "$s10Foundation4DateV", + "moduleName": "Foundation", + "intro_Macosx": "10.10", + "intro_iOS": "8.0", + "intro_tvOS": "9.0", + "intro_watchOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": true, + "conformances": [ { - "kind": "Var", - "name": "preferredStatusBarStyle", - "printedName": "preferredStatusBarStyle", + "kind": "Conformance", + "name": "Comparable", + "printedName": "Comparable", + "usr": "s:SL", + "mangledName": "$sSL" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "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": "ReferenceConvertible", + "printedName": "ReferenceConvertible", "children": [ { - "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(py)preferredStatusBarStyle", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvp", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "preferredStatusBarStyle", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "AccessControl", - "RawDocComment" - ], - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", "children": [ { "kind": "TypeNominal", - "name": "UIStatusBarStyle", - "printedName": "UIKit.UIStatusBarStyle", - "usr": "c:@E@UIStatusBarStyle" + "name": "NSDate", + "printedName": "Foundation.NSDate", + "usr": "c:objc(cs)NSDate" } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)preferredStatusBarStyle", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvg", - "moduleName": "ApptentiveKit", - "overriding": true, - "objc_name": "preferredStatusBarStyle", - "declAttributes": [ - "Dynamic", - "ObjC" - ], - "accessorKind": "get" + ] } - ] + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" }, { - "kind": "Var", - "name": "prefersLargeHeader", - "printedName": "prefersLargeHeader", + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", "children": [ { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Var", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cpy)prefersLargeHeader", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "Custom", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" - } - ], - "declKind": "Accessor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)prefersLargeHeader", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "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": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)setPrefersLargeHeader:", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvsZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final", - "ObjC" - ], - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", "children": [ { "kind": "TypeNominal", - "name": "Void", - "printedName": "()" + "name": "NSDate", + "printedName": "Foundation.NSDate", + "usr": "c:objc(cs)NSDate" } - ], - "declKind": "Accessor", - "usr": "s:13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "Final" - ], - "accessorKind": "_modify" + ] } - ] + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { - "kind": "Constructor", - "name": "init", - "printedName": "init(navigationBarClass:toolbarClass:)", + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Strideable", + "printedName": "Strideable", "children": [ { - "kind": "TypeNominal", - "name": "ApptentiveNavigationController", - "printedName": "ApptentiveKit.ApptentiveNavigationController", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any AnyObject.Type)?", - "children": [ - { - "kind": "TypeNominal", - "name": "ExistentialMetatype", - "printedName": "any AnyObject.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ] - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "(any AnyObject.Type)?", + "kind": "TypeWitness", + "name": "Stride", + "printedName": "Stride", "children": [ { "kind": "TypeNominal", - "name": "ExistentialMetatype", - "printedName": "any AnyObject.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ProtocolComposition", - "printedName": "AnyObject" - } - ] + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" } - ], - "usr": "s:Sq" + ] } ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNavigationBarClass:toolbarClass:", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18navigationBarClass07toolbarG0ACyXlXpSg_AFtcfc", - "moduleName": "ApptentiveKit", - "overriding": true, - "implicit": true, - "intro_iOS": "5.0", - "objc_name": "initWithNavigationBarClass:toolbarClass:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override", - "Available" - ], - "init_kind": "Designated" - }, + "usr": "s:Sx", + "mangledName": "$sSx" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIViewController", + "printedName": "UIViewController", + "children": [ { - "kind": "Constructor", - "name": "init", - "printedName": "init(rootViewController:)", + "kind": "Var", + "name": "apptentiveModalPresentationStyle", + "printedName": "apptentiveModalPresentationStyle", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveNavigationController", - "printedName": "ApptentiveKit.ApptentiveNavigationController", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" - }, - { - "kind": "TypeNominal", - "name": "UIViewController", - "printedName": "UIKit.UIViewController", - "usr": "c:objc(cs)UIViewController" + "name": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" } ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithRootViewController:", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC08rootViewD0ACSo06UIViewD0C_tcfc", + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(py)apptentiveModalPresentationStyle", + "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvp", "moduleName": "ApptentiveKit", - "overriding": true, - "implicit": true, - "objc_name": "initWithRootViewController:", + "deprecated": true, "declAttributes": [ "Dynamic", - "ObjC", + "Preconcurrency", "Custom", - "Override" + "AccessControl", + "ObjC", + "Available" ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(nibName:bundle:)", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveNavigationController", - "printedName": "ApptentiveKit.ApptentiveNavigationController", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" - }, - { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "Swift.String?", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:Sq" - }, + "isFromExtension": 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": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" } ], - "usr": "s:Sq" - } - ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNibName:bundle:", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc", - "moduleName": "ApptentiveKit", - "overriding": true, - "implicit": true, - "objc_name": "initWithNibName:bundle:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Override" - ], - "init_kind": "Designated" - }, - { - "kind": "Constructor", - "name": "init", - "printedName": "init(coder:)", - "children": [ + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)apptentiveModalPresentationStyle", + "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvg", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeNominal", - "name": "Optional", - "printedName": "ApptentiveKit.ApptentiveNavigationController?", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "ApptentiveNavigationController", - "printedName": "ApptentiveKit.ApptentiveNavigationController", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" } ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "NSCoder", - "printedName": "Foundation.NSCoder", - "usr": "c:objc(cs)NSCoder" + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)setApptentiveModalPresentationStyle:", + "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvs", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "set" } - ], - "declKind": "Constructor", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithCoder:", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC5coderACSgSo7NSCoderC_tcfc", - "moduleName": "ApptentiveKit", - "overriding": true, - "implicit": true, - "objc_name": "initWithCoder:", - "declAttributes": [ - "Dynamic", - "ObjC", - "Custom", - "Required" - ], - "init_kind": "Designated" + ] } ], "declKind": "Class", - "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController", - "mangledName": "$s13ApptentiveKit0A20NavigationControllerC", - "moduleName": "ApptentiveKit", + "usr": "c:objc(cs)UIViewController", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIViewController", "declAttributes": [ + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", "Custom", - "AccessControl", - "RawDocComment", - "ObjC" + "Dynamic" ], - "superclassUsr": "c:objc(cs)UINavigationController", + "superclassUsr": "c:objc(cs)UIResponder", + "isExternal": true, "inheritsConvenienceInitializers": true, "superclassNames": [ - "UIKit.UINavigationController", - "UIKit.UIViewController", "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -35543,6 +33554,13 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, { "kind": "Conformance", "name": "UITraitChangeObservable", @@ -35552,255 +33570,255 @@ } ] }, - { - "kind": "Import", - "name": "Foundation", - "printedName": "Foundation", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "UIKit", - "printedName": "UIKit", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "SwiftUI", - "printedName": "SwiftUI", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, - { - "kind": "Import", - "name": "DeveloperToolsSupport", - "printedName": "DeveloperToolsSupport", - "declKind": "Import", - "moduleName": "ApptentiveKit" - }, { "kind": "TypeDecl", - "name": "String", - "printedName": "String", + "name": "Name", + "printedName": "Name", "children": [ { - "kind": "Function", - "name": "attributedString", - "printedName": "attributedString(withFont:alignment:)", + "kind": "Var", + "name": "apptentiveEventEngaged", + "printedName": "apptentiveEventEngaged", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "Foundation.NSMutableAttributedString?", - "children": [ - { - "kind": "TypeNominal", - "name": "NSMutableAttributedString", - "printedName": "Foundation.NSMutableAttributedString", - "usr": "c:objc(cs)NSMutableAttributedString" - } - ], - "usr": "s:Sq" - }, - { - "kind": "TypeNominal", - "name": "UIFont", - "printedName": "UIKit.UIFont", - "usr": "c:objc(cs)UIFont" - }, - { - "kind": "TypeNominal", - "name": "HTMLTextAlignment", - "printedName": "ApptentiveKit.HTMLTextAlignment", - "usr": "s:13ApptentiveKit17HTMLTextAlignmentO" + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" } ], - "declKind": "Func", - "usr": "s:SS13ApptentiveKitE16attributedString8withFont9alignmentSo019NSMutableAttributedD0CSgSo6UIFontC_AA17HTMLTextAlignmentOtF", - "mangledName": "$sSS13ApptentiveKitE16attributedString8withFont9alignmentSo019NSMutableAttributedD0CSgSo6UIFontC_AA17HTMLTextAlignmentOtF", + "declKind": "Var", + "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ", + "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ", "moduleName": "ApptentiveKit", + "static": true, "declAttributes": [ - "AccessControl" + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment" ], "isFromExtension": true, - "funcSelfKind": "NonMutating" + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "Foundation.NSNotification.Name", + "usr": "c:@T@NSNotificationName" + } + ], + "declKind": "Accessor", + "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ", + "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] } ], "declKind": "Struct", - "usr": "s:SS", - "mangledName": "$sSS", - "moduleName": "Swift", + "usr": "c:@T@NSNotificationName", + "moduleName": "Foundation", "declAttributes": [ - "EagerMove", - "Frozen" + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "SynthesizedProtocol", + "Sendable" ], + "isFromExtension": true, "isExternal": true, "conformances": [ { "kind": "Conformance", - "name": "CustomDataCompatible", - "printedName": "CustomDataCompatible", - "usr": "s:13ApptentiveKit20CustomDataCompatibleP", - "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "Decodable", - "printedName": "Decodable", - "usr": "s:Se", - "mangledName": "$sSe" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "Encodable", - "printedName": "Encodable", - "usr": "s:SE", - "mangledName": "$sSE" + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSString", + "printedName": "Foundation.NSString", + "usr": "c:objc(cs)NSString" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" }, { "kind": "Conformance", - "name": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "_HasContiguousBytes", - "printedName": "_HasContiguousBytes", - "usr": "s:s19_HasContiguousBytesP", - "mangledName": "$ss19_HasContiguousBytesP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" + "name": "_SwiftNewtypeWrapper", + "printedName": "_SwiftNewtypeWrapper", + "usr": "s:s20_SwiftNewtypeWrapperP", + "mangledName": "$ss20_SwiftNewtypeWrapperP" }, { "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + "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": "TextOutputStream", - "printedName": "TextOutputStream", - "usr": "s:s16TextOutputStreamP", - "mangledName": "$ss16TextOutputStreamP" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" + "name": "_HasCustomAnyHashableRepresentation", + "printedName": "_HasCustomAnyHashableRepresentation", + "usr": "s:s35_HasCustomAnyHashableRepresentationP", + "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FileManager", + "printedName": "FileManager", + "declKind": "Class", + "usr": "c:objc(cs)NSFileManager", + "moduleName": "Foundation", + "isOpen": true, + "objc_name": "NSFileManager", + "declAttributes": [ + "ObjC", + "NonSendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral", - "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP", - "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral", - "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP", - "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinStringLiteral", - "printedName": "_ExpressibleByBuiltinStringLiteral", - "usr": "s:s34_ExpressibleByBuiltinStringLiteralP", - "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "ExpressibleByStringLiteral", - "printedName": "ExpressibleByStringLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "StringLiteralType", - "printedName": "StringLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s26ExpressibleByStringLiteralP", - "mangledName": "$ss26ExpressibleByStringLiteralP" + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" }, { "kind": "Conformance", - "name": "ExpressibleByExtendedGraphemeClusterLiteral", - "printedName": "ExpressibleByExtendedGraphemeClusterLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "ExtendedGraphemeClusterLiteralType", - "printedName": "ExtendedGraphemeClusterLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP", - "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP" + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" }, { "kind": "Conformance", - "name": "ExpressibleByUnicodeScalarLiteral", - "printedName": "ExpressibleByUnicodeScalarLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "UnicodeScalarLiteralType", - "printedName": "UnicodeScalarLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ] - } - ], - "usr": "s:s33ExpressibleByUnicodeScalarLiteralP", - "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP" + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" }, { "kind": "Conformance", @@ -35811,427 +33829,636 @@ }, { "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", - "name": "BidirectionalCollection", - "printedName": "BidirectionalCollection", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIButton", + "printedName": "UIButton", + "children": [ + { + "kind": "Var", + "name": "apptentivePillRadius", + "printedName": "apptentivePillRadius", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentivePillRadius", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentivePillRadius", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "apptentiveCornerRadius", + "printedName": "apptentiveCornerRadius", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentiveCornerRadius", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentiveCornerRadius", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)setApptentiveCornerRadius:", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", - "children": [ - { - "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" - } - ], - "usr": "s:SI" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE22apptentiveCornerRadius14CoreFoundation7CGFloatVvMZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:SK", - "mangledName": "$sSK" + ] }, { - "kind": "Conformance", - "name": "Collection", - "printedName": "Collection", + "kind": "Var", + "name": "apptentiveClose", + "printedName": "apptentiveClose", "children": [ { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Index", - "printedName": "Index", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIButton?", "children": [ { "kind": "TypeNominal", - "name": "Index", - "printedName": "Swift.String.Index", - "usr": "s:SS5IndexV" + "name": "UIButton", + "printedName": "UIKit.UIButton", + "usr": "c:objc(cs)UIButton" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" + "name": "Optional", + "printedName": "UIKit.UIButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIButton", + "printedName": "UIKit.UIButton", + "usr": "c:objc(cs)UIButton" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" - } - ] - }, - { - "kind": "TypeWitness", - "name": "Indices", - "printedName": "Indices", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "DefaultIndices", - "printedName": "Swift.DefaultIndices", + "name": "Optional", + "printedName": "UIKit.UIButton?", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "UIButton", + "printedName": "UIKit.UIButton", + "usr": "c:objc(cs)UIButton" } ], - "usr": "s:SI" - } - ] - } - ], - "usr": "s:Sl", - "mangledName": "$sSl" - }, - { - "kind": "Conformance", - "name": "Sequence", - "printedName": "Sequence", - "children": [ - { - "kind": "TypeWitness", - "name": "Element", - "printedName": "Element", - "children": [ - { - "kind": "TypeNominal", - "name": "Character", - "printedName": "Swift.Character", - "usr": "s:SJ" + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "Iterator", - "printedName": "Iterator", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Iterator", - "printedName": "Swift.String.Iterator", - "usr": "s:SS8IteratorV" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:ST", - "mangledName": "$sST" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" + ] }, { - "kind": "Conformance", - "name": "StringProtocol", - "printedName": "StringProtocol", + "kind": "TypeDecl", + "name": "ApptentiveButtonStyle", + "printedName": "ApptentiveButtonStyle", "children": [ { - "kind": "TypeWitness", - "name": "UTF8View", - "printedName": "UTF8View", + "kind": "Var", + "name": "pill", + "printedName": "pill", "children": [ { - "kind": "TypeNominal", - "name": "UTF8View", - "printedName": "Swift.String.UTF8View", - "usr": "s:SS8UTF8ViewV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> UIKit.UIButton.ApptentiveButtonStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + } + ] + } + ] } + ], + "declKind": "EnumElement", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" ] }, { - "kind": "TypeWitness", - "name": "UTF16View", - "printedName": "UTF16View", + "kind": "Var", + "name": "radius", + "printedName": "radius", "children": [ { - "kind": "TypeNominal", - "name": "UTF16View", - "printedName": "Swift.String.UTF16View", - "usr": "s:SS9UTF16ViewV" + "kind": "TypeFunc", + "name": "Function", + "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> (CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + } + ] + } + ] } + ], + "declKind": "EnumElement", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE14CoreFoundation7CGFloatVcAEmF", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE12CoreGraphics7CGFloatVcAEmF", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "RawDocComment" ] }, { - "kind": "TypeWitness", - "name": "UnicodeScalarView", - "printedName": "UnicodeScalarView", + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", "children": [ { "kind": "TypeNominal", - "name": "UnicodeScalarView", - "printedName": "Swift.String.UnicodeScalarView", - "usr": "s:SS17UnicodeScalarViewV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", - "children": [ + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + }, + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" } - ] + ], + "declKind": "Func", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO2eeoiySbAE_AEtFZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO2eeoiySbAE_AEtFZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" } ], - "usr": "s:Sy", - "mangledName": "$sSy" + "declKind": "Enum", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO", + "moduleName": "ApptentiveKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] }, { - "kind": "Conformance", - "name": "ExpressibleByStringInterpolation", - "printedName": "ExpressibleByStringInterpolation", + "kind": "Var", + "name": "apptentiveStyle", + "printedName": "apptentiveStyle", "children": [ { - "kind": "TypeWitness", - "name": "StringInterpolation", - "printedName": "StringInterpolation", - "children": [ - { - "kind": "TypeNominal", - "name": "DefaultStringInterpolation", - "printedName": "Swift.DefaultStringInterpolation", - "usr": "s:s26DefaultStringInterpolationV" - } - ] + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" } ], - "usr": "s:s32ExpressibleByStringInterpolationP", - "mangledName": "$ss32ExpressibleByStringInterpolationP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "kind": "Conformance", - "name": "RangeReplaceableCollection", - "printedName": "RangeReplaceableCollection", - "children": [ + "declKind": "Var", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SubSequence", - "printedName": "SubSequence", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Substring", - "printedName": "Swift.Substring", - "usr": "s:Ss" + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" } - ] - } - ], - "usr": "s:Sm", - "mangledName": "$sSm" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ApptentiveButtonStyle", + "printedName": "UIKit.UIButton.ApptentiveButtonStyle", + "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "Transferable", - "printedName": "Transferable", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "Representation", - "printedName": "Representation", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "OpaqueTypeArchetype", - "printedName": "some CoreTransferable.TransferRepresentation", - "children": [ - { - "kind": "TypeNominal", - "name": "TransferRepresentation", - "printedName": "CoreTransferable.TransferRepresentation", - "usr": "s:16CoreTransferable22TransferRepresentationP" - }, - { - "kind": "TypeNominal", - "name": "Sendable", - "printedName": "Swift.Sendable", - "usr": "s:s8SendableP" - } - ] + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ", + "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:16CoreTransferable0B0P", - "mangledName": "$s16CoreTransferable0B0P" + ] } - ] - }, - { - "kind": "TypeDecl", - "name": "URLSession", - "printedName": "URLSession", + ], "declKind": "Class", - "usr": "c:objc(cs)NSURLSession", - "moduleName": "Foundation", + "usr": "c:objc(cs)UIButton", + "moduleName": "UIKit", "isOpen": true, - "intro_iOS": "7.0", - "objc_name": "NSURLSession", + "intro_iOS": "2.0", + "objc_name": "UIButton", "declAttributes": [ + "Preconcurrency", "Available", "ObjC", - "SynthesizedProtocol", "NonSendable", - "Sendable", + "Custom", "Dynamic" ], - "superclassUsr": "c:objc(cs)NSObject", + "superclassUsr": "c:objc(cs)UIControl", "isExternal": true, "inheritsConvenienceInitializers": true, "superclassNames": [ + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", @@ -36281,572 +34508,312 @@ "printedName": "CustomDebugStringConvertible", "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Double", - "printedName": "Double", - "declKind": "Struct", - "usr": "s:Sd", - "mangledName": "$sSd", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "CustomDataCompatible", - "printedName": "CustomDataCompatible", - "usr": "s:13ApptentiveKit20CustomDataCompatibleP", - "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" - }, - { - "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": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" - }, - { - "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "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": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" - }, - { - "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt64", - "printedName": "Swift.UInt64", - "usr": "s:s6UInt64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", - "children": [ - { - "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" - } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", - "children": [ - { - "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", - "children": [ - { - "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:SF", - "mangledName": "$sSF" - }, - { - "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" - }, - { - "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", - "children": [ - { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ - { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" - }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" }, { "kind": "Conformance", "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ - { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ - { - "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Double.SIMD2Storage", - "usr": "s:Sd12SIMD2StorageV" - } - ] - }, + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UITableView", + "printedName": "UITableView", + "children": [ + { + "kind": "Var", + "name": "apptentiveStyle", + "printedName": "apptentiveStyle", + "children": [ { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ - { - "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Double.SIMD4Storage", - "usr": "s:Sd12SIMD4StorageV" - } - ] - }, + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cpy)apptentiveStyle", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivpZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Preconcurrency", + "Custom", + "AccessControl", + "ObjC", + "Available" + ], + "isFromExtension": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Double.SIMD8Storage", - "usr": "s:Sd12SIMD8StorageV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cm)apptentiveStyle", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivgZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Double.SIMD16Storage", - "usr": "s:Sd13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Double.SIMD32Storage", - "usr": "s:Sd13SIMD32StorageV" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cm)setApptentiveStyle:", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivsZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Double.SIMD64Storage", - "usr": "s:Sd13SIMD64StorageV" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + ] }, { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "kind": "Var", + "name": "apptentiveQuestionSeparatorHeight", + "printedName": "apptentiveQuestionSeparatorHeight", "children": [ { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", - "children": [ - { - "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" - } - ] + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + "declKind": "Var", + "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvpZ", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "VectorArithmetic", - "printedName": "VectorArithmetic", - "usr": "s:7SwiftUI16VectorArithmeticP", - "mangledName": "$s7SwiftUI16VectorArithmeticP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvgZ", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" } - ] - } - ], - "usr": "s:7SwiftUI18_FormatSpecifiableP", - "mangledName": "$s7SwiftUI18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "Animatable", - "printedName": "Animatable", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvsZ", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "AnimatableData", - "printedName": "AnimatableData", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Double", - "printedName": "Swift.Double", - "usr": "s:Sd" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvMZ", + "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:7SwiftUI10AnimatableP", - "mangledName": "$s7SwiftUI10AnimatableP" + ] } - ] - }, - { - "kind": "TypeDecl", - "name": "Float", - "printedName": "Float", - "declKind": "Struct", - "usr": "s:Sf", - "mangledName": "$sSf", - "moduleName": "Swift", + ], + "declKind": "Class", + "usr": "c:objc(cs)UITableView", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UITableView", "declAttributes": [ - "Frozen" + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" ], + "superclassUsr": "c:objc(cs)UIScrollView", "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIScrollView", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], "conformances": [ { "kind": "Conformance", - "name": "CustomDataCompatible", - "printedName": "CustomDataCompatible", - "usr": "s:13ApptentiveKit20CustomDataCompatibleP", - "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" - }, - { - "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": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "_CVarArgPassedAsDouble", - "printedName": "_CVarArgPassedAsDouble", - "usr": "s:s22_CVarArgPassedAsDoubleP", - "mangledName": "$ss22_CVarArgPassedAsDoubleP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "_CVarArgAligned", - "printedName": "_CVarArgAligned", - "usr": "s:s15_CVarArgAlignedP", - "mangledName": "$ss15_CVarArgAlignedP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", @@ -36857,10 +34824,17 @@ }, { "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" + "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", @@ -36878,77 +34852,175 @@ }, { "kind": "Conformance", - "name": "TextOutputStreamable", - "printedName": "TextOutputStreamable", - "usr": "s:s20TextOutputStreamableP", - "mangledName": "$ss20TextOutputStreamableP" + "name": "UITraitChangeObservable", + "printedName": "UITraitChangeObservable", + "usr": "s:5UIKit23UITraitChangeObservableP", + "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { "kind": "Conformance", - "name": "BinaryFloatingPoint", - "printedName": "BinaryFloatingPoint", + "name": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Style", + "printedName": "Style", + "children": [ + { + "kind": "Var", + "name": "apptentive", + "printedName": "apptentive", "children": [ { - "kind": "TypeWitness", - "name": "RawSignificand", - "printedName": "RawSignificand", + "kind": "TypeNominal", + "name": "Style", + "printedName": "UIKit.UITableView.Style", + "usr": "c:@E@UITableViewStyle" + } + ], + "declKind": "Var", + "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ", + "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "UInt32", - "printedName": "Swift.UInt32", - "usr": "s:s6UInt32V" + "name": "Style", + "printedName": "UIKit.UITableView.Style", + "usr": "c:@E@UITableViewStyle" } - ] + ], + "declKind": "Accessor", + "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ", + "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "RawExponent", - "printedName": "RawExponent", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Style", + "printedName": "UIKit.UITableView.Style", + "usr": "c:@E@UITableViewStyle" } - ] - } - ], - "usr": "s:SB", - "mangledName": "$sSB" - }, - { - "kind": "Conformance", - "name": "ExpressibleByFloatLiteral", - "printedName": "ExpressibleByFloatLiteral", - "children": [ + ], + "declKind": "Accessor", + "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ", + "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "FloatLiteralType", - "printedName": "FloatLiteralType", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ", + "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s25ExpressibleByFloatLiteralP", - "mangledName": "$ss25ExpressibleByFloatLiteralP" + ] + } + ], + "declKind": "Enum", + "usr": "c:@E@UITableViewStyle", + "moduleName": "UIKit", + "objc_name": "UITableViewStyle", + "declAttributes": [ + "SynthesizedProtocol", + "ObjC", + "SynthesizedProtocol", + "Sendable", + "NonSendable", + "Dynamic" + ], + "isFromExtension": true, + "enumRawTypeName": "Int", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "FloatingPoint", - "printedName": "FloatingPoint", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { "kind": "TypeWitness", - "name": "Exponent", - "printedName": "Exponent", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", @@ -36959,87 +35031,198 @@ ] } ], - "usr": "s:SF", - "mangledName": "$sSF" + "usr": "s:SY", + "mangledName": "$sSY" }, { "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIModalPresentationStyle", + "printedName": "UIModalPresentationStyle", + "children": [ + { + "kind": "Var", + "name": "apptentive", + "printedName": "apptentive", "children": [ { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "kind": "TypeNominal", + "name": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" + } + ], + "declKind": "Var", + "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ", + "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" } - ] + ], + "declKind": "Accessor", + "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ", + "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIModalPresentationStyle", + "printedName": "UIKit.UIModalPresentationStyle", + "usr": "c:@E@UIModalPresentationStyle" + } + ], + "declKind": "Accessor", + "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ", + "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ", + "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, + ] + } + ], + "declKind": "Enum", + "usr": "c:@E@UIModalPresentationStyle", + "moduleName": "UIKit", + "objc_name": "UIModalPresentationStyle", + "declAttributes": [ + "SynthesizedProtocol", + "ObjC", + "SynthesizedProtocol", + "Sendable", + "NonSendable", + "Dynamic" + ], + "enumRawTypeName": "Int", + "isExternal": true, + "conformances": [ { "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", + "name": "RawRepresentable", + "printedName": "RawRepresentable", "children": [ { "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "name": "RawValue", + "printedName": "RawValue", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" } ] } ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinFloatLiteral", - "printedName": "_ExpressibleByBuiltinFloatLiteral", - "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP", - "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP" + "usr": "s:SY", + "mangledName": "$sSY" }, { "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" }, { "kind": "Conformance", @@ -37050,291 +35233,429 @@ }, { "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIBarButtonItem", + "printedName": "UIBarButtonItem", + "children": [ { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", + "kind": "Var", + "name": "apptentiveClose", + "printedName": "apptentiveClose", "children": [ { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", - "children": [ - { - "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" - } - ] + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveClose", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int32", - "printedName": "Swift.Int32", - "usr": "s:s5Int32V" + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveClose", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Float.SIMD2Storage", - "usr": "s:Sf12SIMD2StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Float.SIMD4Storage", - "usr": "s:Sf12SIMD4StorageV" + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveClose:", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Float.SIMD8Storage", - "usr": "s:Sf12SIMD8StorageV" + "name": "Void", + "printedName": "()" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:So15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appentiveRefresh", + "printedName": "appentiveRefresh", + "children": [ { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)appentiveRefresh", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE16appentiveRefreshABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Float.SIMD16Storage", - "usr": "s:Sf13SIMD16StorageV" + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)appentiveRefresh", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE16appentiveRefreshABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Float.SIMD32Storage", - "usr": "s:Sf13SIMD32StorageV" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setAppentiveRefresh:", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE16appentiveRefreshABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ - { - "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Float.SIMD64Storage", - "usr": "s:Sf13SIMD64StorageV" + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So15UIBarButtonItemC13ApptentiveKitE16appentiveRefreshABvMZ", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE16appentiveRefreshABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + ] }, { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "kind": "Var", + "name": "apptentiveProfileEdit", + "printedName": "apptentiveProfileEdit", "children": [ { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveProfileEdit", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] - } - ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveProfileEdit", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBarButtonItem", + "printedName": "UIKit.UIBarButtonItem", + "usr": "c:objc(cs)UIBarButtonItem" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "VectorArithmetic", - "printedName": "VectorArithmetic", - "usr": "s:7SwiftUI16VectorArithmeticP", - "mangledName": "$s7SwiftUI16VectorArithmeticP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveProfileEdit:", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Float", - "printedName": "Swift.Float", - "usr": "s:Sf" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ", + "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:7SwiftUI18_FormatSpecifiableP", - "mangledName": "$s7SwiftUI18_FormatSpecifiableP" + ] } - ] - }, - { - "kind": "TypeDecl", - "name": "Int", - "printedName": "Int", - "declKind": "Struct", - "usr": "s:Si", - "mangledName": "$sSi", - "moduleName": "Swift", + ], + "declKind": "Class", + "usr": "c:objc(cs)UIBarButtonItem", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIBarButtonItem", "declAttributes": [ - "Frozen" + "Preconcurrency", + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" ], + "superclassUsr": "c:objc(cs)UIBarItem", "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIBarItem", + "ObjectiveC.NSObject" + ], "conformances": [ { "kind": "Conformance", - "name": "FixedWidthInteger", - "printedName": "FixedWidthInteger", - "usr": "s:s17FixedWidthIntegerP", - "mangledName": "$ss17FixedWidthIntegerP" + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" }, { "kind": "Conformance", - "name": "SignedInteger", - "printedName": "SignedInteger", - "usr": "s:SZ", - "mangledName": "$sSZ" + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" }, { "kind": "Conformance", - "name": "_ExpressibleByBuiltinIntegerLiteral", - "printedName": "_ExpressibleByBuiltinIntegerLiteral", - "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP" + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" }, { "kind": "Conformance", - "name": "BinaryInteger", - "printedName": "BinaryInteger", - "children": [ - { - "kind": "TypeWitness", - "name": "Words", - "printedName": "Words", - "children": [ - { - "kind": "TypeNominal", - "name": "Words", - "printedName": "Swift.Int.Words", - "usr": "s:Si5WordsV" - } - ] - } - ], - "usr": "s:Sz", - "mangledName": "$sSz" + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" }, { "kind": "Conformance", - "name": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" }, { "kind": "Conformance", - "name": "SignedNumeric", - "printedName": "SignedNumeric", - "usr": "s:s13SignedNumericP", - "mangledName": "$ss13SignedNumericP" + "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", @@ -37345,509 +35666,459 @@ }, { "kind": "Conformance", - "name": "Numeric", - "printedName": "Numeric", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIImage", + "printedName": "UIImage", + "children": [ + { + "kind": "Var", + "name": "apptentiveMessageAttachmentButton", + "printedName": "apptentiveMessageAttachmentButton", "children": [ { - "kind": "TypeWitness", - "name": "Magnitude", - "printedName": "Magnitude", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "UInt", - "printedName": "Swift.UInt", - "usr": "s:Su" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:Sj", - "mangledName": "$sSj" - }, - { - "kind": "Conformance", - "name": "Strideable", - "printedName": "Strideable", - "children": [ + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageAttachmentButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "Stride", - "printedName": "Stride", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] - } - ], - "usr": "s:Sx", - "mangledName": "$sSx" - }, - { - "kind": "Conformance", - "name": "AdditiveArithmetic", - "printedName": "AdditiveArithmetic", - "usr": "s:s18AdditiveArithmeticP", - "mangledName": "$ss18AdditiveArithmeticP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByIntegerLiteral", - "printedName": "ExpressibleByIntegerLiteral", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageAttachmentButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "IntegerLiteralType", - "printedName": "IntegerLiteralType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" - } - ] - } - ], - "usr": "s:s27ExpressibleByIntegerLiteralP", - "mangledName": "$ss27ExpressibleByIntegerLiteralP" - }, - { - "kind": "Conformance", - "name": "Comparable", - "printedName": "Comparable", - "usr": "s:SL", - "mangledName": "$sSL" - }, - { - "kind": "Conformance", - "name": "CustomDataCompatible", - "printedName": "CustomDataCompatible", - "usr": "s:13ApptentiveKit20CustomDataCompatibleP", - "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" - }, - { - "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": "CodingKeyRepresentable", - "printedName": "CodingKeyRepresentable", - "usr": "s:s22CodingKeyRepresentableP", - "mangledName": "$ss22CodingKeyRepresentableP" - }, - { - "kind": "Conformance", - "name": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "MirrorPath", - "printedName": "MirrorPath", - "usr": "s:s10MirrorPathP", - "mangledName": "$ss10MirrorPathP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" - }, - { - "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": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "SIMDScalar", - "printedName": "SIMDScalar", - "children": [ - { - "kind": "TypeWitness", - "name": "SIMDMaskScalar", - "printedName": "SIMDMaskScalar", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageAttachmentButton:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD2Storage", - "printedName": "SIMD2Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD2Storage", - "printedName": "Swift.Int.SIMD2Storage", - "usr": "s:Si12SIMD2StorageV" + "name": "Void", + "printedName": "()" } - ] - }, + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "apptentiveMessageSendButton", + "printedName": "apptentiveMessageSendButton", + "children": [ { - "kind": "TypeWitness", - "name": "SIMD4Storage", - "printedName": "SIMD4Storage", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "SIMD4Storage", - "printedName": "Swift.Int.SIMD4Storage", - "usr": "s:Si12SIMD4StorageV" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } - ] - }, + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageSendButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "SIMD8Storage", - "printedName": "SIMD8Storage", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "SIMD8Storage", - "printedName": "Swift.Int.SIMD8Storage", - "usr": "s:Si12SIMD8StorageV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageSendButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" }, { - "kind": "TypeWitness", - "name": "SIMD16Storage", - "printedName": "SIMD16Storage", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "SIMD16Storage", - "printedName": "Swift.Int.SIMD16Storage", - "usr": "s:Si13SIMD16StorageV" - } - ] - }, - { - "kind": "TypeWitness", - "name": "SIMD32Storage", - "printedName": "SIMD32Storage", - "children": [ + "name": "Void", + "printedName": "()" + }, { "kind": "TypeNominal", - "name": "SIMD32Storage", - "printedName": "Swift.Int.SIMD32Storage", - "usr": "s:Si13SIMD32StorageV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageSendButton:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" }, { - "kind": "TypeWitness", - "name": "SIMD64Storage", - "printedName": "SIMD64Storage", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "SIMD64Storage", - "printedName": "Swift.Int.SIMD64Storage", - "usr": "s:Si13SIMD64StorageV" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s10SIMDScalarP", - "mangledName": "$ss10SIMDScalarP" + ] }, { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", + "kind": "Var", + "name": "apptentiveSentMessageBubble", + "printedName": "apptentiveSentMessageBubble", "children": [ { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } - ] + ], + "usr": "s:Sq" } ], - "usr": "s:10Foundation18_FormatSpecifiableP", - "mangledName": "$s10Foundation18_FormatSpecifiableP" - }, - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveSentMessageBubble", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "kind": "Conformance", - "name": "_FormatSpecifiable", - "printedName": "_FormatSpecifiable", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveSentMessageBubble", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, { - "kind": "TypeWitness", - "name": "_Arg", - "printedName": "_Arg", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "Int64", - "printedName": "Swift.Int64", - "usr": "s:s5Int64V" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] - } - ], - "usr": "s:7SwiftUI18_FormatSpecifiableP", - "mangledName": "$s7SwiftUI18_FormatSpecifiableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "Bool", - "printedName": "Bool", - "declKind": "Struct", - "usr": "s:Sb", - "mangledName": "$sSb", - "moduleName": "Swift", - "declAttributes": [ - "Frozen" - ], - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "CustomDataCompatible", - "printedName": "CustomDataCompatible", - "usr": "s:13ApptentiveKit20CustomDataCompatibleP", - "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP" - }, - { - "kind": "Conformance", - "name": "_ExpressibleByBuiltinBooleanLiteral", - "printedName": "_ExpressibleByBuiltinBooleanLiteral", - "usr": "s:s35_ExpressibleByBuiltinBooleanLiteralP", - "mangledName": "$ss35_ExpressibleByBuiltinBooleanLiteralP" - }, - { - "kind": "Conformance", - "name": "ExpressibleByBooleanLiteral", - "printedName": "ExpressibleByBooleanLiteral", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveSentMessageBubble:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "BooleanLiteralType", - "printedName": "BooleanLiteralType", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "Bool", - "printedName": "Swift.Bool", - "usr": "s:Sb" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:s27ExpressibleByBooleanLiteralP", - "mangledName": "$ss27ExpressibleByBooleanLiteralP" - }, - { - "kind": "Conformance", - "name": "CustomStringConvertible", - "printedName": "CustomStringConvertible", - "usr": "s:s23CustomStringConvertibleP", - "mangledName": "$ss23CustomStringConvertibleP" - }, - { - "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": "LosslessStringConvertible", - "printedName": "LosslessStringConvertible", - "usr": "s:s25LosslessStringConvertibleP", - "mangledName": "$ss25LosslessStringConvertibleP" - }, - { - "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": "CustomReflectable", - "printedName": "CustomReflectable", - "usr": "s:s17CustomReflectableP", - "mangledName": "$ss17CustomReflectableP" - }, - { - "kind": "Conformance", - "name": "_CustomPlaygroundQuickLookable", - "printedName": "_CustomPlaygroundQuickLookable", - "usr": "s:s30_CustomPlaygroundQuickLookableP", - "mangledName": "$ss30_CustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "CVarArg", - "printedName": "CVarArg", - "usr": "s:s7CVarArgP", - "mangledName": "$ss7CVarArgP" + ] }, { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", + "kind": "Var", + "name": "apptentiveReceivedMessageBubble", + "printedName": "apptentiveReceivedMessageBubble", "children": [ { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "NSNumber", - "printedName": "Foundation.NSNumber", - "usr": "c:objc(cs)NSNumber" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIViewController", - "printedName": "UIViewController", - "children": [ - { - "kind": "Var", - "name": "apptentiveModalPresentationStyle", - "printedName": "apptentiveModalPresentationStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(py)apptentiveModalPresentationStyle", - "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvp", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveReceivedMessageBubble", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvpZ", "moduleName": "ApptentiveKit", - "deprecated": true, + "static": true, "declAttributes": [ - "Dynamic", + "HasInitialValue", + "Final", + "HasStorage", "Custom", "AccessControl", "ObjC", - "Available" + "RawDocComment" ], "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -37856,18 +36127,28 @@ "children": [ { "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)apptentiveModalPresentationStyle", - "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvg", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveReceivedMessageBubble", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvgZ", "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "get" @@ -37884,141 +36165,94 @@ }, { "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)setApptentiveModalPresentationStyle:", - "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvs", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveReceivedMessageBubble:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvsZ", "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, "declAttributes": [ - "Dynamic", - "ObjC" + "ObjC", + "Final" ], "isFromExtension": true, "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIViewController", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIViewController", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIResponder", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "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": "TypeDecl", - "name": "Name", - "printedName": "Name", - "children": [ { "kind": "Var", - "name": "apptentiveEventEngaged", - "printedName": "apptentiveEventEngaged", + "name": "apptentiveAttachmentPlaceholder", + "printedName": "apptentiveAttachmentPlaceholder", "children": [ { "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ", - "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentPlaceholder", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", + "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { @@ -38028,214 +36262,122 @@ "children": [ { "kind": "TypeNominal", - "name": "Name", - "printedName": "Foundation.NSNotification.Name", - "usr": "c:@T@NSNotificationName" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ", - "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentPlaceholder", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], "isFromExtension": true, "accessorKind": "get" - } - ] - } - ], - "declKind": "Struct", - "usr": "c:@T@NSNotificationName", - "moduleName": "Foundation", - "declAttributes": [ - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "SynthesizedProtocol", - "Sendable" - ], - "isFromExtension": true, - "isExternal": true, - "conformances": [ - { - "kind": "Conformance", - "name": "_ObjectiveCBridgeable", - "printedName": "_ObjectiveCBridgeable", - "children": [ + }, { - "kind": "TypeWitness", - "name": "_ObjectiveCType", - "printedName": "_ObjectiveCType", + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", "children": [ { "kind": "TypeNominal", - "name": "NSString", - "printedName": "Foundation.NSString", - "usr": "c:objc(cs)NSString" + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } - ] - } - ], - "usr": "s:s21_ObjectiveCBridgeableP", - "mangledName": "$ss21_ObjectiveCBridgeableP" - }, - { - "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": "_SwiftNewtypeWrapper", - "printedName": "_SwiftNewtypeWrapper", - "usr": "s:s20_SwiftNewtypeWrapperP", - "mangledName": "$ss20_SwiftNewtypeWrapperP" - }, - { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", - "children": [ + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentPlaceholder:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "String", - "printedName": "Swift.String", - "usr": "s:SS" + "name": "Void", + "printedName": "()" } - ] + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "_HasCustomAnyHashableRepresentation", - "printedName": "_HasCustomAnyHashableRepresentation", - "usr": "s:s35_HasCustomAnyHashableRepresentationP", - "mangledName": "$ss35_HasCustomAnyHashableRepresentationP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "FileManager", - "printedName": "FileManager", - "declKind": "Class", - "usr": "c:objc(cs)NSFileManager", - "moduleName": "Foundation", - "isOpen": true, - "objc_name": "NSFileManager", - "declAttributes": [ - "ObjC", - "NonSendable", - "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" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIButton", - "printedName": "UIButton", - "children": [ { "kind": "Var", - "name": "apptentivePillRadius", - "printedName": "apptentivePillRadius", + "name": "apptentiveAttachmentRemoveButton", + "printedName": "apptentiveAttachmentRemoveButton", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentivePillRadius", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentRemoveButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ "HasInitialValue", "Final", @@ -38243,65 +36385,145 @@ "Custom", "AccessControl", "ObjC", - "Available" + "RawDocComment" ], "isFromExtension": true, - "isLet": true, "hasStorage": true, "accessors": [ { "kind": "Accessor", - "name": "Get", - "printedName": "Get()", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentRemoveButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentRemoveButton:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Void", + "printedName": "()" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentivePillRadius", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvgZ", + "usr": "s:So7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "intro_iOS": "2.0", "declAttributes": [ - "ObjC", + "Available", "Final" ], "isFromExtension": true, - "accessorKind": "get" + "accessorKind": "_modify" } ] }, { "kind": "Var", - "name": "apptentiveCornerRadius", - "printedName": "apptentiveCornerRadius", + "name": "apptentiveHeaderLogo", + "printedName": "apptentiveHeaderLogo", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentiveCornerRadius", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveHeaderLogo", + "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "Custom", "AccessControl", "ObjC", - "Available" + "RawDocComment" ], "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -38310,16 +36532,25 @@ "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentiveCornerRadius", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveHeaderLogo", + "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvgZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -38339,16 +36570,25 @@ }, { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)setApptentiveCornerRadius:", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveHeaderLogo:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvsZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -38368,15 +36608,13 @@ } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE22apptentiveCornerRadius14CoreFoundation7CGFloatVvMZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvMZ", + "usr": "s:So7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -38387,27 +36625,27 @@ }, { "kind": "Var", - "name": "apptentiveClose", - "printedName": "apptentiveClose", + "name": "apptentiveRadioButton", + "printedName": "apptentiveRadioButton", "children": [ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIButton?", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "UIButton", - "printedName": "UIKit.UIButton", - "usr": "c:objc(cs)UIButton" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ @@ -38416,6 +36654,7 @@ "HasStorage", "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -38429,25 +36668,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIButton?", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "UIButton", - "printedName": "UIKit.UIButton", - "usr": "c:objc(cs)UIButton" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButton", + "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -38466,25 +36706,26 @@ { "kind": "TypeNominal", "name": "Optional", - "printedName": "UIKit.UIButton?", + "printedName": "UIKit.UIImage?", "children": [ { "kind": "TypeNominal", - "name": "UIButton", - "printedName": "UIKit.UIButton", - "usr": "c:objc(cs)UIButton" + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButton:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -38502,8 +36743,8 @@ } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ", + "usr": "s:So7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -38518,129 +36759,28 @@ ] }, { - "kind": "TypeDecl", - "name": "ApptentiveButtonStyle", - "printedName": "ApptentiveButtonStyle", + "kind": "Var", + "name": "apptentiveCheckbox", + "printedName": "apptentiveCheckbox", "children": [ { - "kind": "Var", - "name": "pill", - "printedName": "pill", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> UIKit.UIButton.ApptentiveButtonStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" - } - ] - } - ] - } - ], - "declKind": "EnumElement", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - }, - { - "kind": "Var", - "name": "radius", - "printedName": "radius", + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", "children": [ { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> (CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle", - "children": [ - { - "kind": "TypeFunc", - "name": "Function", - "printedName": "(CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" - }, - { - "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" - } - ] - }, - { - "kind": "TypeNominal", - "name": "Metatype", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" - } - ] - } - ] + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" } ], - "declKind": "EnumElement", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE14CoreFoundation7CGFloatVcAEmF", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE12CoreGraphics7CGFloatVcAEmF", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "RawDocComment" - ] - } - ], - "declKind": "Enum", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO", - "moduleName": "ApptentiveKit", - "declAttributes": [ - "AccessControl", - "RawDocComment" - ], - "isFromExtension": true - }, - { - "kind": "Var", - "name": "apptentiveStyle", - "printedName": "apptentiveStyle", - "children": [ - { - "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckbox", + "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ @@ -38649,6 +36789,7 @@ "HasStorage", "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -38661,18 +36802,27 @@ "children": [ { "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckbox", + "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -38690,18 +36840,27 @@ }, { "kind": "TypeNominal", - "name": "ApptentiveButtonStyle", - "printedName": "UIKit.UIButton.ApptentiveButtonStyle", - "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckbox:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -38719,8 +36878,8 @@ } ], "declKind": "Accessor", - "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ", - "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ", + "usr": "s:So7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -38733,134 +36892,178 @@ "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIButton", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIButton", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIControl", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIControl", - "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": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" }, { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "kind": "Var", + "name": "apptentiveRadioButtonSelected", + "printedName": "apptentiveRadioButtonSelected", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButtonSelected", + "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButtonSelected", + "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButtonSelected:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:So7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UITableView", - "printedName": "UITableView", - "children": [ { "kind": "Var", - "name": "apptentiveStyle", - "printedName": "apptentiveStyle", + "name": "apptentiveCheckboxSelected", + "printedName": "apptentiveCheckboxSelected", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cpy)apptentiveStyle", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckboxSelected", + "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ + "HasInitialValue", "Final", + "HasStorage", "Custom", "AccessControl", "ObjC", - "Available" + "RawDocComment" ], "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -38869,16 +37072,25 @@ "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cm)apptentiveStyle", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckboxSelected", + "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvgZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -38898,16 +37110,25 @@ }, { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cm)setApptentiveStyle:", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckboxSelected:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvsZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -38927,15 +37148,13 @@ } ], "declKind": "Accessor", - "usr": "s:So11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ", + "usr": "s:So7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -38946,19 +37165,27 @@ }, { "kind": "Var", - "name": "apptentiveQuestionSeparatorHeight", - "printedName": "apptentiveQuestionSeparatorHeight", + "name": "apptentiveDialogHeader", + "printedName": "apptentiveDialogHeader", "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvpZ", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveDialogHeader", + "mangledName": "$sSo7UIImageC13ApptentiveKitE22apptentiveDialogHeaderABSgvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ @@ -38967,7 +37194,7 @@ "HasStorage", "Custom", "AccessControl", - "RawDocComment" + "ObjC" ], "isFromExtension": true, "hasStorage": true, @@ -38979,18 +37206,27 @@ "children": [ { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvgZ", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveDialogHeader", + "mangledName": "$sSo7UIImageC13ApptentiveKitE22apptentiveDialogHeaderABSgvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -39008,18 +37244,27 @@ }, { "kind": "TypeNominal", - "name": "CGFloat", - "printedName": "CoreGraphics.CGFloat", - "usr": "s:14CoreFoundation7CGFloatV" + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvsZ", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveDialogHeader:", + "mangledName": "$sSo7UIImageC13ApptentiveKitE22apptentiveDialogHeaderABSgvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -39037,8 +37282,8 @@ } ], "declKind": "Accessor", - "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvMZ", - "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvMZ", + "usr": "s:So7UIImageC13ApptentiveKitE22apptentiveDialogHeaderABSgvMZ", + "mangledName": "$sSo7UIImageC13ApptentiveKitE22apptentiveDialogHeaderABSgvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39054,28 +37299,47 @@ } ], "declKind": "Class", - "usr": "c:objc(cs)UITableView", + "usr": "c:objc(cs)UIImage", "moduleName": "UIKit", "isOpen": true, "intro_iOS": "2.0", - "objc_name": "UITableView", + "objc_name": "UIImage", "declAttributes": [ "Available", "ObjC", + "SynthesizedProtocol", "NonSendable", - "Custom", + "Sendable", "Dynamic" ], - "superclassUsr": "c:objc(cs)UIScrollView", + "superclassUsr": "c:objc(cs)NSObject", "isExternal": true, "inheritsConvenienceInitializers": true, "superclassNames": [ - "UIKit.UIScrollView", - "UIKit.UIView", - "UIKit.UIResponder", "ObjectiveC.NSObject" ], "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -39127,53 +37391,49 @@ }, { "kind": "Conformance", - "name": "UITraitChangeObservable", - "printedName": "UITraitChangeObservable", - "usr": "s:5UIKit23UITraitChangeObservableP", - "mangledName": "$s5UIKit23UITraitChangeObservableP" - }, - { - "kind": "Conformance", - "name": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" }, { "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" + "name": "_ExpressibleByImageLiteral", + "printedName": "_ExpressibleByImageLiteral", + "usr": "s:s26_ExpressibleByImageLiteralP", + "mangledName": "$ss26_ExpressibleByImageLiteralP" } ] }, { "kind": "TypeDecl", - "name": "Style", - "printedName": "Style", + "name": "UIColor", + "printedName": "UIColor", "children": [ { "kind": "Var", - "name": "apptentive", - "printedName": "apptentive", + "name": "apptentiveMessageCenterTextInputBackground", + "printedName": "apptentiveMessageCenterTextInputBackground", "children": [ { "kind": "TypeNominal", - "name": "Style", - "printedName": "UIKit.UITableView.Style", - "usr": "c:@E@UITableViewStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ", - "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", + "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -39186,17 +37446,21 @@ "children": [ { "kind": "TypeNominal", - "name": "Style", - "printedName": "UIKit.UITableView.Style", - "usr": "c:@E@UITableViewStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ", - "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], "isFromExtension": true, "accessorKind": "get" }, @@ -39212,17 +37476,21 @@ }, { "kind": "TypeNominal", - "name": "Style", - "printedName": "UIKit.UITableView.Style", - "usr": "c:@E@UITableViewStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ", - "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], "isFromExtension": true, "accessorKind": "set" }, @@ -39238,104 +37506,45 @@ } ], "declKind": "Accessor", - "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ", - "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], "isFromExtension": true, "accessorKind": "_modify" } ] - } - ], - "declKind": "Enum", - "usr": "c:@E@UITableViewStyle", - "moduleName": "UIKit", - "objc_name": "UITableViewStyle", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "SynthesizedProtocol", - "Sendable", - "NonSendable", - "Dynamic" - ], - "isFromExtension": true, - "enumRawTypeName": "Int", - "isExternal": true, - "conformances": [ - { - "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": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIModalPresentationStyle", - "printedName": "UIModalPresentationStyle", - "children": [ { "kind": "Var", - "name": "apptentive", - "printedName": "apptentive", + "name": "apptentiveMessageCenterTextInputPlaceholder", + "printedName": "apptentiveMessageCenterTextInputPlaceholder", "children": [ { "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ", - "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", + "Final", "HasStorage", + "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -39348,17 +37557,21 @@ "children": [ { "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ", - "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], "isFromExtension": true, "accessorKind": "get" }, @@ -39374,17 +37587,21 @@ }, { "kind": "TypeNominal", - "name": "UIModalPresentationStyle", - "printedName": "UIKit.UIModalPresentationStyle", - "usr": "c:@E@UIModalPresentationStyle" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ", - "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputPlaceholder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "declAttributes": [ + "ObjC", + "Final" + ], "isFromExtension": true, "accessorKind": "set" }, @@ -39400,97 +37617,146 @@ } ], "declKind": "Accessor", - "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ", - "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Final" + ], "isFromExtension": true, "accessorKind": "_modify" } ] - } - ], - "declKind": "Enum", - "usr": "c:@E@UIModalPresentationStyle", - "moduleName": "UIKit", - "objc_name": "UIModalPresentationStyle", - "declAttributes": [ - "SynthesizedProtocol", - "ObjC", - "SynthesizedProtocol", - "Sendable", - "NonSendable", - "Dynamic" - ], - "enumRawTypeName": "Int", - "isExternal": true, - "conformances": [ + }, { - "kind": "Conformance", - "name": "RawRepresentable", - "printedName": "RawRepresentable", + "kind": "Var", + "name": "apptentiveMessageTextViewPlaceholder", + "printedName": "apptentiveMessageTextViewPlaceholder", "children": [ { - "kind": "TypeWitness", - "name": "RawValue", - "printedName": "RawValue", + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Var", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextViewPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", "children": [ { "kind": "TypeNominal", - "name": "Int", - "printedName": "Swift.Int", - "usr": "s:Si" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } - ] + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextViewPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextViewPlaceholder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "ObjC", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "deprecated": true, + "implicit": true, + "intro_iOS": "2.0", + "declAttributes": [ + "Available", + "Available", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" } - ], - "usr": "s:SY", - "mangledName": "$sSY" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "kind": "Conformance", - "name": "Equatable", - "printedName": "Equatable", - "usr": "s:SQ", - "mangledName": "$sSQ" + ] }, - { - "kind": "Conformance", - "name": "Hashable", - "printedName": "Hashable", - "usr": "s:SH", - "mangledName": "$sSH" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIBarButtonItem", - "printedName": "UIBarButtonItem", - "children": [ { "kind": "Var", - "name": "apptentiveClose", - "printedName": "apptentiveClose", + "name": "apptentiveMessageCenterTextInput", + "printedName": "apptentiveMessageCenterTextInput", "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveClose", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInput", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ @@ -39512,14 +37778,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveClose", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInput", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39542,14 +37808,14 @@ }, { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveClose:", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInput:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39572,8 +37838,8 @@ } ], "declKind": "Accessor", - "usr": "s:So15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39589,19 +37855,19 @@ }, { "kind": "Var", - "name": "apptentiveProfileEdit", - "printedName": "apptentiveProfileEdit", + "name": "apptentivetextInputTint", + "printedName": "apptentivetextInputTint", "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveProfileEdit", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentivetextInputTint", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ @@ -39623,14 +37889,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveProfileEdit", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentivetextInputTint", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39653,14 +37919,14 @@ }, { "kind": "TypeNominal", - "name": "UIBarButtonItem", - "printedName": "UIKit.UIBarButtonItem", - "usr": "c:objc(cs)UIBarButtonItem" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveProfileEdit:", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentivetextInputTint:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39683,8 +37949,8 @@ } ], "declKind": "Accessor", - "usr": "s:So15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ", - "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39697,114 +37963,29 @@ "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIBarButtonItem", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIBarButtonItem", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIBarItem", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "UIKit.UIBarItem", - "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": "UIImage", - "printedName": "UIImage", - "children": [ { "kind": "Var", - "name": "apptentiveMessageAttachmentButton", - "printedName": "apptentiveMessageAttachmentButton", + "name": "apptentiveMessageCenterTextInputBorder", + "printedName": "apptentiveMessageCenterTextInputBorder", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageAttachmentButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -39819,22 +38000,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageAttachmentButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39857,22 +38030,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageAttachmentButton:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39895,8 +38060,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -39912,39 +38077,31 @@ }, { "kind": "Var", - "name": "apptentiveMessageSendButton", - "printedName": "apptentiveMessageSendButton", + "name": "apptentiveMessageCenterTextViewBorder", + "printedName": "apptentiveMessageCenterTextViewBorder", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageSendButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextViewBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", + "Custom", "AccessControl", "ObjC", + "Available", "RawDocComment" ], "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -39953,25 +38110,16 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageSendButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextViewBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -39991,25 +38139,16 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageSendButton:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextViewBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -40029,13 +38168,15 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ + "Available", "Available", "Final" ], @@ -40046,33 +38187,26 @@ }, { "kind": "Var", - "name": "apptentiveSentMessageBubble", - "printedName": "apptentiveSentMessageBubble", + "name": "apptentiveMessageCenterAttachmentButton", + "printedName": "apptentiveMessageCenterAttachmentButton", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveSentMessageBubble", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40087,22 +38221,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveSentMessageBubble", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40125,22 +38251,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveSentMessageBubble:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentButton:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40163,8 +38281,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40180,33 +38298,26 @@ }, { "kind": "Var", - "name": "apptentiveReceivedMessageBubble", - "printedName": "apptentiveReceivedMessageBubble", + "name": "apptentiveMessageTextInputPlaceholder", + "printedName": "apptentiveMessageTextInputPlaceholder", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveReceivedMessageBubble", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40221,22 +38332,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveReceivedMessageBubble", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40259,22 +38362,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveReceivedMessageBubble:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextInputPlaceholder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40297,8 +38392,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40314,33 +38409,26 @@ }, { "kind": "Var", - "name": "apptentiveAttachmentPlaceholder", - "printedName": "apptentiveAttachmentPlaceholder", + "name": "apptentiveMessageCenterStatus", + "printedName": "apptentiveMessageCenterStatus", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentPlaceholder", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterStatus", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40355,22 +38443,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentPlaceholder", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterStatus", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40393,22 +38473,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentPlaceholder:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterStatus:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40431,8 +38503,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40448,33 +38520,26 @@ }, { "kind": "Var", - "name": "apptentiveAttachmentRemoveButton", - "printedName": "apptentiveAttachmentRemoveButton", + "name": "apptentiveMessageCenterGreetingBody", + "printedName": "apptentiveMessageCenterGreetingBody", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentRemoveButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingBody", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40489,22 +38554,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentRemoveButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingBody", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40527,22 +38584,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentRemoveButton:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingBody:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40565,8 +38614,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40582,33 +38631,26 @@ }, { "kind": "Var", - "name": "apptentiveHeaderLogo", - "printedName": "apptentiveHeaderLogo", + "name": "apptentiveMessageCenterGreetingTitle", + "printedName": "apptentiveMessageCenterGreetingTitle", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveHeaderLogo", - "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40623,22 +38665,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveHeaderLogo", - "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40661,22 +38695,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveHeaderLogo:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingTitle:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40699,8 +38725,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40716,33 +38742,26 @@ }, { "kind": "Var", - "name": "apptentiveRadioButton", - "printedName": "apptentiveRadioButton", + "name": "apptentiveMessageBubbleInbound", + "printedName": "apptentiveMessageBubbleInbound", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleInbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40757,22 +38776,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButton", - "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleInbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40795,22 +38806,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButton:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleInbound:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40833,8 +38836,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40850,33 +38853,26 @@ }, { "kind": "Var", - "name": "apptentiveCheckbox", - "printedName": "apptentiveCheckbox", + "name": "apptentiveMessageBubbleOutbound", + "printedName": "apptentiveMessageBubbleOutbound", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckbox", - "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleOutbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -40891,22 +38887,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckbox", - "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleOutbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40929,22 +38917,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckbox:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleOutbound:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40967,8 +38947,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -40984,33 +38964,26 @@ }, { "kind": "Var", - "name": "apptentiveRadioButtonSelected", - "printedName": "apptentiveRadioButtonSelected", + "name": "apptentiveMessageLabelInbound", + "printedName": "apptentiveMessageLabelInbound", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButtonSelected", - "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelInbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -41025,22 +38998,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButtonSelected", - "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelInbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41063,22 +39028,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButtonSelected:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelInbound:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41101,8 +39058,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41118,33 +39075,26 @@ }, { "kind": "Var", - "name": "apptentiveCheckboxSelected", - "printedName": "apptentiveCheckboxSelected", + "name": "apptentiveMessageLabelOutbound", + "printedName": "apptentiveMessageLabelOutbound", "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckboxSelected", - "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelOutbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -41159,22 +39109,14 @@ "children": [ { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckboxSelected", - "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelOutbound", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41197,22 +39139,14 @@ }, { "kind": "TypeNominal", - "name": "Optional", - "printedName": "UIKit.UIImage?", - "children": [ - { - "kind": "TypeNominal", - "name": "UIImage", - "printedName": "UIKit.UIImage", - "usr": "c:objc(cs)UIImage" - } - ], - "usr": "s:Sq" + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckboxSelected:", - "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelOutbound:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41235,8 +39169,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ", - "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41249,103 +39183,11 @@ "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIImage", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIImage", - "declAttributes": [ - "Available", - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "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": "_ExpressibleByImageLiteral", - "printedName": "_ExpressibleByImageLiteral", - "usr": "s:s26_ExpressibleByImageLiteralP", - "mangledName": "$ss26_ExpressibleByImageLiteralP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIColor", - "printedName": "UIColor", - "children": [ { "kind": "Var", - "name": "apptentiveMessageCenterTextInputBackground", - "printedName": "apptentiveMessageCenterTextInputBackground", + "name": "apptentiveQuestionLabel", + "printedName": "apptentiveQuestionLabel", "children": [ { "kind": "TypeNominal", @@ -41355,14 +39197,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -41383,8 +39226,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41413,8 +39256,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41437,8 +39280,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41454,8 +39297,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterTextInputPlaceholder", - "printedName": "apptentiveMessageCenterTextInputPlaceholder", + "name": "apptentiveInstructionsLabel", + "printedName": "apptentiveInstructionsLabel", "children": [ { "kind": "TypeNominal", @@ -41465,14 +39308,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveInstructionsLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -41493,8 +39337,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveInstructionsLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41523,118 +39367,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputPlaceholder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveInstructionsLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, - "intro_iOS": "2.0", - "declAttributes": [ - "Available", - "Final" - ], - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "apptentiveMessageTextViewPlaceholder", - "printedName": "apptentiveMessageTextViewPlaceholder", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextViewPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "deprecated": true, - "declAttributes": [ - "Final", - "AccessControl", - "ObjC", - "Available", - "RawDocComment" - ], - "isFromExtension": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextViewPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextViewPlaceholder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvsZ", - "moduleName": "ApptentiveKit", - "static": true, "declAttributes": [ "ObjC", "Final" @@ -41654,15 +39391,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -41673,8 +39408,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterTextInput", - "printedName": "apptentiveMessageCenterTextInput", + "name": "apptentiveChoiceLabel", + "printedName": "apptentiveChoiceLabel", "children": [ { "kind": "TypeNominal", @@ -41684,14 +39419,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInput", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveChoiceLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -41712,8 +39448,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInput", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveChoiceLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41742,8 +39478,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInput:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveChoiceLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41766,8 +39502,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41783,8 +39519,8 @@ }, { "kind": "Var", - "name": "apptentivetextInputTint", - "printedName": "apptentivetextInputTint", + "name": "apptentiveError", + "printedName": "apptentiveError", "children": [ { "kind": "TypeNominal", @@ -41794,13 +39530,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentivetextInputTint", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveError", + "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -41822,8 +39559,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentivetextInputTint", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveError", + "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41852,8 +39589,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentivetextInputTint:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveError:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41876,8 +39613,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41893,8 +39630,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterTextInputBorder", - "printedName": "apptentiveMessageCenterTextInputBorder", + "name": "apptentiveTint", + "printedName": "apptentiveTint", "children": [ { "kind": "TypeNominal", @@ -41904,13 +39641,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTint", + "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -41932,8 +39670,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTint", + "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41962,8 +39700,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBorder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTint:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -41986,8 +39724,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE14apptentiveTintABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42003,8 +39741,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterTextViewBorder", - "printedName": "apptentiveMessageCenterTextViewBorder", + "name": "apptentiveSecondaryLabel", + "printedName": "apptentiveSecondaryLabel", "children": [ { "kind": "TypeNominal", @@ -42014,19 +39752,21 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextViewBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ + "HasInitialValue", "Final", + "Custom", + "HasStorage", "AccessControl", "ObjC", - "Available", "RawDocComment" ], "isFromExtension": true, + "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -42041,10 +39781,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextViewBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -42070,10 +39811,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextViewBorder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, + "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -42093,15 +39835,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -42112,8 +39852,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterAttachmentButton", - "printedName": "apptentiveMessageCenterAttachmentButton", + "name": "apptentiveRangeControlBorder", + "printedName": "apptentiveRangeControlBorder", "children": [ { "kind": "TypeNominal", @@ -42123,14 +39863,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveRangeControlBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -42151,8 +39892,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveRangeControlBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42181,8 +39922,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentButton:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveRangeControlBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42205,8 +39946,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42222,8 +39963,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageTextInputPlaceholder", - "printedName": "apptentiveMessageTextInputPlaceholder", + "name": "apptentiveSurveyIntroduction", + "printedName": "apptentiveSurveyIntroduction", "children": [ { "kind": "TypeNominal", @@ -42233,14 +39974,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSurveyIntroduction", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -42261,8 +40003,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSurveyIntroduction", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42291,8 +40033,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextInputPlaceholder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSurveyIntroduction:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42315,8 +40057,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42332,8 +40074,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterStatus", - "printedName": "apptentiveMessageCenterStatus", + "name": "apptentiveSurveyTextInputBackground", + "printedName": "apptentiveSurveyTextInputBackground", "children": [ { "kind": "TypeNominal", @@ -42343,14 +40085,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterStatus", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSurveyTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveSurveyTextInputBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -42371,8 +40114,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterStatus", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSurveyTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveSurveyTextInputBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42401,8 +40144,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterStatus:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSurveyTextInputBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveSurveyTextInputBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42425,8 +40168,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE35apptentiveSurveyTextInputBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveSurveyTextInputBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42442,8 +40185,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterGreetingBody", - "printedName": "apptentiveMessageCenterGreetingBody", + "name": "apptentiveTextInputBorder", + "printedName": "apptentiveTextInputBorder", "children": [ { "kind": "TypeNominal", @@ -42453,13 +40196,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingBody", - "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -42481,8 +40225,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingBody", - "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42511,8 +40255,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingBody:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42535,8 +40279,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42552,8 +40296,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterGreetingTitle", - "printedName": "apptentiveMessageCenterGreetingTitle", + "name": "apptentiveOtherTextInputBorder", + "printedName": "apptentiveOtherTextInputBorder", "children": [ { "kind": "TypeNominal", @@ -42563,13 +40307,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingTitle", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveOtherTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveOtherTextInputBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -42591,8 +40336,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingTitle", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveOtherTextInputBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveOtherTextInputBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42621,8 +40366,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingTitle:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveOtherTextInputBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveOtherTextInputBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42645,8 +40390,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveOtherTextInputBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveOtherTextInputBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42662,8 +40407,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageBubbleInbound", - "printedName": "apptentiveMessageBubbleInbound", + "name": "apptentiveOtherTextInputBackground", + "printedName": "apptentiveOtherTextInputBackground", "children": [ { "kind": "TypeNominal", @@ -42673,14 +40418,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleInbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveOtherTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE34apptentiveOtherTextInputBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -42701,8 +40447,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleInbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveOtherTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE34apptentiveOtherTextInputBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42731,8 +40477,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleInbound:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveOtherTextInputBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE34apptentiveOtherTextInputBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42755,8 +40501,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE34apptentiveOtherTextInputBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE34apptentiveOtherTextInputBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42772,8 +40518,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageBubbleOutbound", - "printedName": "apptentiveMessageBubbleOutbound", + "name": "apptentiveTextInputBackground", + "printedName": "apptentiveTextInputBackground", "children": [ { "kind": "TypeNominal", @@ -42783,13 +40529,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleOutbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -42811,8 +40558,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleOutbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42841,8 +40588,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleOutbound:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42865,8 +40612,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42882,8 +40629,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageLabelInbound", - "printedName": "apptentiveMessageLabelInbound", + "name": "apptentiveTextInput", + "printedName": "apptentiveTextInput", "children": [ { "kind": "TypeNominal", @@ -42893,13 +40640,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelInbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInput", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -42921,8 +40669,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelInbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInput", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42951,8 +40699,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelInbound:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInput:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42975,8 +40723,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -42992,8 +40740,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageLabelOutbound", - "printedName": "apptentiveMessageLabelOutbound", + "name": "apptentiveTextInputPlaceholder", + "printedName": "apptentiveTextInputPlaceholder", "children": [ { "kind": "TypeNominal", @@ -43003,13 +40751,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelOutbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -43031,8 +40780,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelOutbound", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputPlaceholder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43061,8 +40810,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelOutbound:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputPlaceholder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43085,8 +40834,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43102,8 +40851,8 @@ }, { "kind": "Var", - "name": "apptentiveQuestionLabel", - "printedName": "apptentiveQuestionLabel", + "name": "apptentiveMinMaxLabel", + "printedName": "apptentiveMinMaxLabel", "children": [ { "kind": "TypeNominal", @@ -43113,14 +40862,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMinMaxLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43141,8 +40891,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMinMaxLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43171,8 +40921,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMinMaxLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43195,8 +40945,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43212,8 +40962,8 @@ }, { "kind": "Var", - "name": "apptentiveInstructionsLabel", - "printedName": "apptentiveInstructionsLabel", + "name": "apptentiveGroupedBackground", + "printedName": "apptentiveGroupedBackground", "children": [ { "kind": "TypeNominal", @@ -43223,14 +40973,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveInstructionsLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveGroupedBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43251,8 +41002,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveInstructionsLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveGroupedBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43281,8 +41032,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveInstructionsLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveGroupedBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43305,8 +41056,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43322,8 +41073,8 @@ }, { "kind": "Var", - "name": "apptentiveChoiceLabel", - "printedName": "apptentiveChoiceLabel", + "name": "apptentiveSecondaryGroupedBackground", + "printedName": "apptentiveSecondaryGroupedBackground", "children": [ { "kind": "TypeNominal", @@ -43333,14 +41084,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveChoiceLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryGroupedBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43361,8 +41113,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveChoiceLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryGroupedBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43391,8 +41143,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveChoiceLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryGroupedBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43415,8 +41167,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43432,8 +41184,8 @@ }, { "kind": "Var", - "name": "apptentiveError", - "printedName": "apptentiveError", + "name": "apptentiveSeparator", + "printedName": "apptentiveSeparator", "children": [ { "kind": "TypeNominal", @@ -43443,14 +41195,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveError", - "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43471,8 +41224,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveError", - "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43501,8 +41254,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveError:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSeparator:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43525,8 +41278,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43542,8 +41295,8 @@ }, { "kind": "Var", - "name": "apptentiveTint", - "printedName": "apptentiveTint", + "name": "apptentiveImageSelected", + "printedName": "apptentiveImageSelected", "children": [ { "kind": "TypeNominal", @@ -43553,14 +41306,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTint", - "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43581,8 +41335,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTint", - "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43611,8 +41365,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTint:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageSelected:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43635,8 +41389,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE14apptentiveTintABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE14apptentiveTintABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43652,8 +41406,8 @@ }, { "kind": "Var", - "name": "apptentiveSecondaryLabel", - "printedName": "apptentiveSecondaryLabel", + "name": "apptentiveImageNotSelected", + "printedName": "apptentiveImageNotSelected", "children": [ { "kind": "TypeNominal", @@ -43663,14 +41417,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageNotSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43691,8 +41446,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageNotSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43721,8 +41476,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageNotSelected:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43745,8 +41500,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43762,8 +41517,8 @@ }, { "kind": "Var", - "name": "apptentiveRangeControlBorder", - "printedName": "apptentiveRangeControlBorder", + "name": "apptentiveSubmitButton", + "printedName": "apptentiveSubmitButton", "children": [ { "kind": "TypeNominal", @@ -43773,14 +41528,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveRangeControlBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43801,8 +41557,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveRangeControlBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43831,8 +41587,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveRangeControlBorder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButton:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43855,8 +41611,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43872,8 +41628,8 @@ }, { "kind": "Var", - "name": "apptentiveSurveyIntroduction", - "printedName": "apptentiveSurveyIntroduction", + "name": "apptentiveBranchedSurveyFooter", + "printedName": "apptentiveBranchedSurveyFooter", "children": [ { "kind": "TypeNominal", @@ -43883,14 +41639,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSurveyIntroduction", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveBranchedSurveyFooter", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -43911,8 +41668,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSurveyIntroduction", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveBranchedSurveyFooter", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43941,8 +41698,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSurveyIntroduction:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveBranchedSurveyFooter:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43965,8 +41722,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -43982,8 +41739,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInputBorder", - "printedName": "apptentiveTextInputBorder", + "name": "apptentiveSubmitLabel", + "printedName": "apptentiveSubmitLabel", "children": [ { "kind": "TypeNominal", @@ -43993,20 +41750,19 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvpZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", + "Custom", "AccessControl", - "ObjC", + "Available", "RawDocComment" ], "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -44021,13 +41777,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvgZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44051,13 +41805,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvsZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44075,13 +41827,15 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ + "Available", "Available", "Final" ], @@ -44092,8 +41846,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInputBackground", - "printedName": "apptentiveTextInputBackground", + "name": "apptentiveSubmitStatusLabel", + "printedName": "apptentiveSubmitStatusLabel", "children": [ { "kind": "TypeNominal", @@ -44103,13 +41857,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitStatusLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -44131,8 +41886,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitStatusLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44161,8 +41916,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitStatusLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44185,8 +41940,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44202,8 +41957,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInput", - "printedName": "apptentiveTextInput", + "name": "apptentiveTermsOfServiceLabel", + "printedName": "apptentiveTermsOfServiceLabel", "children": [ { "kind": "TypeNominal", @@ -44213,14 +41968,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInput", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTermsOfServiceLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -44241,8 +41997,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInput", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTermsOfServiceLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44271,8 +42027,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInput:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTermsOfServiceLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44295,8 +42051,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44312,8 +42068,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInputPlaceholder", - "printedName": "apptentiveTextInputPlaceholder", + "name": "apptentiveSubmitButtonTitle", + "printedName": "apptentiveSubmitButtonTitle", "children": [ { "kind": "TypeNominal", @@ -44323,14 +42079,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -44351,8 +42108,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputPlaceholder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44381,8 +42138,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputPlaceholder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonTitle:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44405,8 +42162,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44422,8 +42179,8 @@ }, { "kind": "Var", - "name": "apptentiveMinMaxLabel", - "printedName": "apptentiveMinMaxLabel", + "name": "apptentiveSubmitButtonBorder", + "printedName": "apptentiveSubmitButtonBorder", "children": [ { "kind": "TypeNominal", @@ -44433,14 +42190,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMinMaxLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -44461,8 +42219,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMinMaxLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44491,8 +42249,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMinMaxLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44515,8 +42273,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44532,8 +42290,8 @@ }, { "kind": "Var", - "name": "apptentiveGroupedBackground", - "printedName": "apptentiveGroupedBackground", + "name": "apptentiveQuestionSeparator", + "printedName": "apptentiveQuestionSeparator", "children": [ { "kind": "TypeNominal", @@ -44543,14 +42301,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveGroupedBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -44571,8 +42330,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveGroupedBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44601,8 +42360,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveGroupedBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionSeparator:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44625,8 +42384,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44642,8 +42401,8 @@ }, { "kind": "Var", - "name": "apptentiveSecondaryGroupedBackground", - "printedName": "apptentiveSecondaryGroupedBackground", + "name": "apptentiveUnselectedSurveyIndicatorSegment", + "printedName": "apptentiveUnselectedSurveyIndicatorSegment", "children": [ { "kind": "TypeNominal", @@ -44653,16 +42412,16 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryGroupedBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvpZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", - "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -44681,13 +42440,12 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryGroupedBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvgZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44711,13 +42469,12 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryGroupedBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvsZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44735,8 +42492,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44752,8 +42509,8 @@ }, { "kind": "Var", - "name": "apptentiveSeparator", - "printedName": "apptentiveSeparator", + "name": "apptentiveSelectedSurveyIndicatorSegment", + "printedName": "apptentiveSelectedSurveyIndicatorSegment", "children": [ { "kind": "TypeNominal", @@ -44763,16 +42520,16 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvpZ", + "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", - "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -44791,13 +42548,12 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvgZ", + "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44821,13 +42577,12 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSeparator:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvsZ", + "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -44845,8 +42600,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44862,8 +42617,8 @@ }, { "kind": "Var", - "name": "apptentiveImageSelected", - "printedName": "apptentiveImageSelected", + "name": "apptentiveMessageCenterBackground", + "printedName": "apptentiveMessageCenterBackground", "children": [ { "kind": "TypeNominal", @@ -44873,14 +42628,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -44901,8 +42657,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44931,8 +42687,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageSelected:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44955,8 +42711,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -44972,8 +42728,8 @@ }, { "kind": "Var", - "name": "apptentiveImageNotSelected", - "printedName": "apptentiveImageNotSelected", + "name": "apptentiveMessageCenterAttachmentDeleteButton", + "printedName": "apptentiveMessageCenterAttachmentDeleteButton", "children": [ { "kind": "TypeNominal", @@ -44983,20 +42739,20 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageNotSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentDeleteButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvpZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", + "Custom", "AccessControl", "ObjC", + "Available", "RawDocComment" ], "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -45011,11 +42767,10 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageNotSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentDeleteButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvgZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -45041,11 +42796,10 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageNotSelected:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentDeleteButton:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvsZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ "ObjC", "Final" @@ -45065,13 +42819,15 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ + "Available", "Available", "Final" ], @@ -45082,8 +42838,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitButton", - "printedName": "apptentiveSubmitButton", + "name": "apptentiveAttachmentRemoveButton", + "printedName": "apptentiveAttachmentRemoveButton", "children": [ { "kind": "TypeNominal", @@ -45093,14 +42849,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveAttachmentRemoveButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -45121,8 +42878,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveAttachmentRemoveButton", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45151,8 +42908,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButton:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveAttachmentRemoveButton:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45175,8 +42932,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45192,8 +42949,8 @@ }, { "kind": "Var", - "name": "apptentiveBranchedSurveyFooter", - "printedName": "apptentiveBranchedSurveyFooter", + "name": "apptentiveMessageCenterComposeBoxBackground", + "printedName": "apptentiveMessageCenterComposeBoxBackground", "children": [ { "kind": "TypeNominal", @@ -45203,14 +42960,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveBranchedSurveyFooter", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -45231,8 +42989,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveBranchedSurveyFooter", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45261,8 +43019,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveBranchedSurveyFooter:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45285,8 +43043,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45302,8 +43060,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitLabel", - "printedName": "apptentiveSubmitLabel", + "name": "apptentiveMessageCenterComposeBoxSeparator", + "printedName": "apptentiveMessageCenterComposeBoxSeparator", "children": [ { "kind": "TypeNominal", @@ -45313,17 +43071,17 @@ } ], "declKind": "Var", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", - "Available", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -45342,12 +43100,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -45371,12 +43130,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxSeparator:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -45394,15 +43154,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -45413,8 +43171,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitStatusLabel", - "printedName": "apptentiveSubmitStatusLabel", + "name": "apptentiveTextInputBorderSelected", + "printedName": "apptentiveTextInputBorderSelected", "children": [ { "kind": "TypeNominal", @@ -45424,14 +43182,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitStatusLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorderSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -45452,8 +43211,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitStatusLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorderSelected", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45482,8 +43241,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitStatusLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorderSelected:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45506,8 +43265,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45523,8 +43282,8 @@ }, { "kind": "Var", - "name": "apptentiveTermsOfServiceLabel", - "printedName": "apptentiveTermsOfServiceLabel", + "name": "apptentiveDisclaimerLabel", + "printedName": "apptentiveDisclaimerLabel", "children": [ { "kind": "TypeNominal", @@ -45534,14 +43293,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTermsOfServiceLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDisclaimerLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -45562,8 +43322,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTermsOfServiceLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDisclaimerLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45592,8 +43352,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTermsOfServiceLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDisclaimerLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45616,8 +43376,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45633,67 +43393,14 @@ }, { "kind": "Var", - "name": "apptentiveSubmitButtonTitle", - "printedName": "apptentiveSubmitButtonTitle", + "name": "apptentiveDialogBackground", + "printedName": "apptentiveDialogBackground", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonTitle", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ", - "moduleName": "ApptentiveKit", - "static": true, - "declAttributes": [ - "HasInitialValue", - "Final", - "HasStorage", - "AccessControl", - "ObjC", - "RawDocComment" - ], - "isFromExtension": true, - "hasStorage": true, - "accessors": [ - { - "kind": "Accessor", - "name": "Get", - "printedName": "Get()", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" - } - ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonTitle", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "get" - }, - { - "kind": "Accessor", - "name": "Set", - "printedName": "Set()", + "name": "Optional", + "printedName": "UIKit.UIColor?", "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - }, { "kind": "TypeNominal", "name": "UIColor", @@ -45701,67 +43408,19 @@ "usr": "c:objc(cs)UIColor" } ], - "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonTitle:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "declAttributes": [ - "ObjC", - "Final" - ], - "isFromExtension": true, - "accessorKind": "set" - }, - { - "kind": "Accessor", - "name": "Modify", - "printedName": "Modify()", - "children": [ - { - "kind": "TypeNominal", - "name": "Void", - "printedName": "()" - } - ], - "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", - "moduleName": "ApptentiveKit", - "static": true, - "implicit": true, - "intro_iOS": "2.0", - "declAttributes": [ - "Available", - "Final" - ], - "isFromExtension": true, - "accessorKind": "_modify" - } - ] - }, - { - "kind": "Var", - "name": "apptentiveSubmitButtonBorder", - "printedName": "apptentiveSubmitButtonBorder", - "children": [ - { - "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "usr": "s:Sq" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveDialogBackgroundABSgvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -45776,14 +43435,22 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.UIColor?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonBorder", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveDialogBackgroundABSgvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45806,14 +43473,22 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "Optional", + "printedName": "UIKit.UIColor?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "usr": "s:Sq" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonBorder:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveDialogBackgroundABSgvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45836,8 +43511,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE26apptentiveDialogBackgroundABSgvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveDialogBackgroundABSgvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45853,8 +43528,8 @@ }, { "kind": "Var", - "name": "apptentiveQuestionSeparator", - "printedName": "apptentiveQuestionSeparator", + "name": "apptentiveDialogTitle", + "printedName": "apptentiveDialogTitle", "children": [ { "kind": "TypeNominal", @@ -45864,13 +43539,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveDialogTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -45892,8 +43568,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogTitle", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveDialogTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45922,8 +43598,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionSeparator:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogTitle:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveDialogTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45946,8 +43622,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveDialogTitleABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveDialogTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -45963,8 +43639,8 @@ }, { "kind": "Var", - "name": "apptentiveUnselectedSurveyIndicatorSegment", - "printedName": "apptentiveUnselectedSurveyIndicatorSegment", + "name": "apptentiveDialogMessage", + "printedName": "apptentiveDialogMessage", "children": [ { "kind": "TypeNominal", @@ -45974,15 +43650,17 @@ } ], "declKind": "Var", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogMessage", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveDialogMessageABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -46001,12 +43679,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogMessage", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveDialogMessageABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -46030,12 +43709,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogMessage:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveDialogMessageABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -46053,8 +43733,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveDialogMessageABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveDialogMessageABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46070,8 +43750,8 @@ }, { "kind": "Var", - "name": "apptentiveSelectedSurveyIndicatorSegment", - "printedName": "apptentiveSelectedSurveyIndicatorSegment", + "name": "apptentiveDialogButtonBackground", + "printedName": "apptentiveDialogButtonBackground", "children": [ { "kind": "TypeNominal", @@ -46081,15 +43761,17 @@ } ], "declKind": "Var", - "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogButtonBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveDialogButtonBackgroundABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -46108,12 +43790,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogButtonBackground", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveDialogButtonBackgroundABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -46137,12 +43820,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogButtonBackground:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveDialogButtonBackgroundABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -46160,8 +43844,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveDialogButtonBackgroundABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveDialogButtonBackgroundABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46177,8 +43861,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterBackground", - "printedName": "apptentiveMessageCenterBackground", + "name": "apptentiveDialogButtonLabel", + "printedName": "apptentiveDialogButtonLabel", "children": [ { "kind": "TypeNominal", @@ -46188,14 +43872,15 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogButtonLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveDialogButtonLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", "HasStorage", + "Custom", "AccessControl", "ObjC", "RawDocComment" @@ -46216,8 +43901,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogButtonLabel", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveDialogButtonLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46246,8 +43931,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogButtonLabel:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveDialogButtonLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46270,8 +43955,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveDialogButtonLabelABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveDialogButtonLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46287,8 +43972,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterAttachmentDeleteButton", - "printedName": "apptentiveMessageCenterAttachmentDeleteButton", + "name": "apptentiveButtonBorder", + "printedName": "apptentiveButtonBorder", "children": [ { "kind": "TypeNominal", @@ -46298,18 +43983,17 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentDeleteButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveButtonBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveButtonBorderABvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", - "Available", "RawDocComment" ], "isFromExtension": true, @@ -46328,8 +44012,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentDeleteButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveButtonBorder", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveButtonBorderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46358,8 +44042,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentDeleteButton:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveButtonBorder:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveButtonBorderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46382,15 +44066,13 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE22apptentiveButtonBorderABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveButtonBorderABvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -46401,8 +44083,8 @@ }, { "kind": "Var", - "name": "apptentiveAttachmentRemoveButton", - "printedName": "apptentiveAttachmentRemoveButton", + "name": "apptentiveDialogSeparator", + "printedName": "apptentiveDialogSeparator", "children": [ { "kind": "TypeNominal", @@ -46412,13 +44094,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveAttachmentRemoveButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDialogSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDialogSeparatorABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -46440,8 +44123,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveAttachmentRemoveButton", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDialogSeparator", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDialogSeparatorABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46470,8 +44153,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveAttachmentRemoveButton:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDialogSeparator:", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDialogSeparatorABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46494,8 +44177,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABvMZ", + "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveDialogSeparatorABvMZ", + "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDialogSeparatorABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46508,27 +44191,141 @@ "accessorKind": "_modify" } ] + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UIColor", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIColor", + "declAttributes": [ + "Available", + "ObjC", + "SynthesizedProtocol", + "NonSendable", + "Sendable", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "_ExpressibleByColorLiteral", + "printedName": "_ExpressibleByColorLiteral", + "usr": "s:s26_ExpressibleByColorLiteralP", + "mangledName": "$ss26_ExpressibleByColorLiteralP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIFont", + "printedName": "UIFont", + "children": [ { "kind": "Var", - "name": "apptentiveMessageCenterComposeBoxBackground", - "printedName": "apptentiveMessageCenterComposeBoxBackground", + "name": "apptentiveMessageCenterTextInputPlaceholder", + "printedName": "apptentiveMessageCenterTextInputPlaceholder", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInputPlaceholder", + "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -46544,14 +44341,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxBackground", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInputPlaceholder", + "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46574,14 +44371,14 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxBackground:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInputPlaceholder:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46604,8 +44401,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46621,24 +44418,25 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterComposeBoxSeparator", - "printedName": "apptentiveMessageCenterComposeBoxSeparator", + "name": "apptentiveMessageCenterTextInput", + "printedName": "apptentiveMessageCenterTextInput", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInput", + "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -46654,14 +44452,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxSeparator", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInput", + "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46684,14 +44482,14 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxSeparator:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInput:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46714,8 +44512,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46731,24 +44529,25 @@ }, { "kind": "Var", - "name": "apptentiveTextInputBorderSelected", - "printedName": "apptentiveTextInputBorderSelected", + "name": "apptentiveTextInputPlaceholder", + "printedName": "apptentiveTextInputPlaceholder", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorderSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInputPlaceholder", + "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -46764,14 +44563,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorderSelected", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInputPlaceholder", + "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46794,14 +44593,14 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorderSelected:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInputPlaceholder:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46824,8 +44623,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46841,24 +44640,25 @@ }, { "kind": "Var", - "name": "apptentiveDisclaimerLabel", - "printedName": "apptentiveDisclaimerLabel", + "name": "apptentiveMessageCenterStatus", + "printedName": "apptentiveMessageCenterStatus", "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDisclaimerLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterStatus", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -46874,14 +44674,14 @@ "children": [ { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDisclaimerLabel", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterStatus", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46904,14 +44704,14 @@ }, { "kind": "TypeNominal", - "name": "UIColor", - "printedName": "UIKit.UIColor", - "usr": "c:objc(cs)UIColor" + "name": "UIFont", + "printedName": "UIKit.UIFont", + "usr": "c:objc(cs)UIFont" } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDisclaimerLabel:", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterStatus:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46934,8 +44734,8 @@ } ], "declKind": "Accessor", - "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", - "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -46948,103 +44748,11 @@ "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIColor", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIColor", - "declAttributes": [ - "Available", - "ObjC", - "SynthesizedProtocol", - "NonSendable", - "Sendable", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)NSObject", - "isExternal": true, - "inheritsConvenienceInitializers": true, - "superclassNames": [ - "ObjectiveC.NSObject" - ], - "conformances": [ - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - }, - { - "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": "_ExpressibleByColorLiteral", - "printedName": "_ExpressibleByColorLiteral", - "usr": "s:s26_ExpressibleByColorLiteralP", - "mangledName": "$ss26_ExpressibleByColorLiteralP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "UIFont", - "printedName": "UIFont", - "children": [ { "kind": "Var", - "name": "apptentiveMessageCenterTextInputPlaceholder", - "printedName": "apptentiveMessageCenterTextInputPlaceholder", + "name": "apptentiveMessageCenterGreetingTitle", + "printedName": "apptentiveMessageCenterGreetingTitle", "children": [ { "kind": "TypeNominal", @@ -47054,13 +44762,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInputPlaceholder", - "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47082,8 +44791,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInputPlaceholder", - "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47112,8 +44821,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInputPlaceholder:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingTitle:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47136,8 +44845,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47153,8 +44862,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterTextInput", - "printedName": "apptentiveMessageCenterTextInput", + "name": "apptentiveMessageCenterGreetingBody", + "printedName": "apptentiveMessageCenterGreetingBody", "children": [ { "kind": "TypeNominal", @@ -47164,13 +44873,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInput", - "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingBody", + "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47192,8 +44902,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInput", - "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingBody", + "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47222,8 +44932,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInput:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingBody:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47246,8 +44956,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47263,8 +44973,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInputPlaceholder", - "printedName": "apptentiveTextInputPlaceholder", + "name": "apptentiveMessageCenterAttachmentLabel", + "printedName": "apptentiveMessageCenterAttachmentLabel", "children": [ { "kind": "TypeNominal", @@ -47274,13 +44984,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInputPlaceholder", - "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterAttachmentLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47302,8 +45013,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInputPlaceholder", - "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterAttachmentLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47332,8 +45043,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInputPlaceholder:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterAttachmentLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47356,8 +45067,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47373,8 +45084,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterStatus", - "printedName": "apptentiveMessageCenterStatus", + "name": "apptentiveQuestionLabel", + "printedName": "apptentiveQuestionLabel", "children": [ { "kind": "TypeNominal", @@ -47384,13 +45095,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterStatus", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveQuestionLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47412,8 +45124,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterStatus", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveQuestionLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47442,8 +45154,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterStatus:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveQuestionLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47466,8 +45178,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47483,8 +45195,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterGreetingTitle", - "printedName": "apptentiveMessageCenterGreetingTitle", + "name": "apptentiveTermsOfServiceLabel", + "printedName": "apptentiveTermsOfServiceLabel", "children": [ { "kind": "TypeNominal", @@ -47494,13 +45206,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingTitle", - "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTermsOfServiceLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47522,8 +45235,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingTitle", - "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTermsOfServiceLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47552,8 +45265,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingTitle:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTermsOfServiceLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47576,8 +45289,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47593,8 +45306,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterGreetingBody", - "printedName": "apptentiveMessageCenterGreetingBody", + "name": "apptentiveChoiceLabel", + "printedName": "apptentiveChoiceLabel", "children": [ { "kind": "TypeNominal", @@ -47604,13 +45317,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingBody", - "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveChoiceLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47632,8 +45346,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingBody", - "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveChoiceLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47662,8 +45376,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingBody:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveChoiceLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47686,8 +45400,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47703,8 +45417,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageCenterAttachmentLabel", - "printedName": "apptentiveMessageCenterAttachmentLabel", + "name": "apptentiveMessageLabel", + "printedName": "apptentiveMessageLabel", "children": [ { "kind": "TypeNominal", @@ -47714,13 +45428,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterAttachmentLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47742,8 +45457,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterAttachmentLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47772,8 +45487,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterAttachmentLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47796,8 +45511,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47813,8 +45528,8 @@ }, { "kind": "Var", - "name": "apptentiveQuestionLabel", - "printedName": "apptentiveQuestionLabel", + "name": "apptentiveMinMaxLabel", + "printedName": "apptentiveMinMaxLabel", "children": [ { "kind": "TypeNominal", @@ -47824,13 +45539,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveQuestionLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMinMaxLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47852,8 +45568,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveQuestionLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMinMaxLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47882,8 +45598,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveQuestionLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMinMaxLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47906,8 +45622,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47923,8 +45639,8 @@ }, { "kind": "Var", - "name": "apptentiveTermsOfServiceLabel", - "printedName": "apptentiveTermsOfServiceLabel", + "name": "apptentiveSenderLabel", + "printedName": "apptentiveSenderLabel", "children": [ { "kind": "TypeNominal", @@ -47934,13 +45650,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTermsOfServiceLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSenderLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -47962,8 +45679,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTermsOfServiceLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSenderLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -47992,8 +45709,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTermsOfServiceLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSenderLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48016,8 +45733,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48033,8 +45750,8 @@ }, { "kind": "Var", - "name": "apptentiveChoiceLabel", - "printedName": "apptentiveChoiceLabel", + "name": "apptentiveMessageDateLabel", + "printedName": "apptentiveMessageDateLabel", "children": [ { "kind": "TypeNominal", @@ -48044,13 +45761,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveChoiceLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageDateLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48072,8 +45790,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveChoiceLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageDateLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48102,8 +45820,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveChoiceLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageDateLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48126,8 +45844,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48143,8 +45861,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageLabel", - "printedName": "apptentiveMessageLabel", + "name": "apptentiveInstructionsLabel", + "printedName": "apptentiveInstructionsLabel", "children": [ { "kind": "TypeNominal", @@ -48154,13 +45872,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveInstructionsLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48182,8 +45901,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveInstructionsLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48212,8 +45931,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveInstructionsLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48236,8 +45955,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48253,8 +45972,8 @@ }, { "kind": "Var", - "name": "apptentiveMinMaxLabel", - "printedName": "apptentiveMinMaxLabel", + "name": "apptentiveSurveyIntroductionLabel", + "printedName": "apptentiveSurveyIntroductionLabel", "children": [ { "kind": "TypeNominal", @@ -48264,13 +45983,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMinMaxLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSurveyIntroductionLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48292,8 +46012,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMinMaxLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSurveyIntroductionLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48322,8 +46042,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMinMaxLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSurveyIntroductionLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48346,8 +46066,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48363,8 +46083,8 @@ }, { "kind": "Var", - "name": "apptentiveSenderLabel", - "printedName": "apptentiveSenderLabel", + "name": "apptentiveSubmitLabel", + "printedName": "apptentiveSubmitLabel", "children": [ { "kind": "TypeNominal", @@ -48374,20 +46094,19 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSenderLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvpZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "declAttributes": [ - "HasInitialValue", "Final", - "HasStorage", + "Custom", "AccessControl", - "ObjC", + "Available", "RawDocComment" ], "isFromExtension": true, - "hasStorage": true, "accessors": [ { "kind": "Accessor", @@ -48402,13 +46121,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSenderLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvgZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -48432,13 +46149,11 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSenderLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvsZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, - "implicit": true, "declAttributes": [ - "ObjC", "Final" ], "isFromExtension": true, @@ -48456,13 +46171,15 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, + "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ + "Available", "Available", "Final" ], @@ -48473,8 +46190,8 @@ }, { "kind": "Var", - "name": "apptentiveMessageDateLabel", - "printedName": "apptentiveMessageDateLabel", + "name": "apptentiveSubmitStatusLabel", + "printedName": "apptentiveSubmitStatusLabel", "children": [ { "kind": "TypeNominal", @@ -48484,13 +46201,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageDateLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitStatusLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48512,8 +46230,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageDateLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitStatusLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48542,8 +46260,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageDateLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitStatusLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48566,8 +46284,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48583,8 +46301,8 @@ }, { "kind": "Var", - "name": "apptentiveInstructionsLabel", - "printedName": "apptentiveInstructionsLabel", + "name": "apptentiveDisclaimerLabel", + "printedName": "apptentiveDisclaimerLabel", "children": [ { "kind": "TypeNominal", @@ -48594,13 +46312,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveInstructionsLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDisclaimerLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48622,8 +46341,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveInstructionsLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDisclaimerLabel", + "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48652,8 +46371,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveInstructionsLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDisclaimerLabel:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48676,8 +46395,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48693,8 +46412,8 @@ }, { "kind": "Var", - "name": "apptentiveSurveyIntroductionLabel", - "printedName": "apptentiveSurveyIntroductionLabel", + "name": "apptentiveSubmitButtonTitle", + "printedName": "apptentiveSubmitButtonTitle", "children": [ { "kind": "TypeNominal", @@ -48704,13 +46423,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSurveyIntroductionLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitButtonTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48732,8 +46452,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSurveyIntroductionLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitButtonTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48762,8 +46482,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSurveyIntroductionLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitButtonTitle:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48786,8 +46506,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48803,8 +46523,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitLabel", - "printedName": "apptentiveSubmitLabel", + "name": "apptentiveTextInput", + "printedName": "apptentiveTextInput", "children": [ { "kind": "TypeNominal", @@ -48814,17 +46534,17 @@ } ], "declKind": "Var", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInput", + "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvpZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", - "Available", + "ObjC", "RawDocComment" ], "isFromExtension": true, @@ -48843,12 +46563,13 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInput", + "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -48872,12 +46593,13 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInput:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, "declAttributes": [ + "ObjC", "Final" ], "isFromExtension": true, @@ -48895,15 +46617,13 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ", "moduleName": "ApptentiveKit", "static": true, - "deprecated": true, "implicit": true, "intro_iOS": "2.0", "declAttributes": [ - "Available", "Available", "Final" ], @@ -48914,8 +46634,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitStatusLabel", - "printedName": "apptentiveSubmitStatusLabel", + "name": "apptentiveDialogTitle", + "printedName": "apptentiveDialogTitle", "children": [ { "kind": "TypeNominal", @@ -48925,13 +46645,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitStatusLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDialogTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveDialogTitleABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -48953,8 +46674,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitStatusLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDialogTitle", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveDialogTitleABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -48983,8 +46704,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitStatusLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDialogTitle:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveDialogTitleABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49007,8 +46728,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveDialogTitleABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveDialogTitleABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49024,8 +46745,8 @@ }, { "kind": "Var", - "name": "apptentiveDisclaimerLabel", - "printedName": "apptentiveDisclaimerLabel", + "name": "apptentiveDialogText", + "printedName": "apptentiveDialogText", "children": [ { "kind": "TypeNominal", @@ -49035,13 +46756,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDisclaimerLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDialogText", + "mangledName": "$sSo6UIFontC13ApptentiveKitE20apptentiveDialogTextABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -49063,8 +46785,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDisclaimerLabel", - "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDialogText", + "mangledName": "$sSo6UIFontC13ApptentiveKitE20apptentiveDialogTextABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49093,8 +46815,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDisclaimerLabel:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDialogText:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE20apptentiveDialogTextABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49117,8 +46839,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE20apptentiveDialogTextABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE20apptentiveDialogTextABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49134,8 +46856,8 @@ }, { "kind": "Var", - "name": "apptentiveSubmitButtonTitle", - "printedName": "apptentiveSubmitButtonTitle", + "name": "apptentiveDialogMessage", + "printedName": "apptentiveDialogMessage", "children": [ { "kind": "TypeNominal", @@ -49145,13 +46867,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitButtonTitle", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDialogMessage", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveDialogMessageABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -49173,8 +46896,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitButtonTitle", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDialogMessage", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveDialogMessageABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49203,8 +46926,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitButtonTitle:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDialogMessage:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveDialogMessageABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49227,8 +46950,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE23apptentiveDialogMessageABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveDialogMessageABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49244,8 +46967,8 @@ }, { "kind": "Var", - "name": "apptentiveTextInput", - "printedName": "apptentiveTextInput", + "name": "apptentiveDialogButton", + "printedName": "apptentiveDialogButton", "children": [ { "kind": "TypeNominal", @@ -49255,13 +46978,14 @@ } ], "declKind": "Var", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInput", - "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvpZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDialogButton", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveDialogButtonABvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "Final", + "Custom", "HasStorage", "AccessControl", "ObjC", @@ -49283,8 +47007,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInput", - "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvgZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDialogButton", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveDialogButtonABvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49313,8 +47037,8 @@ } ], "declKind": "Accessor", - "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInput:", - "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvsZ", + "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDialogButton:", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveDialogButtonABvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49337,8 +47061,8 @@ } ], "declKind": "Accessor", - "usr": "s:So6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ", - "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ", + "usr": "s:So6UIFontC13ApptentiveKitE22apptentiveDialogButtonABvMZ", + "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveDialogButtonABvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49381,6 +47105,20 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -49429,6 +47167,13 @@ "printedName": "CustomDebugStringConvertible", "usr": "s:s28CustomDebugStringConvertibleP", "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" } ] }, @@ -49611,6 +47356,20 @@ "isFromExtension": true, "enumRawTypeName": "Int", "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "Equatable", @@ -49753,117 +47512,352 @@ "intro_iOS": "2.0", "declAttributes": [ "Available", - "Final" + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UIToolbar", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIToolbar", + "declAttributes": [ + "Available", + "ObjC", + "NonSendable", + "Custom", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)UIView", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "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": "__DefaultCustomPlaygroundQuickLookable", + "printedName": "__DefaultCustomPlaygroundQuickLookable", + "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", + "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CGFloat", + "printedName": "CGFloat", + "children": [ + { + "kind": "Var", + "name": "apptentiveButtonBorderWidth", + "printedName": "apptentiveButtonBorderWidth", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_Macosx": "10.0", + "intro_iOS": "2.0", + "intro_tvOS": "9.0", + "intro_watchOS": "1.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available", + "Available" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "apptentiveDialogCornerRadius", + "printedName": "apptentiveDialogCornerRadius", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvpZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvgZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvsZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvMZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE28apptentiveDialogCornerRadiusACvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_Macosx": "10.0", + "intro_iOS": "2.0", + "intro_tvOS": "9.0", + "intro_watchOS": "1.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available", + "Available" ], "isFromExtension": true, "accessorKind": "_modify" } ] - } - ], - "declKind": "Class", - "usr": "c:objc(cs)UIToolbar", - "moduleName": "UIKit", - "isOpen": true, - "intro_iOS": "2.0", - "objc_name": "UIToolbar", - "declAttributes": [ - "Available", - "ObjC", - "NonSendable", - "Custom", - "Dynamic" - ], - "superclassUsr": "c:objc(cs)UIView", - "isExternal": 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", - "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": "__DefaultCustomPlaygroundQuickLookable", - "printedName": "__DefaultCustomPlaygroundQuickLookable", - "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP", - "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP" - }, - { - "kind": "Conformance", - "name": "Sendable", - "printedName": "Sendable", - "usr": "s:s8SendableP", - "mangledName": "$ss8SendableP" - } - ] - }, - { - "kind": "TypeDecl", - "name": "CGFloat", - "printedName": "CGFloat", - "children": [ { "kind": "Var", - "name": "apptentiveButtonBorderWidth", - "printedName": "apptentiveButtonBorderWidth", + "name": "apptentiveDialogButtonSpacing", + "printedName": "apptentiveDialogButtonSpacing", "children": [ { "kind": "TypeNominal", @@ -49873,13 +47867,14 @@ } ], "declKind": "Var", - "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ", - "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvpZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvpZ", "moduleName": "ApptentiveKit", "static": true, "declAttributes": [ "HasInitialValue", "HasStorage", + "Custom", "AccessControl", "RawDocComment" ], @@ -49899,8 +47894,8 @@ } ], "declKind": "Accessor", - "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ", - "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvgZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvgZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49925,8 +47920,8 @@ } ], "declKind": "Accessor", - "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ", - "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvsZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvsZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49945,8 +47940,8 @@ } ], "declKind": "Accessor", - "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ", - "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ", + "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvMZ", + "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE29apptentiveDialogButtonSpacingACvMZ", "moduleName": "ApptentiveKit", "static": true, "implicit": true, @@ -49990,6 +47985,20 @@ ], "isExternal": true, "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, { "kind": "Conformance", "name": "SignedNumeric", @@ -50226,6 +48235,20 @@ "usr": "s:s8SendableP", "mangledName": "$ss8SendableP" }, + { + "kind": "Conformance", + "name": "SendableMetatype", + "printedName": "SendableMetatype", + "usr": "s:s16SendableMetatypeP", + "mangledName": "$ss16SendableMetatypeP" + }, + { + "kind": "Conformance", + "name": "BitwiseCopyable", + "printedName": "BitwiseCopyable", + "usr": "s:s15BitwiseCopyableP", + "mangledName": "$ss15BitwiseCopyableP" + }, { "kind": "Conformance", "name": "_FormatSpecifiable", @@ -50270,13 +48293,6 @@ "usr": "s:s21_ObjectiveCBridgeableP", "mangledName": "$ss21_ObjectiveCBridgeableP" }, - { - "kind": "Conformance", - "name": "VectorArithmetic", - "printedName": "VectorArithmetic", - "usr": "s:7SwiftUI16VectorArithmeticP", - "mangledName": "$s7SwiftUI16VectorArithmeticP" - }, { "kind": "Conformance", "name": "_FormatSpecifiable", @@ -50299,6 +48315,13 @@ "usr": "s:7SwiftUI18_FormatSpecifiableP", "mangledName": "$s7SwiftUI18_FormatSpecifiableP" }, + { + "kind": "Conformance", + "name": "VectorArithmetic", + "printedName": "VectorArithmetic", + "usr": "s:7SwiftUI16VectorArithmeticP", + "mangledName": "$s7SwiftUI16VectorArithmeticP" + }, { "kind": "Conformance", "name": "Animatable", @@ -50322,6702 +48345,5090 @@ "mangledName": "$s7SwiftUI10AnimatableP" } ] + }, + { + "kind": "TypeDecl", + "name": "CGSize", + "printedName": "CGSize", + "children": [ + { + "kind": "Var", + "name": "apptentiveThumbnail", + "printedName": "apptentiveThumbnail", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Var", + "usr": "s:So6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvpZ", + "mangledName": "$sSo6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Accessor", + "usr": "s:So6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvgZ", + "mangledName": "$sSo6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Accessor", + "usr": "s:So6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvsZ", + "mangledName": "$sSo6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:So6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvMZ", + "mangledName": "$sSo6CGSizeV13ApptentiveKitE19apptentiveThumbnailABvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:@S@CGSize", + "moduleName": "CoreFoundation", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "_ObjectiveCBridgeable", + "printedName": "_ObjectiveCBridgeable", + "children": [ + { + "kind": "TypeWitness", + "name": "_ObjectiveCType", + "printedName": "_ObjectiveCType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSValue", + "printedName": "Foundation.NSValue", + "usr": "c:objc(cs)NSValue" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "CustomReflectable", + "printedName": "CustomReflectable", + "usr": "s:s17CustomReflectableP", + "mangledName": "$ss17CustomReflectableP" + }, + { + "kind": "Conformance", + "name": "_CustomPlaygroundQuickLookable", + "printedName": "_CustomPlaygroundQuickLookable", + "usr": "s:s30_CustomPlaygroundQuickLookableP", + "mangledName": "$ss30_CustomPlaygroundQuickLookableP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "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": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + }, + { + "kind": "Conformance", + "name": "Animatable", + "printedName": "Animatable", + "children": [ + { + "kind": "TypeWitness", + "name": "AnimatableData", + "printedName": "AnimatableData", + "children": [ + { + "kind": "TypeNominal", + "name": "AnimatablePair", + "printedName": "SwiftUI.AnimatablePair", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "usr": "s:7SwiftUI14AnimatablePairV" + } + ] + } + ], + "usr": "s:7SwiftUI10AnimatableP", + "mangledName": "$s7SwiftUI10AnimatableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UICornerConfiguration", + "printedName": "UICornerConfiguration", + "children": [ + { + "kind": "Var", + "name": "apptentiveDialogButton", + "printedName": "apptentiveDialogButton", + "children": [ + { + "kind": "TypeNominal", + "name": "UICornerConfiguration", + "printedName": "UIKit.UICornerConfiguration", + "usr": "s:5UIKit21UICornerConfigurationV" + } + ], + "declKind": "Var", + "usr": "s:5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvpZ", + "mangledName": "$s5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvpZ", + "moduleName": "ApptentiveKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UICornerConfiguration", + "printedName": "UIKit.UICornerConfiguration", + "usr": "s:5UIKit21UICornerConfigurationV" + } + ], + "declKind": "Accessor", + "usr": "s:5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvgZ", + "mangledName": "$s5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvgZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UICornerConfiguration", + "printedName": "UIKit.UICornerConfiguration", + "usr": "s:5UIKit21UICornerConfigurationV" + } + ], + "declKind": "Accessor", + "usr": "s:5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvsZ", + "mangledName": "$s5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvsZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvMZ", + "mangledName": "$s5UIKit21UICornerConfigurationV13ApptentiveKitE22apptentiveDialogButtonACvMZ", + "moduleName": "ApptentiveKit", + "static": true, + "implicit": true, + "intro_iOS": "26.0", + "intro_tvOS": "26.0", + "declAttributes": [ + "Available", + "Available", + "Available" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:5UIKit21UICornerConfigurationV", + "mangledName": "$s5UIKit21UICornerConfigurationV", + "moduleName": "UIKit", + "intro_iOS": "26.0", + "intro_tvOS": "26.0", + "declAttributes": [ + "Available", + "Available", + "Available", + "Available" + ], + "isExternal": 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": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Copyable", + "printedName": "Copyable", + "usr": "s:s8CopyableP", + "mangledName": "$ss8CopyableP" + }, + { + "kind": "Conformance", + "name": "Escapable", + "printedName": "Escapable", + "usr": "s:s9EscapableP", + "mangledName": "$ss9EscapableP" + } + ] } ], "json_format_version": 8 }, "ConstValues": [ { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift", "kind": "BooleanLiteral", - "offset": 448, + "offset": 465, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift", "kind": "IntegerLiteral", - "offset": 492, + "offset": 509, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "BooleanLiteral", - "offset": 2009, + "offset": 5693, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "BooleanLiteral", - "offset": 3658, - "length": 4, - "value": "true" + "offset": 8013, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", + "kind": "IntegerLiteral", + "offset": 8298, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", + "kind": "StringLiteral", + "offset": 9409, + "length": 13, + "value": "\"placeholder\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", + "kind": "Array", + "offset": 9436, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", + "kind": "BooleanLiteral", + "offset": 9489, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", + "kind": "BooleanLiteral", + "offset": 9522, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "BooleanLiteral", - "offset": 25379, + "offset": 9557, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "BooleanLiteral", - "offset": 25646, + "offset": 33026, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "IntegerLiteral", - "offset": 50519, + "offset": 61946, "length": 2, "value": "60" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "IntegerLiteral", - "offset": 50591, + "offset": 62018, "length": 3, "value": "600" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Backend.swift", "kind": "BooleanLiteral", - "offset": 50666, + "offset": 62093, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 292, "length": 25, "value": "\"message_center_fallback\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 365, "length": 22, "value": "\"MC Unavailable Title\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 433, "length": 33, "value": "\"Message Center is not Available\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 477, "length": 41, "value": "\"Title for note saying MC is unavailable\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 568, "length": 24, "value": "\"MC Unavailable Message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 638, "length": 62, "value": "\"Make sure your device can access the internet and try again.\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 711, "length": 43, "value": "\"Message for note saying MC is unavailable\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 808, "length": 31, "value": "\"MC Unavailable Dismiss Button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 885, "length": 4, "value": "\"OK\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", "offset": 900, "length": 56, "value": "\"Dismiss button title for note saying MC is unavailable\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", - "offset": 1086, + "offset": 1122, "length": 9, "value": "\"dismiss\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "Array", - "offset": 1160, + "offset": 1196, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", - "offset": 1303, + "offset": 1339, "length": 11, "value": "\"TextModal\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "Array", - "offset": 1451, + "offset": 1487, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "Array", - "offset": 1618, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/WebVewController.swift", - "kind": "StringLiteral", - "offset": 191, - "length": 17, - "value": "\"ApptentiveKit.WebViewController\"" + "offset": 1654, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", "kind": "StringLiteral", - "offset": 743, - "length": 8, - "value": "\"action\"" + "offset": 1673, + "length": 13, + "value": "\"placeholder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", - "kind": "StringLiteral", - "offset": 783, - "length": 9, - "value": "\"invokes\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift", + "kind": "BooleanLiteral", + "offset": 1716, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", "kind": "StringLiteral", - "offset": 743, + "offset": 1601, "length": 8, "value": "\"action\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", "kind": "StringLiteral", - "offset": 783, + "offset": 1641, "length": 9, "value": "\"invokes\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", - "kind": "StringLiteral", - "offset": 1034, - "length": 10, - "value": "\"alt_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift", "kind": "StringLiteral", - "offset": 1034, + "offset": 1892, "length": 10, "value": "\"alt_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", "kind": "IntegerLiteral", "offset": 390, "length": 3, "value": "270" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", "kind": "Array", "offset": 494, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", "kind": "BooleanLiteral", "offset": 534, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift", - "kind": "StringLiteral", - "offset": 283, - "length": 20, - "value": "\"ApptentiveKit.DialogViewController\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 819, - "length": 14, - "value": "\"content_type\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 866, - "length": 15, - "value": "\"original_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 819, "length": 14, "value": "\"content_type\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 866, "length": 15, "value": "\"original_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1147, - "length": 15, - "value": "\"profile_photo\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1147, "length": 15, "value": "\"profile_photo\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1294, - "length": 9, - "value": "\"inbound\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1375, - "length": 8, - "value": "\"hidden\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1415, - "length": 11, - "value": "\"automated\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1455, - "length": 12, - "value": "\"created_at\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1294, "length": 9, "value": "\"inbound\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1375, "length": 8, "value": "\"hidden\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1415, "length": 11, "value": "\"automated\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1455, "length": 12, "value": "\"created_at\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1572, "length": 11, "value": "\"ends_with\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", "kind": "StringLiteral", "offset": 1607, "length": 10, "value": "\"has_more\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1572, - "length": 11, - "value": "\"ends_with\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/AttachmentView.swift", + "kind": "IntegerLiteral", + "offset": 595, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift", - "kind": "StringLiteral", - "offset": 1607, - "length": 10, - "value": "\"has_more\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/AttachmentView.swift", + "kind": "IntegerLiteral", + "offset": 599, + "length": 1, + "value": "8" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", - "kind": "StringLiteral", - "offset": 485, + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/AttachmentView.swift", + "kind": "BooleanLiteral", + "offset": 438, "length": 5, - "value": "\"new\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", - "kind": "StringLiteral", - "offset": 519, - "length": 6, - "value": "\"self\"" + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", "kind": "StringLiteral", - "offset": 485, + "offset": 496, "length": 5, "value": "\"new\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", "kind": "StringLiteral", - "offset": 519, + "offset": 530, "length": 6, "value": "\"self\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", - "kind": "StringLiteral", - "offset": 624, - "length": 8, - "value": "\"target\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/NavigateToLink\/NavigateToLinkConfiguration.swift", "kind": "StringLiteral", - "offset": 624, + "offset": 635, "length": 8, "value": "\"target\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5383, - "length": 9, - "value": "\"os_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5418, - "length": 12, - "value": "\"os_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5454, - "length": 10, - "value": "\"os_build\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5543, - "length": 23, - "value": "\"content_size_category\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5592, - "length": 12, - "value": "\"locale_raw\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5638, - "length": 21, - "value": "\"locale_country_code\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5694, - "length": 22, - "value": "\"locale_language_code\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5757, - "length": 20, - "value": "\"integration_config\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5815, - "length": 15, - "value": "\"advertiser_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", - "kind": "StringLiteral", - "offset": 5857, - "length": 13, - "value": "\"custom_data\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5383, "length": 9, "value": "\"os_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5418, "length": 12, "value": "\"os_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5454, "length": 10, "value": "\"os_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5543, "length": 23, "value": "\"content_size_category\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5592, "length": 12, "value": "\"locale_raw\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5638, "length": 21, "value": "\"locale_country_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5694, "length": 22, "value": "\"locale_language_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5757, "length": 20, "value": "\"integration_config\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5815, "length": 15, "value": "\"advertiser_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/APayload.swift", "kind": "StringLiteral", "offset": 5857, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 1580, - "length": 5, - "value": "\"alg\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 1610, - "length": 5, - "value": "\"typ\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 1580, "length": 5, "value": "\"alg\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 1610, "length": 5, "value": "\"typ\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 1690, - "length": 7, - "value": "\"HS256\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 1728, - "length": 7, - "value": "\"HS512\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 1690, "length": 7, "value": "\"HS256\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 1728, "length": 7, "value": "\"HS512\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 1800, - "length": 5, - "value": "\"JWT\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 1800, "length": 5, "value": "\"JWT\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4369, - "length": 5, - "value": "\"iss\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4401, - "length": 5, - "value": "\"exp\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4434, - "length": 5, - "value": "\"sub\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4468, - "length": 5, - "value": "\"aud\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4503, - "length": 5, - "value": "\"nbf\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4537, - "length": 5, - "value": "\"iat\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", - "kind": "StringLiteral", - "offset": 4568, - "length": 5, - "value": "\"jti\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4369, "length": 5, "value": "\"iss\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4401, "length": 5, "value": "\"exp\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4434, "length": 5, "value": "\"sub\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4468, "length": 5, "value": "\"aud\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4503, "length": 5, "value": "\"nbf\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4537, "length": 5, "value": "\"iat\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/JWT.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/JWT.swift", "kind": "StringLiteral", "offset": 4568, "length": 5, "value": "\"jti\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", - "kind": "StringLiteral", - "offset": 599, - "length": 12, - "value": "\"full_width\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", - "kind": "StringLiteral", - "offset": 639, - "length": 12, - "value": "\"align_left\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", "kind": "StringLiteral", - "offset": 680, - "length": 13, - "value": "\"align_right\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", - "kind": "StringLiteral", - "offset": 720, - "length": 8, - "value": "\"center\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", - "kind": "StringLiteral", - "offset": 599, + "offset": 579, "length": 12, "value": "\"full_width\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", "kind": "StringLiteral", - "offset": 639, + "offset": 619, "length": 12, "value": "\"align_left\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", "kind": "StringLiteral", - "offset": 680, + "offset": 660, "length": 13, "value": "\"align_right\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel+Image.swift", "kind": "StringLiteral", - "offset": 720, + "offset": 700, "length": 8, "value": "\"center\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 384, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 407, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 428, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 870, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 1000, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift", "kind": "IntegerLiteral", "offset": 1126, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/ResourceManager.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Fresh Install\/FreshLoader.swift", "kind": "BooleanLiteral", - "offset": 2627, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 8, - "value": "\"center\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 264, - "length": 6, - "value": "\"left\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 7, - "value": "\"right\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 239, - "length": 8, - "value": "\"center\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 264, - "length": 6, - "value": "\"left\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 288, - "length": 7, - "value": "\"right\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 353, - "length": 15, - "value": "\"-apple-system\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 383, - "length": 7, - "value": "\".SFUI\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 353, - "length": 15, - "value": "\"-apple-system\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/String+HTML.swift", - "kind": "StringLiteral", - "offset": 383, - "length": 7, - "value": "\".SFUI\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", - "kind": "StringLiteral", - "offset": 982, - "length": 11, - "value": "\"device_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", - "kind": "StringLiteral", - "offset": 1018, - "length": 11, - "value": "\"person_id\"" + "offset": 2446, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", - "kind": "StringLiteral", - "offset": 1059, - "length": 16, - "value": "\"encryption_key\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/ResourceManager.swift", + "kind": "BooleanLiteral", + "offset": 2319, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", "kind": "StringLiteral", "offset": 982, "length": 11, "value": "\"device_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", "kind": "StringLiteral", "offset": 1018, "length": 11, "value": "\"person_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/SessionRequest.swift", "kind": "StringLiteral", "offset": 1059, "length": 16, "value": "\"encryption_key\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 244, + "offset": 257, "length": 10, "value": "\"Roster.B\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 293, + "offset": 306, "length": 16, "value": "\"Conversation.B\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 352, + "offset": 365, "length": 16, "value": "\"PayloadQueue.B\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 403, + "offset": 416, "length": 15, "value": "\"MessageList.B\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 466, + "offset": 479, "length": 13, "value": "\"Resources.B\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift", "kind": "StringLiteral", - "offset": 519, + "offset": 532, "length": 7, "value": "\"plist\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel+Message.swift", - "kind": "StringLiteral", - "offset": 4159, - "length": 10, - "value": "\"ApptentiveKit.Attachment\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Saver.swift", - "kind": "StringLiteral", - "offset": 2528, - "length": 26, - "value": "\"ApptentiveKit.EncryptedPropertyListSaver\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "kind": "IntegerLiteral", + "offset": 255, + "length": 3, + "value": "100" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 583, + "offset": 625, "length": 3, "value": "1.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 667, + "offset": 709, "length": 3, "value": "6.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 980, + "offset": 1022, "length": 3, "value": "1.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 991, + "offset": 1033, "length": 4, "value": "-5.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1005, + "offset": 1047, "length": 3, "value": "1.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1017, + "offset": 1059, "length": 4, "value": "-5.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1075, + "offset": 1117, "length": 4, "value": "16.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1132, + "offset": 1174, "length": 4, "value": "16.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1309, + "offset": 1351, "length": 3, "value": "6.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1320, + "offset": 1362, "length": 3, "value": "2.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1333, + "offset": 1375, "length": 3, "value": "6.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1345, + "offset": 1387, "length": 3, "value": "2.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1402, + "offset": 1444, "length": 4, "value": "14.5" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift", "kind": "FloatLiteral", - "offset": 1459, + "offset": 1501, "length": 4, "value": "14.5" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift", "kind": "StringLiteral", - "offset": 5627, + "offset": 5485, "length": 30, "value": "\"Should have a view model set\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift", "kind": "StringLiteral", - "offset": 6119, + "offset": 5977, "length": 36, "value": "\"Should have a choice question set.\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", "kind": "BooleanLiteral", "offset": 277, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", "kind": "StringLiteral", "offset": 875, "length": 12, "value": "\"totalCount\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", "kind": "StringLiteral", "offset": 922, "length": 14, "value": "\"versionCount\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", "kind": "StringLiteral", "offset": 969, "length": 12, "value": "\"buildCount\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", "kind": "StringLiteral", "offset": 1015, "length": 13, "value": "\"lastInvoked\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift", - "kind": "StringLiteral", - "offset": 199, - "length": 11, - "value": "\"ApptentiveKit.LegacyCount\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/ErrorResponse.swift", - "kind": "StringLiteral", - "offset": 361, - "length": 12, - "value": "\"error_type\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/ErrorResponse.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/ErrorResponse.swift", "kind": "StringLiteral", - "offset": 361, + "offset": 371, "length": 12, "value": "\"error_type\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 678, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 6638, + "offset": 283, "length": 16, "value": "\"com.apptentive\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 6658, + "offset": 303, "length": 13, "value": "\".apptentive\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 6957, - "length": 13, - "value": "\".engagement\"" + "offset": 471, + "length": 9, + "value": "\"default\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7104, - "length": 14, - "value": "\".interaction\"" + "offset": 612, + "length": 12, + "value": "\"engagement\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7244, - "length": 10, - "value": "\".network\"" + "offset": 757, + "length": 13, + "value": "\"interaction\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7379, - "length": 10, - "value": "\".payload\"" + "offset": 895, + "length": 9, + "value": "\"network\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7511, - "length": 12, - "value": "\".targeting\"" + "offset": 1028, + "length": 9, + "value": "\"payload\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7649, + "offset": 1158, "length": 11, - "value": "\".messages\"" + "value": "\"targeting\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7792, - "length": 14, - "value": "\".attachments\"" + "offset": 1294, + "length": 10, + "value": "\"messages\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", "kind": "StringLiteral", - "offset": 7926, - "length": 12, - "value": "\".resources\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8708, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8722, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8738, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8755, - "length": 5, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8770, - "length": 8, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8788, - "length": 5, - "value": "6" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8708, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8722, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8738, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8755, - "length": 5, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8770, - "length": 8, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8788, - "length": 5, - "value": "6" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8708, - "length": 4, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8722, - "length": 6, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8738, - "length": 7, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8755, - "length": 5, - "value": "4" + "offset": 1435, + "length": 13, + "value": "\"attachments\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8770, - "length": 8, - "value": "5" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Logging.swift", + "kind": "StringLiteral", + "offset": 1567, + "length": 11, + "value": "\"resources\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift", - "kind": "IntegerLiteral", - "offset": 8788, + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", + "kind": "BooleanLiteral", + "offset": 1807, "length": 5, - "value": "6" + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "IntegerLiteral", - "offset": 4932, + "offset": 2690, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "IntegerLiteral", - "offset": 6843, + "offset": 3810, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "IntegerLiteral", - "offset": 6905, + "offset": 3841, "length": 1, - "value": "0" + "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "IntegerLiteral", - "offset": 6843, + "offset": 3885, "length": 1, - "value": "1" + "value": "3" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "IntegerLiteral", - "offset": 6905, + "offset": 3947, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "BooleanLiteral", - "offset": 26940, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 515, - "length": 10, - "value": "\"ApptentiveKit.Apptentive\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31435, - "length": 19, - "value": "\"INVALID_ALGORITHM\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31481, - "length": 17, - "value": "\"MALFORMED_TOKEN\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31523, - "length": 15, - "value": "\"INVALID_TOKEN\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31566, - "length": 19, - "value": "\"MISSING_SUB_CLAIM\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31616, - "length": 22, - "value": "\"MISMATCHED_SUB_CLAIM\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31666, - "length": 19, - "value": "\"INVALID_SUB_CLAIM\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31710, - "length": 15, - "value": "\"EXPIRED_TOKEN\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31750, - "length": 15, - "value": "\"REVOKED_TOKEN\"" + "offset": 5868, + "length": 52, + "value": "\"https:\/\/\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31791, - "length": 17, - "value": "\"MISSING_APP_KEY\"" + "offset": 5883, + "length": 1, + "value": "\".api.digital.\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31840, - "length": 23, - "value": "\"MISSING_APP_SIGNATURE\"" + "offset": 5905, + "length": 1, + "value": "\".alchemer.com\/\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", - "kind": "StringLiteral", - "offset": 31899, - "length": 28, - "value": "\"INVALID_KEY_SIGNATURE_PAIR\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", + "kind": "BooleanLiteral", + "offset": 24961, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31435, + "offset": 31618, "length": 19, "value": "\"INVALID_ALGORITHM\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31481, + "offset": 31664, "length": 17, "value": "\"MALFORMED_TOKEN\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31523, + "offset": 31706, "length": 15, "value": "\"INVALID_TOKEN\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31566, + "offset": 31749, "length": 19, "value": "\"MISSING_SUB_CLAIM\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31616, + "offset": 31799, "length": 22, "value": "\"MISMATCHED_SUB_CLAIM\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31666, + "offset": 31849, "length": 19, "value": "\"INVALID_SUB_CLAIM\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31710, + "offset": 31893, "length": 15, "value": "\"EXPIRED_TOKEN\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31750, + "offset": 31933, "length": 15, "value": "\"REVOKED_TOKEN\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31791, + "offset": 31974, "length": 17, "value": "\"MISSING_APP_KEY\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31840, + "offset": 32023, "length": 23, "value": "\"MISSING_APP_SIGNATURE\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive.swift", "kind": "StringLiteral", - "offset": 31899, + "offset": 32082, "length": 28, "value": "\"INVALID_KEY_SIGNATURE_PAIR\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", + "kind": "BooleanLiteral", + "offset": 418, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", "kind": "StringLiteral", "offset": 1144, "length": 6, "value": "\"name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", "kind": "StringLiteral", "offset": 1185, "length": 14, "value": "\"emailAddress\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", "kind": "StringLiteral", "offset": 1233, "length": 13, "value": "\"mParticleId\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", "kind": "StringLiteral", "offset": 1279, "length": 12, "value": "\"customData\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift", - "kind": "StringLiteral", - "offset": 201, - "length": 12, - "value": "\"ApptentiveKit.LegacyPerson\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", "kind": "Array", "offset": 263, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", "kind": "IntegerLiteral", "offset": 306, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", "kind": "IntegerLiteral", "offset": 526, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", "kind": "Dictionary", "offset": 661, "length": 3, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "kind": "IntegerLiteral", + "offset": 6487, + "length": 2, + "value": "50" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "kind": "IntegerLiteral", + "offset": 6499, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", "kind": "IntegerLiteral", "offset": 6922, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "kind": "IntegerLiteral", + "offset": 7043, + "length": 3, + "value": "350" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift", + "kind": "IntegerLiteral", + "offset": 7056, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", "kind": "FloatLiteral", "offset": 355, "length": 3, "value": "1.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", "kind": "FloatLiteral", "offset": 439, "length": 3, "value": "6.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "IntegerLiteral", + "offset": 987, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "IntegerLiteral", + "offset": 1039, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "IntegerLiteral", + "offset": 1140, + "length": 2, + "value": "52" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", "kind": "FloatLiteral", - "offset": 991, + "offset": 1198, + "length": 4, + "value": "21.0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "FloatLiteral", + "offset": 1259, + "length": 4, + "value": "21.0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "IntegerLiteral", + "offset": 1343, + "length": 2, + "value": "44" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "kind": "FloatLiteral", + "offset": 1401, "length": 4, "value": "16.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", "kind": "FloatLiteral", - "offset": 1048, + "offset": 1462, "length": 4, "value": "16.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", - "kind": "IntegerLiteral", - "offset": 1100, - "length": 1, - "value": "0" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria+Decodable.swift", + "kind": "StringLiteral", + "offset": 5617, + "length": 5, + "value": "\"sec\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", - "kind": "IntegerLiteral", - "offset": 1152, - "length": 1, - "value": "0" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria+Decodable.swift", + "kind": "StringLiteral", + "offset": 5656, + "length": 7, + "value": "\"_type\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift", - "kind": "IntegerLiteral", - "offset": 1204, - "length": 2, - "value": "44" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "kind": "StringLiteral", + "offset": 1462, + "length": 31, + "value": "\"EEE, dd MMM yyyy HH:mm:ss zzz\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "kind": "StringLiteral", + "offset": 1544, + "length": 13, + "value": "\"en_US_POSIX\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "kind": "StringLiteral", + "offset": 1615, + "length": 5, + "value": "\"GMT\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "kind": "BooleanLiteral", + "offset": 9790, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14535, + "offset": 15861, "length": 16, "value": "\"APPTENTIVE-KEY\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14593, + "offset": 15919, "length": 22, "value": "\"APPTENTIVE-SIGNATURE\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14657, + "offset": 15983, "length": 22, "value": "\"APPTENTIVE-ENCRYPTED\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14712, + "offset": 16038, "length": 15, "value": "\"X-API-Version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14761, + "offset": 16087, "length": 14, "value": "\"Content-Type\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14811, + "offset": 16137, "length": 15, "value": "\"Authorization\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14862, + "offset": 16188, "length": 16, "value": "\"Accept-Charset\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14915, + "offset": 16241, "length": 17, "value": "\"Accept-Language\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 14961, + "offset": 16287, "length": 8, "value": "\"Accept\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift", "kind": "StringLiteral", - "offset": 15001, + "offset": 16327, "length": 12, "value": "\"User-Agent\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "BooleanLiteral", "offset": 334, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1413, "length": 7, "value": "\"state\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1453, "length": 24, "value": "\"conversationIdentifier\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1515, "length": 29, "value": "\"conversationLocalIdentifier\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1580, "length": 10, "value": "\"fileName\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1616, "length": 5, "value": "\"JWT\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1650, "length": 8, "value": "\"userId\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "StringLiteral", "offset": 1694, "length": 15, "value": "\"encryptionKey\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1776, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1791, - "length": 16, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1821, - "length": 13, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1848, - "length": 9, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1871, - "length": 8, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1893, - "length": 9, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1776, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1791, - "length": 16, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1821, - "length": 13, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1848, - "length": 9, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1871, - "length": 8, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "IntegerLiteral", - "offset": 1893, - "length": 9, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1776, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1791, "length": 16, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1821, "length": 13, "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1848, "length": 9, "value": "3" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1871, "length": 8, "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", "kind": "IntegerLiteral", "offset": 1893, "length": 9, "value": "5" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift", - "kind": "StringLiteral", - "offset": 237, - "length": 30, - "value": "\"ApptentiveKit.LegacyConversationMetadataItem\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift", - "kind": "FloatLiteral", - "offset": 366, - "length": 3, - "value": "5.0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift", - "kind": "FloatLiteral", - "offset": 392, - "length": 3, - "value": "2.0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift", - "kind": "BooleanLiteral", - "offset": 415, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", "kind": "StringLiteral", "offset": 1034, "length": 13, "value": "\"app_release\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", - "kind": "StringLiteral", - "offset": 1034, - "length": 13, - "value": "\"app_release\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", "kind": "StringLiteral", "offset": 1485, "length": 11, "value": "\"device_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", "kind": "StringLiteral", "offset": 1521, "length": 11, "value": "\"person_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", "kind": "StringLiteral", "offset": 1562, "length": 16, "value": "\"encryption_key\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", - "kind": "StringLiteral", - "offset": 1485, - "length": 11, - "value": "\"device_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", - "kind": "StringLiteral", - "offset": 1521, - "length": 11, - "value": "\"person_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SecureTokenStore.swift", "kind": "StringLiteral", - "offset": 1562, + "offset": 417, "length": 16, - "value": "\"encryption_key\"" + "value": "\"com.apptentive\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "BooleanLiteral", - "offset": 5249, + "offset": 5311, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "BooleanLiteral", - "offset": 5407, + "offset": 5469, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "StringLiteral", - "offset": 10862, + "offset": 11548, "length": 8, "value": "\"single\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "StringLiteral", - "offset": 10902, + "offset": 11588, "length": 7, "value": "\"intro\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "StringLiteral", - "offset": 10943, + "offset": 11629, "length": 9, "value": "\"success\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "BooleanLiteral", - "offset": 20330, + "offset": 18623, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "BooleanLiteral", - "offset": 20386, + "offset": 18679, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift", "kind": "Array", - "offset": 22115, + "offset": 20434, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyLoader.swift", - "kind": "StringLiteral", - "offset": 178, - "length": 12, - "value": "\"ApptentiveKit.LegacyLoader\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageList.swift", "kind": "BooleanLiteral", "offset": 395, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageList.swift", "kind": "Array", "offset": 1485, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageList.swift", "kind": "BooleanLiteral", "offset": 1577, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageList.swift", "kind": "BooleanLiteral", "offset": 1601, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 3968, - "length": 22, - "value": "\"cf_bundle_identifier\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4014, - "length": 32, - "value": "\"cf_bundle_short_version_string\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4068, - "length": 19, - "value": "\"cf_bundle_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4119, - "length": 19, - "value": "\"app_store_receipt\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4167, - "length": 7, - "value": "\"debug\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4209, - "length": 19, - "value": "\"overriding_styles\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4261, - "length": 19, - "value": "\"deployment_target\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4305, - "length": 13, - "value": "\"dt_compiler\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4348, - "length": 19, - "value": "\"dt_platform_build\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4396, - "length": 18, - "value": "\"dt_platform_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4446, - "length": 21, - "value": "\"dt_platform_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4492, - "length": 14, - "value": "\"dt_sdk_build\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4530, - "length": 13, - "value": "\"dt_sdk_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4565, - "length": 10, - "value": "\"dt_xcode\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4602, - "length": 16, - "value": "\"dt_xcode_build\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4645, - "length": 13, - "value": "\"sdk_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4697, - "length": 26, - "value": "\"sdk_programming_language\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4753, - "length": 17, - "value": "\"sdk_author_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4798, - "length": 14, - "value": "\"sdk_platform\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4851, - "length": 26, - "value": "\"sdk_distribution_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 4913, - "length": 18, - "value": "\"sdk_distribution\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 3968, "length": 22, "value": "\"cf_bundle_identifier\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4014, "length": 32, "value": "\"cf_bundle_short_version_string\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4068, "length": 19, "value": "\"cf_bundle_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4119, "length": 19, "value": "\"app_store_receipt\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4167, "length": 7, "value": "\"debug\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4209, "length": 19, "value": "\"overriding_styles\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4261, "length": 19, "value": "\"deployment_target\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4305, "length": 13, "value": "\"dt_compiler\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4348, "length": 19, "value": "\"dt_platform_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4396, "length": 18, "value": "\"dt_platform_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4446, "length": 21, "value": "\"dt_platform_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4492, "length": 14, "value": "\"dt_sdk_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4530, "length": 13, "value": "\"dt_sdk_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4565, "length": 10, "value": "\"dt_xcode\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4602, "length": 16, "value": "\"dt_xcode_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4645, "length": 13, "value": "\"sdk_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4697, "length": 26, "value": "\"sdk_programming_language\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4753, "length": 17, "value": "\"sdk_author_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4798, "length": 14, "value": "\"sdk_platform\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4851, "length": 26, "value": "\"sdk_distribution_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 4913, "length": 18, "value": "\"sdk_distribution\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", - "kind": "StringLiteral", - "offset": 5093, - "length": 13, - "value": "\"has_receipt\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift", "kind": "StringLiteral", "offset": 5093, "length": 13, "value": "\"has_receipt\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "FloatLiteral", - "offset": 369, + "offset": 384, "length": 4, "value": "0.30" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "IntegerLiteral", - "offset": 541, + "offset": 556, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "IntegerLiteral", - "offset": 809, + "offset": 824, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "kind": "BooleanLiteral", + "offset": 1758, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "FloatLiteral", - "offset": 3697, + "offset": 3283, "length": 4, "value": "0.33" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "BooleanLiteral", - "offset": 3800, + "offset": 3386, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "BooleanLiteral", - "offset": 3848, + "offset": 3434, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "BooleanLiteral", - "offset": 35779, + "offset": 11155, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "kind": "Array", + "offset": 11348, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", "kind": "BooleanLiteral", - "offset": 43159, + "offset": 33291, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", - "kind": "StringLiteral", - "offset": 180, - "length": 20, - "value": "\"ApptentiveKit.SurveyViewController\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", - "kind": "StringLiteral", - "offset": 180, - "length": 20, - "value": "\"ApptentiveKit.SurveyViewController\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift", + "kind": "BooleanLiteral", + "offset": 40790, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", "kind": "Array", - "offset": 1675, + "offset": 1726, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", "kind": "StringLiteral", - "offset": 2136, + "offset": 2187, "length": 9, "value": "\"invalid\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", "kind": "StringLiteral", - "offset": 2160, + "offset": 2211, "length": 24, "value": "\"An error has occurred.\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", "kind": "StringLiteral", - "offset": 2206, + "offset": 2257, "length": 7, "value": "\"Close\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift", "kind": "Array", - "offset": 2229, + "offset": 2280, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 4266, - "length": 6, - "value": "\"$and\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 4375, - "length": 5, - "value": "\"$or\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 4482, - "length": 6, - "value": "\"$not\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 4266, + "offset": 4567, "length": 6, "value": "\"$and\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 4375, + "offset": 4676, "length": 5, "value": "\"$or\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 4482, + "offset": 4783, "length": 6, "value": "\"$not\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5479, - "length": 9, - "value": "\"$exists\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5510, - "length": 5, - "value": "\"$ne\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5534, - "length": 5, - "value": "\"$eq\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5567, - "length": 6, - "value": "\"$lte\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5594, - "length": 5, - "value": "\"$lt\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5623, - "length": 5, - "value": "\"$gt\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5659, - "length": 6, - "value": "\"$gte\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5688, - "length": 14, - "value": "\"$starts_with\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5723, - "length": 12, - "value": "\"$ends_with\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 11, - "value": "\"$contains\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 9, - "value": "\"$before\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5813, - "length": 8, - "value": "\"$after\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5479, + "offset": 5780, "length": 9, "value": "\"$exists\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5510, + "offset": 5811, "length": 5, "value": "\"$ne\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5534, + "offset": 5835, "length": 5, "value": "\"$eq\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5567, + "offset": 5868, "length": 6, "value": "\"$lte\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5594, + "offset": 5895, "length": 5, "value": "\"$lt\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5623, + "offset": 5924, "length": 5, "value": "\"$gt\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5659, + "offset": 5960, "length": 6, "value": "\"$gte\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5688, + "offset": 5989, "length": 14, "value": "\"$starts_with\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 5723, + "offset": 6024, "length": 12, "value": "\"$ends_with\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5756, - "length": 11, - "value": "\"$contains\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5786, - "length": 9, - "value": "\"$before\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", - "kind": "StringLiteral", - "offset": 5813, - "length": 8, - "value": "\"$after\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", - "kind": "StringLiteral", - "offset": 278, - "length": 33, - "value": "\"ApptentiveKit.MessageCenterComposeContainerView\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2360, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4202, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "IntegerLiteral", - "offset": 4214, - "length": 2, - "value": "44" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "StringLiteral", - "offset": 36567, - "length": 17, - "value": "\"SELF MATCHES %@\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "StringLiteral", - "offset": 36586, - "length": 51, - "value": "\"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,64}\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "StringLiteral", - "offset": 37821, - "length": 12, - "value": "\"message_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", - "kind": "StringLiteral", - "offset": 37821, - "length": 12, - "value": "\"message_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", - "kind": "BooleanLiteral", - "offset": 305, - "length": 4, - "value": "true" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", - "kind": "StringLiteral", - "offset": 967, - "length": 12, - "value": "\"engagement\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", - "kind": "StringLiteral", - "offset": 1008, - "length": 8, - "value": "\"person\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", - "kind": "StringLiteral", - "offset": 1045, - "length": 8, - "value": "\"device\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", - "kind": "StringLiteral", - "offset": 1082, - "length": 8, - "value": "\"random\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", + "kind": "StringLiteral", + "offset": 6057, + "length": 11, + "value": "\"$contains\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 220, - "length": 18, - "value": "\"ApptentiveKit.LegacyConversation\"" + "offset": 6087, + "length": 9, + "value": "\"$before\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift", "kind": "StringLiteral", - "offset": 1770, - "length": 30, - "value": "\"Should have a view model set\"" + "offset": 6114, + "length": 8, + "value": "\"$after\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", "kind": "BooleanLiteral", - "offset": 1559, - "length": 5, - "value": "false" + "offset": 3358, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", "kind": "IntegerLiteral", - "offset": 1669, + "offset": 3415, "length": 1, - "value": "1" + "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", "kind": "IntegerLiteral", - "offset": 1673, + "offset": 3427, "length": 1, - "value": "0" + "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", - "kind": "BooleanLiteral", - "offset": 1523, - "length": 5, - "value": "false" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", + "kind": "IntegerLiteral", + "offset": 3438, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Event.swift", - "kind": "StringLiteral", - "offset": 4639, - "length": 5, - "value": "\"#%\/\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", + "kind": "IntegerLiteral", + "offset": 3451, + "length": 1, + "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "Array", - "offset": 7259, + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageComposeView.swift", + "kind": "IntegerLiteral", + "offset": 3597, "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "BooleanLiteral", - "offset": 7283, - "length": 5, - "value": "false" + "value": "24" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "BooleanLiteral", - "offset": 8278, - "length": 5, - "value": "false" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", + "kind": "IntegerLiteral", + "offset": 1667, + "length": 1, + "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "BooleanLiteral", - "offset": 10809, - "length": 5, - "value": "false" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", + "kind": "IntegerLiteral", + "offset": 3509, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 15943, - "length": 13, - "value": "\"app_release\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", + "kind": "IntegerLiteral", + "offset": 3521, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", "kind": "StringLiteral", - "offset": 15943, - "length": 13, - "value": "\"app_release\"" + "offset": 34038, + "length": 17, + "value": "\"SELF MATCHES %@\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", "kind": "StringLiteral", - "offset": 18034, - "length": 19, - "value": "\"client_created_at\"" + "offset": 34057, + "length": 51, + "value": "\"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,64}\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift", "kind": "StringLiteral", - "offset": 18087, - "length": 30, - "value": "\"client_created_at_utc_offset\"" + "offset": 35292, + "length": 12, + "value": "\"message_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18143, - "length": 12, - "value": "\"session_id\"" + "offset": 573, + "length": 6, + "value": "\"None\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18177, - "length": 7, - "value": "\"token\"" + "offset": 607, + "length": 13, + "value": "\"Placeholder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18235, - "length": 13, - "value": "\"custom_data\"" + "offset": 653, + "length": 19, + "value": "\"Anonymous Pending\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18374, + "offset": 702, "length": 16, - "value": "\"interaction_id\"" + "value": "\"Legacy Pending\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18415, - "length": 6, - "value": "\"data\"" + "offset": 744, + "length": 11, + "value": "\"Anonymous\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18565, - "length": 7, - "value": "\"email\"" + "offset": 780, + "length": 11, + "value": "\"Logged In\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Debugging.swift", "kind": "StringLiteral", - "offset": 18618, - "length": 14, - "value": "\"mparticle_id\"" + "offset": 817, + "length": 12, + "value": "\"Logged Out\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 18697, - "length": 9, - "value": "\"os_name\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", + "kind": "BooleanLiteral", + "offset": 305, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", "kind": "StringLiteral", - "offset": 18732, + "offset": 967, "length": 12, - "value": "\"os_version\"" + "value": "\"engagement\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", "kind": "StringLiteral", - "offset": 18768, - "length": 10, - "value": "\"os_build\"" + "offset": 1008, + "length": 8, + "value": "\"person\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", "kind": "StringLiteral", - "offset": 18857, - "length": 23, - "value": "\"content_size_category\"" + "offset": 1045, + "length": 8, + "value": "\"device\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift", "kind": "StringLiteral", - "offset": 18906, - "length": 12, - "value": "\"locale_raw\"" + "offset": 1082, + "length": 8, + "value": "\"random\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift", "kind": "StringLiteral", - "offset": 18952, - "length": 21, - "value": "\"locale_country_code\"" + "offset": 1791, + "length": 30, + "value": "\"Should have a view model set\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19008, - "length": 22, - "value": "\"locale_language_code\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift", + "kind": "BooleanLiteral", + "offset": 1580, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19056, - "length": 12, - "value": "\"utc_offset\"" + "offset": 104, + "length": 3, + "value": "\"b\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19109, - "length": 20, - "value": "\"integration_config\"" + "offset": 130, + "length": 8, + "value": "\"strong\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19167, - "length": 15, - "value": "\"advertiser_id\"" + "offset": 161, + "length": 3, + "value": "\"i\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19262, - "length": 22, - "value": "\"cf_bundle_identifier\"" + "offset": 189, + "length": 4, + "value": "\"em\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19308, - "length": 32, - "value": "\"cf_bundle_short_version_string\"" + "offset": 219, + "length": 3, + "value": "\"u\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19362, - "length": 19, - "value": "\"cf_bundle_version\"" + "offset": 252, + "length": 3, + "value": "\"s\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19413, - "length": 19, - "value": "\"app_store_receipt\"" + "offset": 280, + "length": 4, + "value": "\"li\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19461, - "length": 7, - "value": "\"debug\"" + "offset": 314, + "length": 4, + "value": "\"ul\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19503, - "length": 19, - "value": "\"overriding_styles\"" + "offset": 346, + "length": 4, + "value": "\"ol\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19555, - "length": 19, - "value": "\"deployment_target\"" + "offset": 376, + "length": 3, + "value": "\"p\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19599, - "length": 13, - "value": "\"dt_compiler\"" + "offset": 399, + "length": 5, + "value": "\"div\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19642, - "length": 19, - "value": "\"dt_platform_build\"" + "offset": 425, + "length": 6, + "value": "\"span\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19690, - "length": 18, - "value": "\"dt_platform_name\"" + "offset": 450, + "length": 4, + "value": "\"br\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", "kind": "StringLiteral", - "offset": 19740, - "length": 21, - "value": "\"dt_platform_version\"" + "offset": 475, + "length": 3, + "value": "\"a\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19786, - "length": 14, - "value": "\"dt_sdk_build\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "Dictionary", + "offset": 1566, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19824, - "length": 13, - "value": "\"dt_sdk_name\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "Array", + "offset": 1600, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19859, - "length": 10, - "value": "\"dt_xcode\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "IntegerLiteral", + "offset": 1627, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19896, - "length": 16, - "value": "\"dt_xcode_build\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "BooleanLiteral", + "offset": 1657, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19939, - "length": 13, - "value": "\"sdk_version\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "IntegerLiteral", + "offset": 1691, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 19991, - "length": 26, - "value": "\"sdk_programming_language\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "Array", + "offset": 1786, + "length": 2, + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 20047, - "length": 17, - "value": "\"sdk_author_name\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/SimpleHTMLParser.swift", + "kind": "Dictionary", + "offset": 1867, + "length": 3, + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 20092, - "length": 14, - "value": "\"sdk_platform\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "kind": "IntegerLiteral", + "offset": 775, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 20145, - "length": 26, - "value": "\"sdk_distribution_version\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "kind": "IntegerLiteral", + "offset": 779, + "length": 1, + "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", - "kind": "StringLiteral", - "offset": 20207, - "length": 18, - "value": "\"sdk_distribution\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "kind": "IntegerLiteral", + "offset": 848, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "kind": "IntegerLiteral", + "offset": 852, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift", + "kind": "BooleanLiteral", + "offset": 629, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Event.swift", "kind": "StringLiteral", - "offset": 20296, - "length": 11, - "value": "\"automated\"" + "offset": 4674, + "length": 5, + "value": "\"#%\/\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "kind": "Array", + "offset": 7315, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "kind": "BooleanLiteral", + "offset": 7339, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "kind": "BooleanLiteral", + "offset": 8342, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "kind": "BooleanLiteral", + "offset": 10873, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20332, - "length": 8, - "value": "\"hidden\"" + "offset": 16003, + "length": 13, + "value": "\"app_release\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18034, + "offset": 18094, "length": 19, "value": "\"client_created_at\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18087, + "offset": 18147, "length": 30, "value": "\"client_created_at_utc_offset\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18143, + "offset": 18203, "length": 12, "value": "\"session_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18177, + "offset": 18237, "length": 7, "value": "\"token\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18235, + "offset": 18295, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18374, + "offset": 18434, "length": 16, "value": "\"interaction_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18415, + "offset": 18475, "length": 6, "value": "\"data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18565, + "offset": 18625, "length": 7, "value": "\"email\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18618, + "offset": 18678, "length": 14, "value": "\"mparticle_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18697, + "offset": 18757, "length": 9, "value": "\"os_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18732, + "offset": 18792, "length": 12, "value": "\"os_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18768, + "offset": 18828, "length": 10, "value": "\"os_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18857, + "offset": 18917, "length": 23, "value": "\"content_size_category\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18906, + "offset": 18966, "length": 12, "value": "\"locale_raw\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 18952, + "offset": 19012, "length": 21, "value": "\"locale_country_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19008, + "offset": 19068, "length": 22, "value": "\"locale_language_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19056, + "offset": 19116, "length": 12, "value": "\"utc_offset\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19109, + "offset": 19169, "length": 20, "value": "\"integration_config\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19167, + "offset": 19227, "length": 15, "value": "\"advertiser_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19262, + "offset": 19322, "length": 22, "value": "\"cf_bundle_identifier\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19308, + "offset": 19368, "length": 32, "value": "\"cf_bundle_short_version_string\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19362, + "offset": 19422, "length": 19, "value": "\"cf_bundle_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19413, + "offset": 19473, "length": 19, "value": "\"app_store_receipt\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19461, + "offset": 19521, "length": 7, "value": "\"debug\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19503, + "offset": 19563, "length": 19, "value": "\"overriding_styles\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19555, + "offset": 19615, "length": 19, "value": "\"deployment_target\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19599, + "offset": 19659, "length": 13, "value": "\"dt_compiler\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19642, + "offset": 19702, "length": 19, "value": "\"dt_platform_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19690, + "offset": 19750, "length": 18, "value": "\"dt_platform_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19740, + "offset": 19800, "length": 21, "value": "\"dt_platform_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19786, + "offset": 19846, "length": 14, "value": "\"dt_sdk_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19824, + "offset": 19884, "length": 13, "value": "\"dt_sdk_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19859, + "offset": 19919, "length": 10, "value": "\"dt_xcode\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19896, + "offset": 19956, "length": 16, "value": "\"dt_xcode_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19939, + "offset": 19999, "length": 13, "value": "\"sdk_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 19991, + "offset": 20051, "length": 26, "value": "\"sdk_programming_language\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20047, + "offset": 20107, "length": 17, "value": "\"sdk_author_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20092, + "offset": 20152, "length": 14, "value": "\"sdk_platform\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20145, + "offset": 20205, "length": 26, "value": "\"sdk_distribution_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20207, + "offset": 20267, "length": 18, "value": "\"sdk_distribution\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20296, + "offset": 20356, "length": 11, "value": "\"automated\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20332, + "offset": 20392, "length": 8, "value": "\"hidden\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift", "kind": "StringLiteral", - "offset": 20592, + "offset": 20652, "length": 8, "value": "\"file[]\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 595, - "length": 22, - "value": "\"support_display_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 646, - "length": 23, - "value": "\"support_display_email\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 701, - "length": 19, - "value": "\"support_image_url\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 749, - "length": 15, - "value": "\"hide_branding\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 794, - "length": 16, - "value": "\"message_center\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 846, - "length": 24, - "value": "\"message_center_enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 900, - "length": 17, - "value": "\"metrics_enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 957, - "length": 23, - "value": "\"apptimize_integration\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1017, - "length": 15, - "value": "\"collect_ad_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 595, - "length": 22, - "value": "\"support_display_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 646, - "length": 23, - "value": "\"support_display_email\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 701, - "length": 19, - "value": "\"support_image_url\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 749, - "length": 15, - "value": "\"hide_branding\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 794, - "length": 16, - "value": "\"message_center\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 846, - "length": 24, - "value": "\"message_center_enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 900, - "length": 17, - "value": "\"metrics_enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 957, - "length": 23, - "value": "\"apptimize_integration\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1017, - "length": 15, - "value": "\"collect_ad_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1402, - "length": 9, - "value": "\"fg_poll\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1457, - "length": 9, - "value": "\"bg_poll\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1499, - "length": 16, - "value": "\"email_required\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1553, - "length": 20, - "value": "\"notification_popup\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1402, + "offset": 1493, "length": 9, "value": "\"fg_poll\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1457, + "offset": 1548, "length": 9, "value": "\"bg_poll\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1499, - "length": 16, - "value": "\"email_required\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1553, - "length": 20, - "value": "\"notification_popup\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1746, - "length": 9, - "value": "\"enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift", - "kind": "StringLiteral", - "offset": 1746, - "length": 9, - "value": "\"enabled\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1293, + "offset": 1642, "length": 13, - "value": "\"submit_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1338, - "length": 18, - "value": "\"validation_error\"" + "value": "\"last_update\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1385, - "length": 13, - "value": "\"description\"" + "offset": 1685, + "length": 16, + "value": "\"message_center\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1430, + "offset": 1732, "length": 17, - "value": "\"success_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1482, - "length": 22, - "value": "\"show_success_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1533, - "length": 15, - "value": "\"required_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1609, - "length": 21, - "value": "\"close_confirm_title\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1671, - "length": 23, - "value": "\"close_confirm_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1743, - "length": 26, - "value": "\"close_confirm_close_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1817, - "length": 25, - "value": "\"close_confirm_back_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1877, - "length": 22, - "value": "\"terms_and_conditions\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1293, - "length": 13, - "value": "\"submit_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1338, - "length": 18, - "value": "\"validation_error\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1385, - "length": 13, - "value": "\"description\"" + "value": "\"hibernate_until\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Status.swift", "kind": "StringLiteral", - "offset": 1430, + "offset": 1780, "length": 17, - "value": "\"success_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1482, - "length": 22, - "value": "\"show_success_message\"" + "value": "\"metrics_enabled\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1533, - "length": 15, - "value": "\"required_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 464, + "length": 4, + "value": "17.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1609, - "length": 21, - "value": "\"close_confirm_title\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 535, + "length": 4, + "value": "13.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1671, - "length": 23, - "value": "\"close_confirm_message\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 606, + "length": 4, + "value": "12.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1743, - "length": 26, - "value": "\"close_confirm_close_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 677, + "length": 4, + "value": "11.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1817, - "length": 25, - "value": "\"close_confirm_back_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 751, + "length": 4, + "value": "15.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift", - "kind": "StringLiteral", - "offset": 1877, - "length": 22, - "value": "\"terms_and_conditions\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Theme.swift", + "kind": "FloatLiteral", + "offset": 821, + "length": 4, + "value": "16.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "StringLiteral", "offset": 350, "length": 5, "value": "\"ios\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "IntegerLiteral", "offset": 622, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "IntegerLiteral", "offset": 638, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 677, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "IntegerLiteral", "offset": 883, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "IntegerLiteral", "offset": 899, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 936, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 1091, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 1176, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 1288, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 2200, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AppRelease.swift", "kind": "BooleanLiteral", "offset": 2347, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", "kind": "StringLiteral", "offset": 266, "length": 32, "value": "\"com.apptentive.payloadEnqueued\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", "kind": "StringLiteral", "offset": 350, "length": 31, "value": "\"com.apptentive.payloadSending\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", "kind": "StringLiteral", "offset": 430, "length": 28, "value": "\"com.apptentive.payloadSent\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", "kind": "StringLiteral", "offset": 509, "length": 30, "value": "\"com.apptentive.payloadFailed\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift", "kind": "StringLiteral", "offset": 705, "length": 39, "value": "\"com.apptentive.apptentiveEventEngaged\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "StringLiteral", - "offset": 921, + "offset": 966, "length": 21, "value": "\"MessageCellReceived\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "StringLiteral", - "offset": 979, + "offset": 1024, "length": 17, "value": "\"MessageSentCell\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "StringLiteral", - "offset": 1038, + "offset": 1083, "length": 22, "value": "\"AutomatedMessageCell\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "kind": "BooleanLiteral", + "offset": 8080, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "BooleanLiteral", - "offset": 27554, + "offset": 26983, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "IntegerLiteral", - "offset": 27655, + "offset": 27084, "length": 6, "value": "0xFFFF" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", "kind": "IntegerLiteral", - "offset": 28105, + "offset": 27534, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 27, - "value": "\"ApptentiveKit.MessageCenterViewController\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPRequestRetrier.swift", + "kind": "FloatLiteral", + "offset": 3555, + "length": 3, + "value": "5.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift", - "kind": "StringLiteral", - "offset": 220, - "length": 27, - "value": "\"ApptentiveKit.MessageCenterViewController\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPRequestRetrier.swift", + "kind": "FloatLiteral", + "offset": 3581, + "length": 3, + "value": "2.0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPRequestRetrier.swift", "kind": "BooleanLiteral", - "offset": 1182, + "offset": 3604, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "kind": "BooleanLiteral", + "offset": 1269, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "BooleanLiteral", - "offset": 1286, + "offset": 1373, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "BooleanLiteral", - "offset": 1394, + "offset": 1481, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "IntegerLiteral", - "offset": 1766, + "offset": 1853, "length": 3, "value": "100" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", - "kind": "IntegerLiteral", - "offset": 2849, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "IntegerLiteral", - "offset": 6500, + "offset": 7516, "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", - "kind": "StringLiteral", - "offset": 9554, - "length": 24, - "value": "\"invoked_interaction_id\"" + "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", - "kind": "StringLiteral", - "offset": 9603, - "length": 11, - "value": "\"action_id\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "kind": "IntegerLiteral", + "offset": 7563, + "length": 1, + "value": "3" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "StringLiteral", - "offset": 9554, + "offset": 10389, "length": 24, "value": "\"invoked_interaction_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift", "kind": "StringLiteral", - "offset": 9603, + "offset": 10438, "length": 11, "value": "\"action_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 1277, + "offset": 1259, "length": 2, "value": "15" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 1381, + "offset": 1363, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "BooleanLiteral", - "offset": 1654, + "offset": 1636, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 2425, + "offset": 2427, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 4064, + "offset": 4066, "length": 2, "value": "36" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "FloatLiteral", - "offset": 4118, + "offset": 4120, "length": 7, "value": "22.3333" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 4177, + "offset": 4179, "length": 2, "value": "36" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 4229, + "offset": 4231, "length": 2, "value": "24" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", "kind": "IntegerLiteral", - "offset": 4283, + "offset": 4285, "length": 2, "value": "24" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/ProfileView.swift", "kind": "BooleanLiteral", - "offset": 4394, - "length": 5, - "value": "false" + "offset": 329, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/ProfileView.swift", "kind": "BooleanLiteral", - "offset": 4670, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift", - "kind": "StringLiteral", - "offset": 296, - "length": 10, - "value": "\"ApptentiveKit.DialogView\"" + "offset": 755, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", "kind": "BooleanLiteral", "offset": 292, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", "kind": "StringLiteral", "offset": 886, "length": 14, "value": "\"interactions\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", "kind": "StringLiteral", "offset": 933, "length": 12, "value": "\"codePoints\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift", - "kind": "StringLiteral", - "offset": 209, - "length": 16, - "value": "\"ApptentiveKit.LegacyEngagement\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift", + "kind": "BooleanLiteral", + "offset": 342, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift", "kind": "StringLiteral", "offset": 770, "length": 15, "value": "\"random_values\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift", - "kind": "StringLiteral", - "offset": 201, - "length": 12, - "value": "\"ApptentiveKit.LegacyRandom\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift", + "kind": "BooleanLiteral", + "offset": 337, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift", "kind": "StringLiteral", "offset": 750, "length": 12, "value": "\"customData\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift", - "kind": "StringLiteral", - "offset": 201, - "length": 12, - "value": "\"ApptentiveKit.LegacyDevice\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria+Logging.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Targeting\/Criteria+Logging.swift", "kind": "IntegerLiteral", - "offset": 4400, + "offset": 4430, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/EditProfileViewController.swift", - "kind": "StringLiteral", - "offset": 183, - "length": 25, - "value": "\"ApptentiveKit.EditProfileViewController\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadata.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadata.swift", "kind": "BooleanLiteral", "offset": 322, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadata.swift", - "kind": "StringLiteral", - "offset": 229, - "length": 26, - "value": "\"ApptentiveKit.LegacyConversationMetadata\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", - "kind": "StringLiteral", - "offset": 1018, - "length": 7, - "value": "\"email\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", - "kind": "StringLiteral", - "offset": 1053, - "length": 14, - "value": "\"mparticle_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", - "kind": "StringLiteral", - "offset": 1094, - "length": 13, - "value": "\"custom_data\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", "kind": "StringLiteral", "offset": 1018, "length": 7, "value": "\"email\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", "kind": "StringLiteral", "offset": 1053, "length": 14, "value": "\"mparticle_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift", "kind": "StringLiteral", "offset": 1094, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", - "kind": "StringLiteral", - "offset": 1026, - "length": 13, - "value": "\"custom_data\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", - "kind": "StringLiteral", - "offset": 1067, - "length": 11, - "value": "\"automated\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", - "kind": "StringLiteral", - "offset": 1103, - "length": 8, - "value": "\"hidden\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", "kind": "StringLiteral", "offset": 1026, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", "kind": "StringLiteral", "offset": 1067, "length": 11, "value": "\"automated\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift", "kind": "StringLiteral", "offset": 1103, "length": 8, "value": "\"hidden\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 21099, + "offset": 14199, "length": 5, "value": "15411" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23299, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23373, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23443, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23510, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23581, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23669, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23744, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23796, - "length": 1, - "value": "7" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23852, - "length": 1, - "value": "8" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23924, - "length": 1, - "value": "9" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 24007, - "length": 2, - "value": "10" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 24145, - "length": 2, - "value": "11" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 23299, + "offset": 16236, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23373, + "offset": 16310, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23443, + "offset": 16380, "length": 1, "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23510, + "offset": 16447, "length": 1, "value": "3" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23581, + "offset": 16518, "length": 1, "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23669, + "offset": 16606, "length": 1, "value": "5" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23744, + "offset": 16681, "length": 1, "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23796, + "offset": 16733, "length": 1, "value": "7" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23852, + "offset": 16789, "length": 1, "value": "8" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 23924, + "offset": 16861, "length": 1, "value": "9" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 24007, + "offset": 16944, "length": 2, "value": "10" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 24145, + "offset": 17082, "length": 2, "value": "11" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "BooleanLiteral", - "offset": 25125, + "offset": 18058, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "BooleanLiteral", - "offset": 26514, - "length": 5, - "value": "false" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "StringLiteral", - "offset": 24283, - "length": 23, - "value": "\"ApptentiveKit.ApptentiveConfiguration\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 27878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 27956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28052, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28115, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 27878, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 27956, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28052, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28115, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28365, - "length": 1, - "value": "0" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28423, - "length": 1, - "value": "1" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28471, - "length": 1, - "value": "2" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28520, - "length": 1, - "value": "3" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28575, - "length": 1, - "value": "4" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28659, - "length": 1, - "value": "5" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28724, - "length": 1, - "value": "6" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "IntegerLiteral", - "offset": 28365, + "offset": 19939, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28423, + "offset": 19997, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28471, + "offset": 20045, "length": 1, "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28520, + "offset": 20094, "length": 1, "value": "3" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28575, + "offset": 20149, "length": 1, "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28659, + "offset": 20233, "length": 1, "value": "5" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", "kind": "IntegerLiteral", - "offset": 28724, + "offset": 20298, "length": 1, "value": "6" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift", - "kind": "StringLiteral", - "offset": 29276, - "length": 18, - "value": "\"ApptentiveKit.TermsAndConditions\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2476, - "length": 9, - "value": "\"os_name\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2511, - "length": 12, - "value": "\"os_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2547, - "length": 10, - "value": "\"os_build\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2636, - "length": 23, - "value": "\"content_size_category\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2685, - "length": 12, - "value": "\"locale_raw\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2731, - "length": 21, - "value": "\"locale_country_code\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2787, - "length": 22, - "value": "\"locale_language_code\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2850, - "length": 20, - "value": "\"integration_config\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2908, - "length": 15, - "value": "\"advertiser_id\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", - "kind": "StringLiteral", - "offset": 2950, - "length": 13, - "value": "\"custom_data\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2476, "length": 9, "value": "\"os_name\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2511, "length": 12, "value": "\"os_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2547, "length": 10, "value": "\"os_build\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2636, "length": 23, "value": "\"content_size_category\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2685, "length": 12, "value": "\"locale_raw\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2731, "length": 21, "value": "\"locale_country_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2787, "length": 22, "value": "\"locale_language_code\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2850, "length": 20, "value": "\"integration_config\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2908, "length": 15, "value": "\"advertiser_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift", "kind": "StringLiteral", "offset": 2950, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", "kind": "StringLiteral", - "offset": 228, + "offset": 241, "length": 16, "value": "\"Conversation.A\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", "kind": "StringLiteral", - "offset": 279, + "offset": 292, "length": 16, "value": "\"PayloadQueue.A\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", "kind": "StringLiteral", - "offset": 330, + "offset": 343, "length": 15, "value": "\"MessageList.A\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Migration\/A\/ALoader.swift", "kind": "StringLiteral", - "offset": 377, - "length": 7, - "value": "\"plist\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 6614, - "length": 14, - "value": "\"Distribution\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 6645, + "offset": 390, "length": 7, "value": "\"plist\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "Array", - "offset": 6804, - "length": 2, - "value": "[]" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 6887, - "length": 28, - "value": "\"CFBundleShortVersionString\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 6979, - "length": 65, - "value": "\"Unable to read SDK version from ApptentiveKit's Info.plist file\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 7065, - "length": 13, - "value": "\"Unavailable\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 7164, - "length": 28, - "value": "\"CFBundleShortVersionString\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 7313, - "length": 133, - "value": "\"ApptentiveKit framework is damaged! Version in Info.plist (\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 7398, - "length": 1, - "value": "\") does not match SDK version (\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift", - "kind": "StringLiteral", - "offset": 7444, - "length": 1, - "value": "\")\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/HostContext.swift", + "kind": "BooleanLiteral", + "offset": 4926, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "StringLiteral", - "offset": 982, + "offset": 1083, "length": 7, "value": "\"error\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "StringLiteral", - "offset": 1018, + "offset": 1119, "length": 9, "value": "\"payload\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 2469, + "offset": 3191, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 5766, + "offset": 6832, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 5889, + "offset": 6955, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 5990, + "offset": 7056, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 6128, + "offset": 7194, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", + "kind": "BooleanLiteral", + "offset": 7703, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PayloadSender.swift", "kind": "BooleanLiteral", - "offset": 6445, + "offset": 11970, "length": 4, "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyBackgroundView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyBackgroundView.swift", "kind": "Array", "offset": 295, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyBackgroundView.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyBackgroundView.swift", "kind": "Array", "offset": 350, "length": 2, "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", - "kind": "IntegerLiteral", - "offset": 1392, - "length": 2, - "value": "44" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "BooleanLiteral", + "offset": 3112, + "length": 4, + "value": "true" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", - "kind": "IntegerLiteral", - "offset": 1404, + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "BooleanLiteral", + "offset": 3443, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "Array", + "offset": 3586, "length": 2, - "value": "44" + "value": "[]" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", - "kind": "BooleanLiteral", - "offset": 2594, - "length": 4, - "value": "true" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "StringLiteral", + "offset": 3617, + "length": 7, + "value": "\"draft\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", "kind": "BooleanLiteral", - "offset": 2907, + "offset": 3681, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", - "kind": "StringLiteral", - "offset": 2625, - "length": 16, - "value": "\"interaction_id\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "IntegerLiteral", + "offset": 3728, + "length": 2, + "value": "30" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", - "kind": "StringLiteral", - "offset": 2666, - "length": 6, - "value": "\"data\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "IntegerLiteral", + "offset": 3772, + "length": 3, + "value": "300" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", - "kind": "StringLiteral", - "offset": 2704, - "length": 13, - "value": "\"custom_data\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "IntegerLiteral", + "offset": 3866, + "length": 1, + "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/MessageManager.swift", + "kind": "IntegerLiteral", + "offset": 3944, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", "kind": "StringLiteral", "offset": 2625, "length": 16, "value": "\"interaction_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", "kind": "StringLiteral", "offset": 2666, "length": 6, "value": "\"data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift", "kind": "StringLiteral", "offset": 2704, "length": 13, "value": "\"custom_data\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", "kind": "IntegerLiteral", - "offset": 648, + "offset": 636, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", "kind": "IntegerLiteral", - "offset": 750, + "offset": 738, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1251, - "length": 13, - "value": "\"description\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1295, - "length": 17, - "value": "\"success_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1353, - "length": 22, - "value": "\"show_success_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1407, - "length": 18, - "value": "\"validation_error\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1454, - "length": 15, - "value": "\"required_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1508, - "length": 21, - "value": "\"close_confirm_title\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1570, - "length": 23, - "value": "\"close_confirm_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1643, - "length": 26, - "value": "\"close_confirm_close_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1718, - "length": 25, - "value": "\"close_confirm_back_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1778, - "length": 22, - "value": "\"terms_and_conditions\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1829, - "length": 15, - "value": "\"question_sets\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1869, - "length": 11, - "value": "\"render_as\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1913, - "length": 19, - "value": "\"intro_button_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", + "kind": "IntegerLiteral", + "offset": 1589, + "length": 3, + "value": "270" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 1967, - "length": 21, - "value": "\"success_button_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift", + "kind": "IntegerLiteral", + "offset": 1602, + "length": 2, + "value": "45" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2019, - "length": 17, - "value": "\"disclaimer_text\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/Random.swift", + "kind": "BooleanLiteral", + "offset": 1441, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1251, + "offset": 3164, "length": 13, "value": "\"description\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1295, + "offset": 3208, "length": 17, "value": "\"success_message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1353, + "offset": 3266, "length": 22, "value": "\"show_success_message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1407, + "offset": 3320, "length": 18, "value": "\"validation_error\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1454, + "offset": 3367, "length": 15, "value": "\"required_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1508, + "offset": 3421, "length": 21, "value": "\"close_confirm_title\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1570, + "offset": 3483, "length": 23, "value": "\"close_confirm_message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1643, + "offset": 3556, "length": 26, "value": "\"close_confirm_close_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1718, + "offset": 3631, "length": 25, "value": "\"close_confirm_back_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1778, + "offset": 3691, "length": 22, "value": "\"terms_and_conditions\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1829, + "offset": 3742, "length": 15, "value": "\"question_sets\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1869, + "offset": 3782, "length": 11, "value": "\"render_as\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1913, + "offset": 3826, "length": 19, "value": "\"intro_button_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 1967, + "offset": 3880, "length": 21, "value": "\"success_button_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 2019, + "offset": 3932, "length": 17, "value": "\"disclaimer_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2731, - "length": 7, - "value": "\"value\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2823, - "length": 15, - "value": "\"error_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2899, - "length": 16, - "value": "\"answer_choices\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2949, - "length": 16, - "value": "\"min_selections\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2999, - "length": 16, - "value": "\"max_selections\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3078, - "length": 15, - "value": "\"freeform_hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3123, - "length": 5, - "value": "\"min\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3157, - "length": 5, - "value": "\"max\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3195, - "length": 11, - "value": "\"min_label\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3239, - "length": 11, - "value": "\"max_label\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 2731, + "offset": 6147, "length": 7, "value": "\"value\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 2823, + "offset": 6239, "length": 15, "value": "\"error_message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 2899, + "offset": 6315, "length": 16, "value": "\"answer_choices\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 2949, + "offset": 6365, "length": 16, "value": "\"min_selections\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 2999, + "offset": 6415, "length": 16, "value": "\"max_selections\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3078, + "offset": 6494, "length": 15, "value": "\"freeform_hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3123, + "offset": 6539, "length": 5, "value": "\"min\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3157, + "offset": 6573, "length": 5, "value": "\"max\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3195, + "offset": 6611, "length": 11, "value": "\"min_label\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3239, + "offset": 6655, "length": 11, "value": "\"max_label\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3334, + "offset": 6750, "length": 13, "value": "\"multichoice\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3376, + "offset": 6792, "length": 13, "value": "\"multiselect\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3418, + "offset": 6834, "length": 12, "value": "\"singleline\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3334, - "length": 13, - "value": "\"multichoice\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3376, - "length": 13, - "value": "\"multiselect\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3418, - "length": 12, - "value": "\"singleline\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3799, + "offset": 7722, "length": 6, "value": "\"hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3799, - "length": 6, - "value": "\"hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3900, + "offset": 7823, "length": 15, "value": "\"select_option\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3945, + "offset": 7868, "length": 14, "value": "\"select_other\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 3900, - "length": 15, - "value": "\"select_option\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 3945, - "length": 14, - "value": "\"select_other\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 4366, - "length": 13, - "value": "\"button_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 4366, + "offset": 8289, "length": 13, "value": "\"button_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", "kind": "StringLiteral", - "offset": 5454, + "offset": 9377, "length": 22, "value": "\"next_question_set_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift", - "kind": "StringLiteral", - "offset": 5454, - "length": 22, - "value": "\"next_question_set_id\"" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift", + "kind": "BooleanLiteral", + "offset": 1354, + "length": 5, + "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift", "kind": "StringLiteral", - "offset": 1253, + "offset": 1715, "length": 16, "value": "\"interaction_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift", "kind": "StringLiteral", - "offset": 1253, + "offset": 1898, "length": 16, - "value": "\"interaction_id\"" + "value": "\"application_id\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AttachmentManager.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AttachmentManager.swift", "kind": "StringLiteral", - "offset": 575, + "offset": 626, "length": 3, "value": "\"#\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Model\/AttachmentManager.swift", "kind": "StringLiteral", - "offset": 921, - "length": 19, - "value": "\"automated_message\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 970, - "length": 16, - "value": "\"error_messages\"" + "offset": 369, + "length": 17, + "value": "\"ApptentiveKit.AttachmentManager\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 921, "length": 19, "value": "\"automated_message\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 970, "length": 16, "value": "\"error_messages\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1398, "length": 11, "value": "\"hint_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1440, "length": 13, "value": "\"send_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1483, "length": 12, "value": "\"send_start\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1522, "length": 9, "value": "\"send_ok\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1560, "length": 11, "value": "\"send_fail\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1601, "length": 12, "value": "\"close_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1650, "length": 20, "value": "\"close_confirm_body\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1709, "length": 22, "value": "\"close_discard_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1769, "length": 21, "value": "\"close_cancel_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1398, - "length": 11, - "value": "\"hint_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1440, - "length": 13, - "value": "\"send_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1483, - "length": 12, - "value": "\"send_start\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1522, - "length": 9, - "value": "\"send_ok\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1560, - "length": 11, - "value": "\"send_fail\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1601, - "length": 12, - "value": "\"close_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1650, - "length": 20, - "value": "\"close_confirm_body\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1709, - "length": 22, - "value": "\"close_discard_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1769, - "length": 21, - "value": "\"close_cancel_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 1976, - "length": 17, - "value": "\"http_error_body\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2030, - "length": 20, - "value": "\"network_error_body\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 1976, "length": 17, "value": "\"http_error_body\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2030, "length": 20, "value": "\"network_error_body\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2260, - "length": 11, - "value": "\"image_url\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2260, "length": 11, "value": "\"image_url\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2649, - "length": 11, - "value": "\"name_hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2690, - "length": 12, - "value": "\"email_hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2733, - "length": 13, - "value": "\"skip_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2777, - "length": 13, - "value": "\"save_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 2827, - "length": 19, - "value": "\"email_explanation\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2649, "length": 11, "value": "\"name_hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2690, "length": 12, "value": "\"email_hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2733, "length": 13, "value": "\"skip_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2777, "length": 13, "value": "\"save_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 2827, "length": 19, "value": "\"email_explanation\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 3059, - "length": 11, - "value": "\"name_hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 3100, - "length": 12, - "value": "\"email_hint\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 3143, - "length": 13, - "value": "\"skip_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", - "kind": "StringLiteral", - "offset": 3187, - "length": 13, - "value": "\"save_button\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 3059, "length": 11, "value": "\"name_hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 3100, "length": 12, "value": "\"email_hint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 3143, "length": 13, "value": "\"skip_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift", "kind": "StringLiteral", "offset": 3187, "length": 13, "value": "\"save_button\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 7577, + "offset": 8488, "length": 5, "value": "\"GET\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 7598, + "offset": 8509, "length": 5, "value": "\"PUT\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 7620, + "offset": 8531, "length": 6, "value": "\"POST\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 7645, + "offset": 8556, "length": 8, "value": "\"DELETE\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", - "kind": "StringLiteral", - "offset": 7577, - "length": 5, - "value": "\"GET\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 7598, - "length": 5, - "value": "\"PUT\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", - "kind": "StringLiteral", - "offset": 7620, - "length": 6, - "value": "\"POST\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", - "kind": "StringLiteral", - "offset": 7645, - "length": 8, - "value": "\"DELETE\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", - "kind": "StringLiteral", - "offset": 8104, + "offset": 9015, "length": 32, "value": "\"application\/json;charset=UTF-8\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift", "kind": "StringLiteral", - "offset": 8166, + "offset": 9077, "length": 26, "value": "\"application\/octet-stream\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Interaction.swift", - "kind": "StringLiteral", - "offset": 2896, - "length": 13, - "value": "\"api_version\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Interaction.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/Interaction.swift", "kind": "StringLiteral", - "offset": 2896, + "offset": 2635, "length": 13, "value": "\"api_version\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", - "kind": "StringLiteral", - "offset": 390, - "length": 10, - "value": "\"yes_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", - "kind": "StringLiteral", - "offset": 423, - "length": 9, - "value": "\"no_text\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", "kind": "StringLiteral", - "offset": 390, + "offset": 752, "length": 10, "value": "\"yes_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift", "kind": "StringLiteral", - "offset": 423, + "offset": 785, "length": 9, "value": "\"no_text\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "BooleanLiteral", - "offset": 676, + "offset": 689, "length": 5, "value": "false" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 856, + "offset": 862, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 1675, + "offset": 1852, "length": 20, "value": "\"person.crop.circle\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 2095, + "offset": 2188, "length": 7, "value": "\"xmark\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "StringLiteral", + "offset": 2935, + "length": 11, + "value": "\"paperclip\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 2802, + "offset": 2997, "length": 23, "value": "\"paperclip.circle.fill\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 3024, + "offset": 3248, + "length": 12, + "value": "\"paperplane\"" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "StringLiteral", + "offset": 3311, "length": 24, "value": "\"paperplane.circle.fill\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 3226, + "offset": 3496, "length": 19, "value": "\"messageSentBubble\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3369, - "length": 1, - "value": "9" + "offset": 3648, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3378, - "length": 1, - "value": "9" + "offset": 3658, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3389, + "offset": 3670, "length": 2, - "value": "14" + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3400, + "offset": 3681, "length": 2, - "value": "18" + "value": "52" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 3584, + "offset": 3830, "length": 23, "value": "\"messageReceivedBubble\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3731, - "length": 1, - "value": "9" + "offset": 3986, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3740, + "offset": 3996, "length": 2, - "value": "18" + "value": "52" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3752, + "offset": 4008, "length": 2, - "value": "14" + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 3763, - "length": 1, - "value": "9" + "offset": 4019, + "length": 2, + "value": "26" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 3963, + "offset": 4185, "length": 10, "value": "\"document\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 4097, + "offset": 4328, "length": 2, "value": "14" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 4107, + "offset": 4338, "length": 1, "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 4118, + "offset": 4349, "length": 1, "value": "4" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 4128, + "offset": 4359, "length": 2, "value": "14" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", - "kind": "StringLiteral", - "offset": 4329, - "length": 19, - "value": "\"minus.circle.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 4432, + "offset": 4507, "length": 19, "value": "\"minus.circle.fill\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 4821, + "offset": 4833, "length": 8, "value": "\"circle\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 5000, + "offset": 4974, "length": 8, "value": "\"square\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 5203, - "length": 30, - "value": "\"smallcircle.fill.circle.fill\"" + "offset": 5139, + "length": 32, + "value": "\"smallcircle.filled.circle.fill\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "StringLiteral", - "offset": 5421, + "offset": 5321, "length": 23, "value": "\"checkmark.square.fill\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 9295, + "offset": 8329, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 9305, + "offset": 8339, "length": 4, "value": "0.42" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 9317, + "offset": 8351, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 9327, + "offset": 8361, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "IntegerLiteral", + "offset": 9281, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "FloatLiteral", + "offset": 9291, + "length": 4, + "value": "0.28" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 10266, + "offset": 9303, + "length": 4, + "value": "0.24" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "IntegerLiteral", + "offset": 9316, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "FloatLiteral", + "offset": 9369, "length": 4, "value": "0.86" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 10279, + "offset": 9382, "length": 3, "value": "0.1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 10290, + "offset": 9393, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 10300, + "offset": 9403, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 10344, + "offset": 14978, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 10354, + "offset": 14988, "length": 4, "value": "0.28" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 10366, + "offset": 15000, "length": 4, "value": "0.24" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 10379, + "offset": 15013, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 16331, + "offset": 15066, "length": 4, "value": "0.86" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "FloatLiteral", - "offset": 16344, + "offset": 15079, "length": 3, "value": "0.1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 16355, + "offset": 15090, "length": 1, "value": "0" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 16365, + "offset": 15100, "length": 1, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 16409, - "length": 1, + "offset": 22586, + "length": 15, "value": "1" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", - "kind": "FloatLiteral", - "offset": 16419, - "length": 4, - "value": "0.28" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "IntegerLiteral", + "offset": 22927, + "length": 1, + "value": "2" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", - "kind": "FloatLiteral", - "offset": 16431, - "length": 4, - "value": "0.24" + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "kind": "IntegerLiteral", + "offset": 23160, + "length": 2, + "value": "34" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 16444, + "offset": 23336, "length": 1, - "value": "1" + "value": "8" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 22781, - "length": 15, - "value": "1" + "offset": 23490, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 22781, - "length": 15, - "value": "1" + "offset": 23502, + "length": 2, + "value": "44" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift", "kind": "IntegerLiteral", - "offset": 23128, - "length": 1, - "value": "2" + "offset": 23797, + "length": 2, + "value": "32" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 638, "length": 17, "value": "\"apptentiveError\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 809, "length": 24, "value": "\"apptentiveGroupPrimary\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 991, "length": 26, "value": "\"apptentiveGroupSecondary\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1183, "length": 30, "value": "\"apptentiveRangeControlBorder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1367, "length": 24, "value": "\"attachmentDeleteButton\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1527, "length": 15, "value": "\"barForeground\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1666, "length": 9, "value": "\"barTint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1805, "length": 12, "value": "\"buttonTint\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 1949, "length": 13, "value": "\"choiceLabel\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2104, "length": 18, "value": "\"dialogButtonText\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2262, "length": 17, "value": "\"dialogSeparator\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2409, "length": 12, "value": "\"dialogText\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2551, "length": 12, "value": "\"disclaimer\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2705, "length": 18, "value": "\"imageNotSelected\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 2867, "length": 19, "value": "\"instructionsLabel\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 3036, "length": 22, "value": "\"messageBubbleInbound\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 3210, "length": 23, "value": "\"messageBubbleOutbound\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 3381, "length": 21, "value": "\"messageLabelInbound\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 3556, "length": 24, "value": "\"messageTextInputBorder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", "offset": 3706, "length": 10, "value": "\"question\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 3892, - "length": 35, - "value": "\"rangeNotSelectedSegmentBackground\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 4073, + "offset": 3862, "length": 20, "value": "\"surveyGreetingText\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 4237, + "offset": 4026, "length": 19, "value": "\"surveyImageChoice\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 4394, + "offset": 4183, "length": 16, "value": "\"termsOfService\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 4538, + "offset": 4327, "length": 11, "value": "\"textInput\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 4697, + "offset": 4486, "length": 21, "value": "\"textInputBackground\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 4858, + "offset": 4647, "length": 17, "value": "\"textInputBorder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 5031, + "offset": 4820, "length": 25, "value": "\"textInputBorderSelected\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 5206, + "offset": 4995, "length": 22, "value": "\"textInputPlaceholder\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 5388, + "offset": 5177, "length": 27, "value": "\"unselectedSurveyIndicator\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 5662, - "length": 18, - "value": "\"attachmentButton\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 5830, - "length": 23, - "value": "\"checkmark.square.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 5975, - "length": 8, - "value": "\"circle\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 6099, - "length": 5, - "value": "\"doc\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 6230, + "offset": 5435, "length": 10, "value": "\"document\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 6392, + "offset": 5597, "length": 23, "value": "\"messageReceivedBubble\"" }, { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", + "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios-private\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", "kind": "StringLiteral", - "offset": 6559, + "offset": 5764, "length": 19, "value": "\"messageSentBubble\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 6720, - "length": 19, - "value": "\"minus.circle.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 6889, - "length": 23, - "value": "\"paperclip.circle.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7064, - "length": 24, - "value": "\"paperplane.circle.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7232, - "length": 20, - "value": "\"person.crop.circle\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7415, - "length": 30, - "value": "\"smallcircle.fill.circle.fill\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7567, - "length": 8, - "value": "\"square\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7695, - "length": 7, - "value": "\"xmark\"" - }, - { - "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/build\/iphoneos\/Build\/Intermediates.noindex\/ArchiveIntermediates\/ApptentiveKit\/IntermediateBuildFilesPath\/ApptentiveKit.build\/Release-iphonesimulator\/ApptentiveKit.build\/DerivedSources\/GeneratedAssetSymbols.swift", - "kind": "StringLiteral", - "offset": 7833, - "length": 13, - "value": "\"xmark.small\"" } ] } \ No newline at end of file diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index 25e3c74..aa4aa2c 100644 --- a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +++ b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -1,8 +1,10 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) -// swift-module-flags: -target x86_64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ApptentiveKit +// swift-compiler-version: Apple Swift version 6.2.3 (swiftlang-6.2.3.3.21 clang-1700.6.3.2) +// swift-module-flags: -target x86_64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 6 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -module-name ApptentiveKit +// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.3 import CommonCrypto import CoreTelephony +import CryptoKit import DeveloperToolsSupport import Foundation import MobileCoreServices @@ -11,41 +13,48 @@ import PhotosUI import QuickLook import QuickLookThumbnailing import SafariServices +import Security import StoreKit import Swift import SwiftUI import UIKit +import UniformTypeIdentifiers +import UserNotifications import WebKit import _Concurrency import _StringProcessing import _SwiftConcurrencyShims -@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate { - @_Concurrency.MainActor(unsafe) @objc override dynamic public var next: UIKit.UIResponder? { +@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var next: UIKit.UIResponder? { @objc get } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool) - @_Concurrency.MainActor(unsafe) public func dismiss() - @_Concurrency.MainActor(unsafe) public func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage imageData: ApptentiveKit.DialogViewModel.Image) + #endif + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool) + @_Concurrency.MainActor public func dismiss() + @_Concurrency.MainActor public func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage imageData: ApptentiveKit.DialogViewModel.Image) @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class EnjoymentDialogViewController : ApptentiveKit.DialogViewController { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class EnjoymentDialogViewController : ApptentiveKit.DialogViewController { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class TextModalViewController : ApptentiveKit.DialogViewController { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class TextModalViewController : ApptentiveKit.DialogViewController { @objc deinit } extension ApptentiveKit.DialogViewModel { public enum Image : Swift.Equatable { case none case loading(altText: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout) - case loaded(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout, maxHeight: CoreFoundation.CGFloat) + case loaded(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout) public enum Layout : Swift.String { case fullWidth case leading case trailing case center + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get @@ -58,13 +67,15 @@ extension ApptentiveKit.DialogViewModel { @_hasMissingDesignatedInitializers public class Action { final public let label: Swift.String final public let actionType: ApptentiveKit.DialogViewModel.Action.ActionType - final public let buttonTapped: () -> Swift.Void + final public let buttonTapped: @_Concurrency.MainActor @Sendable () -> Swift.Void public enum ActionType : Swift.String { case dismiss case interaction case yes case no + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get @@ -73,45 +84,25 @@ extension ApptentiveKit.DialogViewModel { @objc deinit } } -public enum HTMLTextAlignment : Swift.String { - case center - case left - case right - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public enum SystemFontNames : Swift.String { - case html - case os - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -extension Swift.String { - public func attributedString(withFont font: UIKit.UIFont, alignment: ApptentiveKit.HTMLTextAlignment) -> Foundation.NSMutableAttributedString? -} extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let minValue: Swift.Int - final public let maxValue: Swift.Int - final public let minText: Swift.String? - final public let maxText: Swift.String? - public var selectedValueIndex: Swift.Int? { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let minValue: Swift.Int + @_Concurrency.MainActor final public let maxValue: Swift.Int + @_Concurrency.MainActor final public let minText: Swift.String? + @_Concurrency.MainActor final public let maxText: Swift.String? + @_Concurrency.MainActor public var selectedValueIndex: Swift.Int? { get } - public var value: Swift.Int? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var value: Swift.Int? { get } - public var choiceLabels: [Swift.String] { + #endif + @_Concurrency.MainActor public var choiceLabels: [Swift.String] { get } - public func selectValue(at index: Swift.Int) - public var accessibilityHintForSegment: Swift.String { + @_Concurrency.MainActor public func selectValue(at index: Swift.Int) + @_Concurrency.MainActor public var accessibilityHintForSegment: Swift.String { get } @objc deinit @@ -142,9 +133,9 @@ extension ApptentiveKit.MessageCenterViewModel { case sending case sent case failed - public func hash(into hasher: inout Swift.Hasher) public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.SentStatus, b: ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> Swift.Bool public func encode(to encoder: any Swift.Encoder) throws + public func hash(into hasher: inout Swift.Hasher) public var hashValue: Swift.Int { get } @@ -162,24 +153,32 @@ extension ApptentiveKit.MessageCenterViewModel { } @objc @_hasMissingDesignatedInitializers public class Attachment : ObjectiveC.NSObject, QuickLook.QLPreviewItem { final public let fileExtension: Swift.String? + #if compiler(>=5.3) && $NonescapableTypes public var thumbnail: UIKit.UIImage? { get } + #endif public var downloadProgress: Swift.Float public var localURL: Foundation.URL? public var displayName: Swift.String { get } + #if compiler(>=5.3) && $NonescapableTypes @objc public var previewItemURL: Foundation.URL? { @objc get } + #endif + #if compiler(>=5.3) && $NonescapableTypes @objc public var previewItemTitle: Swift.String? { @objc get } + #endif + #if compiler(>=5.3) && $NonescapableTypes @objc override dynamic public var accessibilityLabel: Swift.String? { @objc get @objc set } + #endif public var removeButtonAccessibilityLabel: Swift.String { get } @@ -191,21 +190,19 @@ extension ApptentiveKit.MessageCenterViewModel { @objc deinit } } -extension ApptentiveKit.Apptentive : UserNotifications.UNUserNotificationCenterDelegate { - @objc dynamic public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data) - @available(*, deprecated, message: "Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead.") - @objc dynamic public func setRemoteNotifcationDeviceToken(_ tokenData: Foundation.Data) - @objc dynamic public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool - @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool - @objc dynamic public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool - @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) - @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) +extension ApptentiveKit.Apptentive : @preconcurrency UserNotifications.UNUserNotificationCenterDelegate { + @objc @_Concurrency.MainActor final public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data) + @objc @_Concurrency.MainActor final public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping @Sendable (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool + @objc @_Concurrency.MainActor final public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool + @objc @_Concurrency.MainActor final public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool + @_Concurrency.MainActor @objc final public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping @Sendable (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) + @_Concurrency.MainActor @objc final public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping @Sendable () -> Swift.Void) } extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice] - public func toggleChoice(at index: Swift.Int) - public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice] + @_Concurrency.MainActor public func toggleChoice(at index: Swift.Int) + @_Concurrency.MainActor public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle { get } public enum SelectionStyle { @@ -217,18 +214,17 @@ extension ApptentiveKit.SurveyViewModel { get } } - @_hasMissingDesignatedInitializers public class Choice { - final public let label: Swift.String - public var htmlLabel: Foundation.NSAttributedString? - final public let placeholderText: Swift.String? - final public let supportsOther: Swift.Bool - public var isSelected: Swift.Bool { + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Choice { + @_Concurrency.MainActor final public let label: Foundation.AttributedString + @_Concurrency.MainActor final public let placeholderText: Swift.String? + @_Concurrency.MainActor final public let supportsOther: Swift.Bool + @_Concurrency.MainActor public var isSelected: Swift.Bool { get } - public var isMarkedAsInvalid: Swift.Bool { + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get } - public var value: Swift.String? { + @_Concurrency.MainActor public var value: Swift.String? { get set } @@ -237,94 +233,89 @@ extension ApptentiveKit.SurveyViewModel { @objc deinit } } -public struct ApptentiveLogger { - public static var shouldHideSensitiveLogs: Swift.Bool - public var logLevel: ApptentiveKit.LogLevel -} -extension ApptentiveKit.ApptentiveLogger { - public static var `default`: ApptentiveKit.ApptentiveLogger - public static var engagement: ApptentiveKit.ApptentiveLogger - public static var interaction: ApptentiveKit.ApptentiveLogger - public static var network: ApptentiveKit.ApptentiveLogger - public static var payload: ApptentiveKit.ApptentiveLogger - public static var targeting: ApptentiveKit.ApptentiveLogger - public static var messages: ApptentiveKit.ApptentiveLogger - public static var attachments: ApptentiveKit.ApptentiveLogger - public static var resources: ApptentiveKit.ApptentiveLogger - public static var logLevel: ApptentiveKit.LogLevel { - get - set - } -} -public enum LogLevel : Swift.Int, Swift.Comparable { - case debug - case info - case notice - case warning - case error - case critical - case fault - public static func < (lhs: ApptentiveKit.LogLevel, rhs: ApptentiveKit.LogLevel) -> Swift.Bool - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } +extension os.Logger { + public static let `default`: os.Logger + public static let engagement: os.Logger + public static let interaction: os.Logger + public static let network: os.Logger + public static let payload: os.Logger + public static let targeting: os.Logger + public static let messages: os.Logger + public static let attachments: os.Logger + public static let resources: os.Logger } @objc public protocol ApptentiveDelegate { @objc func authenticationDidFail(with error: any Swift.Error) } -@objc @_hasMissingDesignatedInitializers public class Apptentive : ObjectiveC.NSObject { - @objc public static let shared: ApptentiveKit.Apptentive - @objc weak public var delegate: (any ApptentiveKit.ApptentiveDelegate)? - public var interactionPresenter: ApptentiveKit.InteractionPresenter { +@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class Apptentive : ObjectiveC.NSObject { + @objc @_Concurrency.MainActor public static let shared: ApptentiveKit.Apptentive + @objc @_Concurrency.MainActor weak final public var delegate: (any ApptentiveKit.ApptentiveDelegate)? + @_Concurrency.MainActor final public var interactionPresenter: ApptentiveKit.InteractionPresenter { get set } - @objc public var theme: ApptentiveKit.Apptentive.UITheme - @objc public var personName: Swift.String? { + @objc @_Concurrency.MainActor final public var theme: ApptentiveKit.Apptentive.UITheme + @objc @_Concurrency.MainActor final public var shouldUseSecureTokenStorage: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personName: Swift.String? { @objc get @objc set + _modify } - @objc public var personEmailAddress: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personEmailAddress: Swift.String? { @objc get @objc set + _modify } - @objc public var mParticleID: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var mParticleID: Swift.String? { @objc get @objc set + _modify } - public var personCustomData: ApptentiveKit.CustomData { + #endif + @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personCustomData: ApptentiveKit.CustomData { get set + _modify } - public var deviceCustomData: ApptentiveKit.CustomData { + @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var deviceCustomData: ApptentiveKit.CustomData { get set + _modify } - @objc dynamic public var unreadMessageCount: Swift.Int - @objc public var distributionName: Swift.String? { + @objc @_Concurrency.MainActor dynamic final public var unreadMessageCount: Swift.Int + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var distributionName: Swift.String? { @objc get @objc set + _modify } - @objc public var distributionVersion: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var distributionVersion: Swift.String? { @objc get @objc set + _modify } - @objc public enum UITheme : Swift.Int { + #endif + @objc public enum UITheme : Swift.Int, Swift.Sendable { case apptentive = 1 + case customerOnly = 2 + case customerBasedOnApptentive = 3 case none = 0 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } - public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials) async throws - #endif - public struct AppCredentials : Swift.Codable, Swift.Equatable { + public struct AppCredentials : Swift.Codable, Swift.Equatable, Swift.Sendable { public let key: Swift.String public let signature: Swift.String public init(key: Swift.String, signature: Swift.String) @@ -332,45 +323,74 @@ public enum LogLevel : Swift.Int, Swift.Comparable { public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } - public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil) async throws -> Swift.Bool + public enum Region : Swift.String, Swift.Sendable { + case us + case eu + case au + #if compiler(>=5.3) && $NonescapableTypes + public init?(rawValue: Swift.String) + #endif + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct Environment : Swift.Sendable { + public init(_ template: @escaping @Sendable (Swift.String, ApptentiveKit.Apptentive.Region) -> Swift.String) + public static let production: ApptentiveKit.Apptentive.Environment + public static func custom(_ url: Foundation.URL) -> ApptentiveKit.Apptentive.Environment + } + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, region: ApptentiveKit.Apptentive.Region = .us, environment: ApptentiveKit.Apptentive.Environment = .production, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + nonisolated final public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, region: ApptentiveKit.Apptentive.Region = .us, environment: ApptentiveKit.Apptentive.Environment = .production) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + nonisolated final public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil) async throws -> Swift.Bool #endif - public func dismissAllInteractions(animated: Swift.Bool) - public func presentMessageCenter(from viewController: UIKit.UIViewController?, completion: ((Swift.Result) -> Swift.Void)? = nil) - public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData?, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil) async throws -> Swift.Bool + @_Concurrency.MainActor final public func dismissAllInteractions(animated: Swift.Bool) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - @objc(sendAttachmentText:) public func sendAttachment(_ text: Swift.String) - @objc(sendAttachmentImage:) public func sendAttachment(_ image: UIKit.UIImage) - @objc(sendAttachmentFile:withMimeType:) public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String) - public func canShowInteraction(event: ApptentiveKit.Event, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func canShowInteraction(event: ApptentiveKit.Event) async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + nonisolated final public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil) async throws -> Swift.Bool #endif - public func canShowMessageCenter(completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func canShowMessageCenter() async throws -> Swift.Bool + @objc(sendAttachmentText:) nonisolated final public func sendAttachment(_ text: Swift.String) + @objc(sendAttachmentImage:) nonisolated final public func sendAttachment(_ image: UIKit.UIImage) + @objc(sendAttachmentFile:withMimeType:) nonisolated final public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func canShowInteraction(event: ApptentiveKit.Event, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - public func logIn(with token: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void) - #if compiler(>=5.3) && $AsyncAwait - public func logIn(with token: Swift.String) async throws + nonisolated final public func canShowInteraction(event: ApptentiveKit.Event) async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func canShowMessageCenter(completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - public func logOut(completion: ((Swift.Result) -> Swift.Void)?) - #if compiler(>=5.3) && $AsyncAwait - public func logOut() async throws + nonisolated final public func canShowMessageCenter() async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func logIn(with token: Swift.String, completion: @escaping @Sendable (Swift.Result) -> Swift.Void) #endif - public func updateToken(_ token: Swift.String, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func updateToken(_ token: Swift.String) async throws + nonisolated final public func logIn(with token: Swift.String) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func logOut(completion: (@Sendable (Swift.Result) -> Swift.Void)?) #endif - convenience public init(apiBaseURL: Foundation.URL) + nonisolated final public func logOut() async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func updateToken(_ token: Swift.String, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + nonisolated final public func updateToken(_ token: Swift.String) async throws + @propertyWrapper public struct BackendSync { + public var wrappedValue: T { + get + set + } + } @objc deinit } -public enum ApptentiveError : Swift.Error, Foundation.LocalizedError { +public enum ApptentiveError : Swift.Error, Foundation.LocalizedError, Swift.Equatable { case internalInconsistency - case invalidCustomDataType(Any?) + case invalidCustomDataType case fileExistsAtContainerDirectoryPath case unsupportedBackendStateTransition case emptyEventName @@ -381,14 +401,19 @@ public enum ApptentiveError : Swift.Error, Foundation.LocalizedError { case missingSubClaim case mismatchedSubClaim case invalidEncryptionKey + case invalidAppCredentials case noActiveConversation case authenticationFailed(reason: ApptentiveKit.AuthenticationFailureReason?, responseString: Swift.String?) case resourceNotDecodableAsImage + case interactionExceededRateLimit(count: Swift.Int, limit: Swift.Int) + #if compiler(>=5.3) && $NonescapableTypes public var errorDescription: Swift.String? { get } + #endif + public static func == (a: ApptentiveKit.ApptentiveError, b: ApptentiveKit.ApptentiveError) -> Swift.Bool } -public enum AuthenticationFailureReason : Swift.String, Swift.Codable { +public enum AuthenticationFailureReason : Swift.String, Swift.Codable, Swift.Sendable { case invalidAlgorithm case malformedToken case invalidToken @@ -400,14 +425,16 @@ public enum AuthenticationFailureReason : Swift.String, Swift.Codable { case missingAppKey case missingAppSignature case invalidKeySignaturePair + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get } } -public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> () -public protocol CustomDataCompatible { +nonisolated(unsafe) public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> () +public protocol CustomDataCompatible : Swift.Sendable { } extension Swift.String : ApptentiveKit.CustomDataCompatible { } @@ -419,12 +446,14 @@ extension Swift.Int : ApptentiveKit.CustomDataCompatible { } extension Swift.Bool : ApptentiveKit.CustomDataCompatible { } -public struct CustomData : Swift.Equatable, Swift.Codable { +public struct CustomData : Swift.Equatable, Swift.Codable, Swift.Sendable { public init() + #if compiler(>=5.3) && $NonescapableTypes public subscript(key: Swift.String) -> (any ApptentiveKit.CustomDataCompatible)? { get set } + #endif public var keys: Swift.Dictionary.Keys { get } @@ -432,56 +461,64 @@ public struct CustomData : Swift.Equatable, Swift.Codable { public init(from decoder: any Swift.Decoder) throws public static func == (lhs: ApptentiveKit.CustomData, rhs: ApptentiveKit.CustomData) -> Swift.Bool } -public protocol SurveyViewModelDelegate : AnyObject { - func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) -} -@_hasMissingDesignatedInitializers public class SurveyViewModel { - final public let name: Swift.String? - final public let isRequired: Swift.Bool - final public let pageIndicatorSegmentCount: Swift.Int - final public let validationErrorMessage: Swift.String - public var disclaimerText: Swift.String? { +@_Concurrency.MainActor public protocol SurveyViewModelDelegate : AnyObject { + @_Concurrency.MainActor func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class SurveyViewModel { + @_Concurrency.MainActor final public let name: Swift.String? + @_Concurrency.MainActor final public let isRequired: Swift.Bool + @_Concurrency.MainActor final public let pageIndicatorSegmentCount: Swift.Int + @_Concurrency.MainActor final public let validationErrorMessage: Foundation.AttributedString + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var disclaimerText: Foundation.AttributedString? { get } + #endif public struct TermsAndConditions { } - final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions? + @_Concurrency.MainActor final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions? public struct CloseConfirmation { } - final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation - weak public var delegate: (any ApptentiveKit.SurveyViewModelDelegate)? - public var currentPage: ApptentiveKit.SurveyViewModel.Page { + @_Concurrency.MainActor final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation + @_Concurrency.MainActor weak public var delegate: (any ApptentiveKit.SurveyViewModelDelegate)? + @_Concurrency.MainActor public var currentPage: ApptentiveKit.SurveyViewModel.Page { get } - public var questions: [ApptentiveKit.SurveyViewModel.Question] { + @_Concurrency.MainActor public var questions: [ApptentiveKit.SurveyViewModel.Question] { get } - public var isMarkedAsInvalid: Swift.Bool { + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get } - public var thankYouMessage: Swift.String? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var thankYouMessage: Foundation.AttributedString? { get } - public var introduction: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var introduction: Foundation.AttributedString? { get } - public var advanceButtonText: Swift.String { + #endif + @_Concurrency.MainActor public var advanceButtonText: Swift.String { get } - public var invalidQuestionIndexes: Foundation.IndexSet { + @_Concurrency.MainActor public var invalidQuestionIndexes: Foundation.IndexSet { get } - public var surveyDidSendResponse: Swift.Bool - public var highlightFirstQuestionSegment: Swift.Bool - public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath) - public func selectValueFromRange(at indexPath: Foundation.IndexPath) - public func openTermsAndConditions() - public func advance() - public var isValid: Swift.Bool { + @_Concurrency.MainActor public var surveyDidSendResponse: Swift.Bool + @_Concurrency.MainActor public var highlightFirstQuestionSegment: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath) + #endif + @_Concurrency.MainActor public func selectValueFromRange(at indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func openTermsAndConditions() + @_Concurrency.MainActor public func advance() async + @_Concurrency.MainActor public var isValid: Swift.Bool { get } public enum DisplayMode { @@ -493,104 +530,106 @@ public protocol SurveyViewModelDelegate : AnyObject { get } } - public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode { + @_Concurrency.MainActor public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode { get } - public var shouldConfirmCancel: Swift.Bool { + @_Concurrency.MainActor public var shouldConfirmCancel: Swift.Bool { get } - public var currentSelectedSegmentIndex: Swift.Int? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var currentSelectedSegmentIndex: Swift.Int? { get } - public func launch() - public func continuePartial() - public func cancel(partial: Swift.Bool) + #endif + @_Concurrency.MainActor public var isIntroPage: Swift.Bool { + get + } + @_Concurrency.MainActor public var isSuccessPage: Swift.Bool { + get + } + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func continuePartial() + @_Concurrency.MainActor public func cancel(partial: Swift.Bool) @objc deinit } extension ApptentiveKit.SurveyViewModel { - @_hasMissingDesignatedInitializers public class Page { - final public let id: Swift.String - final public let description: Swift.String? - final public let disclaimer: Swift.String? - final public let questions: [ApptentiveKit.SurveyViewModel.Question] - final public let advanceButtonLabel: Swift.String - final public let pageIndicatorValue: Swift.Int? + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Page { + @_Concurrency.MainActor final public let id: Swift.String + @_Concurrency.MainActor final public let description: Foundation.AttributedString? + @_Concurrency.MainActor final public let disclaimer: Foundation.AttributedString? + @_Concurrency.MainActor final public let questions: [ApptentiveKit.SurveyViewModel.Question] + @_Concurrency.MainActor final public let advanceButtonLabel: Swift.String + @_Concurrency.MainActor final public let pageIndicatorValue: Swift.Int? @objc deinit } } -public protocol MessageCenterViewModelDelegate : AnyObject { - func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToRemoveAttachmentAt index: Swift.Int, with error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToAddAttachmentWith error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToSendMessageWith error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFinishAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFailAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath, with error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, profilePhoto: UIKit.UIImage, didDownloadFor indexPath: Foundation.IndexPath) -} -@_hasMissingDesignatedInitializers public class MessageCenterViewModel { - final public let headingTitle: Swift.String - final public let branding: Swift.String? - final public let composerTitle: Swift.String - final public let composerSendButtonTitle: Swift.String - final public let composerAttachButtonTitle: Swift.String - final public let composerPlaceholderText: Swift.String - final public let composerCloseConfirmBody: Swift.String - final public let composerCloseDiscardButtonTitle: Swift.String - final public let composerCloseCancelButtonTitle: Swift.String - final public let greetingTitle: Swift.String - final public let greetingBody: Swift.String - final public let greetingImageURL: Foundation.URL - final public let statusBody: Swift.String? - public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]] - public var hasLoadedMessages: Swift.Bool - public var thumbnailSize: CoreFoundation.CGSize { +@_Concurrency.MainActor public protocol MessageCenterViewModelDelegate : AnyObject { + @_Concurrency.MainActor func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel) +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class MessageCenterViewModel { + @_Concurrency.MainActor final public let headingTitle: Swift.String + @_Concurrency.MainActor final public let branding: Swift.String? + @_Concurrency.MainActor final public let composerTitle: Swift.String + @_Concurrency.MainActor final public let composerSendButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerAttachButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerPlaceholderText: Swift.String + @_Concurrency.MainActor final public let composerCloseConfirmBody: Swift.String + @_Concurrency.MainActor final public let composerCloseDiscardButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerCloseCancelButtonTitle: Swift.String + @_Concurrency.MainActor final public let greetingTitle: Swift.String + @_Concurrency.MainActor final public let greetingBody: Swift.String + @_Concurrency.MainActor final public let greetingImageURL: Foundation.URL + @_Concurrency.MainActor final public let statusBody: Swift.String? + @_Concurrency.MainActor public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]] + @_Concurrency.MainActor public var hasLoadedMessages: Swift.Bool + @_Concurrency.MainActor public var thumbnailSize: CoreFoundation.CGSize { get set } - final public let profileNamePlaceholder: Swift.String - final public let profileEmailPlaceholder: Swift.String - final public let profileCancelButtonText: Swift.String - final public let profileSaveButtonText: Swift.String - final public let profileEmailInvalidError: Swift.String - final public let editProfileViewTitle: Swift.String - final public let editProfileNamePlaceholder: Swift.String - final public let editProfileEmailPlaceholder: Swift.String - final public let editProfileCancelButtonText: Swift.String - final public let editProfileSaveButtonText: Swift.String - final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode - final public let closeButtonAccessibilityLabel: Swift.String - final public let closeButtonAccessibilityHint: Swift.String - final public let profileButtonAccessibilityLabel: Swift.String - final public let profileButtonAccessibilityHint: Swift.String - final public let sendButtonAccessibilityLabel: Swift.String - final public let sendButtonAccessibilityHint: Swift.String - final public let attachButtonAccessibilityLabel: Swift.String - final public let attachButtonAccessibilityHint: Swift.String - final public let attachmentOptionsTitle: Swift.String - final public let attachmentOptionsImagesButton: Swift.String - final public let attachmentOptionsFilesButton: Swift.String - final public let attachmentOptionsCancelButton: Swift.String - final public let showAttachmentButtonAccessibilityHint: Swift.String - final public let downloadAttachmentButtonAccessibilityHint: Swift.String - public var emailAddress: Swift.String? { + @_Concurrency.MainActor final public let profileNamePlaceholder: Swift.String + @_Concurrency.MainActor final public let profileEmailPlaceholder: Swift.String + @_Concurrency.MainActor final public let profileCancelButtonText: Swift.String + @_Concurrency.MainActor final public let profileSaveButtonText: Swift.String + @_Concurrency.MainActor final public let profileEmailInvalidError: Swift.String + @_Concurrency.MainActor final public let editProfileViewTitle: Swift.String + @_Concurrency.MainActor final public let editProfileNamePlaceholder: Swift.String + @_Concurrency.MainActor final public let editProfileEmailPlaceholder: Swift.String + @_Concurrency.MainActor final public let editProfileCancelButtonText: Swift.String + @_Concurrency.MainActor final public let editProfileSaveButtonText: Swift.String + @_Concurrency.MainActor final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode + @_Concurrency.MainActor final public let closeButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let closeButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let profileButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let profileButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let sendButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let sendButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let attachButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let attachButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsTitle: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsImagesButton: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsFilesButton: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsCancelButton: Swift.String + @_Concurrency.MainActor final public let showAttachmentButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let downloadAttachmentButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor public var emailAddress: Swift.String? { get set } - public var name: Swift.String? { + @_Concurrency.MainActor public var name: Swift.String? { get set } - public var profileIsValid: Swift.Bool - public var shouldRequestProfile: Swift.Bool - public var shouldAllowProfileEdit: Swift.Bool + @_Concurrency.MainActor public var profileIsValid: Swift.Bool + @_Concurrency.MainActor public var shouldRequestProfile: Swift.Bool + @_Concurrency.MainActor public var shouldAllowProfileEdit: Swift.Bool public enum ProfileMode { case optionalEmail case requiredEmail @@ -601,49 +640,61 @@ public protocol MessageCenterViewModelDelegate : AnyObject { get } } - public var oldestUnreadMessageIndexPath: Foundation.IndexPath? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var oldestUnreadMessageIndexPath: Foundation.IndexPath? { get } - public var newestMessageIndexPath: Foundation.IndexPath? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var newestMessageIndexPath: Foundation.IndexPath? { get } - public func commitProfileEdits() - public func cancelProfileEdits() - public func launch() - public func cancel() - public var numberOfMessageGroups: Swift.Int { + #endif + @_Concurrency.MainActor public func commitProfileEdits() + @_Concurrency.MainActor public func cancelProfileEdits() + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func cancel() + @_Concurrency.MainActor public var numberOfMessageGroups: Swift.Int { get } - public func markMessageAsRead(at indexPath: Foundation.IndexPath) - public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int - public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String? - public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message - public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) - public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message { + @_Concurrency.MainActor public func markMessageAsRead(at indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String? + #endif + @_Concurrency.MainActor public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message + @_Concurrency.MainActor public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) async throws + @_Concurrency.MainActor public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message { get } - public var draftMessageBody: Swift.String? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var draftMessageBody: Swift.String? { get set } - public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] { + #endif + @_Concurrency.MainActor public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] { get } - public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?) - public func addFileAttachment(at sourceURL: Foundation.URL) - public func removeAttachment(at index: Swift.Int) - public var remainingAttachmentSlots: Swift.Int { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?) async throws + #endif + @_Concurrency.MainActor public func addFileAttachment(at sourceURL: Foundation.URL) async throws + @_Concurrency.MainActor public func removeAttachment(at index: Swift.Int) async throws + @_Concurrency.MainActor public var remainingAttachmentSlots: Swift.Int { get } - public var canAddAttachment: Swift.Bool { + @_Concurrency.MainActor public var canAddAttachment: Swift.Bool { get } - public var canSendMessage: Swift.Bool { + @_Concurrency.MainActor public var canSendMessage: Swift.Bool { get } - public func sendMessage() - public func getGreetingImage(completion: @escaping (UIKit.UIImage) -> Swift.Void) - public func getProfilePhoto(for indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func sendMessage() async throws + @_Concurrency.MainActor public func getGreetingImage() async throws -> UIKit.UIImage + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func getProfilePhoto(for indexPath: Foundation.IndexPath) async throws -> UIKit.UIImage? + #endif @objc deinit } public enum MessageCenterViewModelError : Swift.Error { @@ -656,92 +707,134 @@ public enum MessageCenterViewModelError : Swift.Error { } } extension ApptentiveKit.Apptentive { - public var engagementManifestURL: Foundation.URL? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public var engagementManifestURL: Foundation.URL? { get } - public func loadEngagementManifest(at url: Foundation.URL?, completion: @escaping (Swift.Result) -> Swift.Void) - public func getInteractionList(_ completion: @escaping ([ApptentiveKit.Apptentive.InteractionListItem]) -> Swift.Void) - public func presentInteraction(with id: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void) - public func presentInteraction(at url: Foundation.URL, completion: @escaping (Swift.Result) -> Swift.Void) + #endif + public enum ConversationState : Swift.String { + case none + case placeholder + case anonymousPending + case legacyPending + case anonymous + case loggedIn + case loggedOut + #if compiler(>=5.3) && $NonescapableTypes + public init?(rawValue: Swift.String) + #endif + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func loadEngagementManifest(at url: Foundation.URL?) async throws + #endif + @_Concurrency.MainActor final public func getInteractionList() async -> [ApptentiveKit.Apptentive.InteractionListItem] + @_Concurrency.MainActor final public func presentInteraction(with id: Swift.String) async throws + @_Concurrency.MainActor final public func presentInteraction(at url: Foundation.URL) async throws public struct InteractionListItem { public let id: Swift.String public let displayName: Swift.String public let typeName: Swift.String } - public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void) - public func getConnectionInfo(_ completion: @escaping (_ state: Swift.String?, _ id: Swift.String?, _ token: Swift.String?, _ subject: Swift.String?, _ buttonLabel: Swift.String?) -> Swift.Void) + @_Concurrency.MainActor final public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func getConnectionInfo() async -> (ApptentiveKit.Apptentive.ConversationState, Swift.String?, Swift.String?) + #endif +} +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @available(iOS 26, *) +@_Concurrency.MainActor @preconcurrency public class GlassDialogButton : UIKit.UIView { + #if compiler(>=5.3) && $IsolatedDeinit + @objc @_Concurrency.MainActor deinit + #else + @objc deinit + #endif } extension ApptentiveKit.SurveyViewModel { - @_hasMissingDesignatedInitializers public class Question { - final public let text: Swift.String - final public let isRequired: Swift.Bool - final public let requiredText: Swift.String? - final public let errorMessage: Swift.String - final public let instructions: Swift.String? - public var isMarkedAsInvalid: Swift.Bool { + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Question { + @_Concurrency.MainActor final public let text: Foundation.AttributedString + @_Concurrency.MainActor final public let isRequired: Swift.Bool + @_Concurrency.MainActor final public let requiredText: Swift.String? + @_Concurrency.MainActor final public let errorMessage: Swift.String + @_Concurrency.MainActor final public let instructions: Swift.String? + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get set } - public var accessibilityLabel: Swift.String { + @_Concurrency.MainActor public var accessibilityLabel: Swift.String { get } @objc deinit } } -public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible { +public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible, Swift.CustomStringConvertible, Swift.Sendable { public var customData: ApptentiveKit.CustomData public init(name: Swift.String) public init(stringLiteral value: Swift.String) public var debugDescription: Swift.String { get } + public var description: Swift.String { + get + } public typealias ExtendedGraphemeClusterLiteralType = Swift.String public typealias StringLiteralType = Swift.String public typealias UnicodeScalarLiteralType = Swift.String } -open class InteractionPresenter { - public init() - open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) throws - open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) throws - open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) throws - open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel, completion: @escaping (Swift.Result) -> Swift.Void) - open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController, completion: (() -> Swift.Void)? = {}) throws - public var validatedPresentingViewController: UIKit.UIViewController? { +@_Concurrency.MainActor open class InteractionPresenter { + @_Concurrency.MainActor public init() + @_Concurrency.MainActor open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) async throws + @_Concurrency.MainActor open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) async throws + @_Concurrency.MainActor open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) async throws + @_Concurrency.MainActor open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel) async throws + @_Concurrency.MainActor open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var validatedPresentingViewController: UIKit.UIViewController? { get } - public var messageCenterCurrentlyPresented: Swift.Bool { + #endif + @_Concurrency.MainActor public var messageCenterCurrentlyPresented: Swift.Bool { get } - open func dismissPresentedViewController(animated: Swift.Bool) + @_Concurrency.MainActor open func dismissPresentedViewController(animated: Swift.Bool) @objc deinit } -public enum InteractionPresenterError : Swift.Error { +public enum InteractionPresenterError : Swift.Error, Swift.Equatable { case notImplemented(Swift.String, Swift.String) case decodingFailed(Swift.String, Swift.String) case noPresentingViewController + public static func == (a: ApptentiveKit.InteractionPresenterError, b: ApptentiveKit.InteractionPresenterError) -> Swift.Bool +} +extension ApptentiveKit.Apptentive { + @objc @_Concurrency.MainActor public static var fontName: Swift.String? { + @objc get + @objc set + } } extension Foundation.NSNotification.Name { public static let apptentiveEventEngaged: Foundation.Notification.Name } -public protocol DialogViewModelDelegate : AnyObject { - func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage: ApptentiveKit.DialogViewModel.Image) - func dismiss() -} -@_hasMissingDesignatedInitializers public class DialogViewModel { - final public let title: Swift.String? - final public let message: Swift.String? - final public let dialogType: ApptentiveKit.DialogViewModel.DialogType - final public let actions: [ApptentiveKit.DialogViewModel.Action] - public var dialogContainsImage: Swift.Bool - public var image: ApptentiveKit.DialogViewModel.Image { +@_Concurrency.MainActor public protocol DialogViewModelDelegate : AnyObject { + @_Concurrency.MainActor func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage: ApptentiveKit.DialogViewModel.Image) + @_Concurrency.MainActor func dismiss() +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class DialogViewModel { + @_Concurrency.MainActor final public let title: Foundation.AttributedString? + @_Concurrency.MainActor final public let message: Foundation.AttributedString? + @_Concurrency.MainActor final public let dialogType: ApptentiveKit.DialogViewModel.DialogType + @_Concurrency.MainActor final public let actions: [ApptentiveKit.DialogViewModel.Action] + @_Concurrency.MainActor public var dialogContainsImage: Swift.Bool + @_Concurrency.MainActor public var image: ApptentiveKit.DialogViewModel.Image { get set } - public var maxHeight: Swift.Int - weak public var delegate: (any ApptentiveKit.DialogViewModelDelegate)? - public func buttonSelected(at position: Swift.Int) - public func launch() - public func cancel() + @_Concurrency.MainActor public var maxHeight: Swift.Int + @_Concurrency.MainActor weak public var delegate: (any ApptentiveKit.DialogViewModelDelegate)? + @_Concurrency.MainActor public func buttonSelected(at position: Swift.Int) + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func cancel() public enum DialogType { case enjoymentDialog case textModal @@ -753,30 +846,30 @@ public protocol DialogViewModelDelegate : AnyObject { } @objc deinit } -@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogView : UIKit.UIView { - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleTextColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var messageTextColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var messageFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var headerImage: UIKit.UIImage? - @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonSpacing: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonInset: UIKit.UIEdgeInsets - @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorsAreHidden: Swift.Bool - @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var imageInset: UIKit.UIEdgeInsets { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogView : UIKit.UIView { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleTextColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var messageTextColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var messageFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var headerImage: UIKit.UIImage? + @objc @_Concurrency.MainActor @preconcurrency dynamic public var cornerRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var buttonSpacing: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var buttonInset: UIKit.UIEdgeInsets + @objc @_Concurrency.MainActor @preconcurrency dynamic public var separatorsAreHidden: Swift.Bool + @objc @_Concurrency.MainActor @preconcurrency dynamic public var separatorColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var imageInset: UIKit.UIEdgeInsets { @objc get @objc set } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func didMoveToWindow() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func layoutSubviews() @objc deinit } extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let placeholderText: Swift.String? - final public let allowMultipleLines: Swift.Bool - public var value: Swift.String? { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let placeholderText: Swift.String? + @_Concurrency.MainActor final public let allowMultipleLines: Swift.Bool + @_Concurrency.MainActor public var value: Swift.String? { get set } @@ -784,155 +877,106 @@ extension ApptentiveKit.SurveyViewModel { } } extension ApptentiveKit.Apptentive { - @available(*, deprecated, message: "Use the 'register(with:completion:)' method on the 'shared' instance instead.") - @objc(registerWithConfiguration:) dynamic public class func register(with configuration: ApptentiveKit.ApptentiveConfiguration) + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the 'register(with:completion:) method that takes an 'AppCredentials' argument.") - @objc(registerWithConfiguration:completion:) dynamic public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "Use the 'shared' static property instead.") - @objc dynamic public class func sharedConnection() -> ApptentiveKit.Apptentive - @available(*, deprecated, message: "This property is ignored. SKStoreReviewController will be used for all ratings.") - @objc dynamic public var appID: Swift.String? { - @objc get - @objc set - } - @available(*, deprecated, message: "This property is ignored. The info button no longer exists.") - @objc dynamic public var showInfoButton: Swift.Bool { - @objc get - @objc set - } - @available(*, deprecated, message: "This feature is not implemented.") - @objc dynamic public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? { - @objc get - @objc set - } - @available(*, deprecated, message: "This property is not available for reading.") - @objc dynamic public var apptentiveKey: Swift.String { - @objc get - } - @available(*, deprecated, message: "This property is not available for reading.") - @objc dynamic public var apptentiveSignature: Swift.String { - @objc get - } - @objc(engage:fromViewController:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?) - @objc(engage:fromViewController:completion:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) + @objc(registerWithConfiguration:completion:) @_Concurrency.MainActor final public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(engage:fromViewController:) @_Concurrency.MainActor final public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(engage:fromViewController:completion:) @_Concurrency.MainActor final public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.") - @objc(engage:withCustomData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?) + @objc(engage:withCustomData:fromViewController:) @_Concurrency.MainActor final public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.") - @objc(engage:withCustomData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.") - @objc(engage:withCustomData:withExtendedData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?) - @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.") - @objc(engage:withCustomData:withExtendedData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:completion:)' method instead.") - @objc dynamic public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void) - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataDate:) dynamic public class func extendedData(date: Foundation.Date) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataLocationForLatitude:longitude:) dynamic public class func extendedData(latitude: Swift.Double, longitude: Swift.Double) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:) dynamic public class func extendedData(transactionID: Swift.String?, affiliation: Swift.String?, revenue: Foundation.NSNumber?, shipping: Foundation.NSNumber?, tax: Foundation.NSNumber?, currency: Swift.String?, commerceItems: [[Swift.AnyHashable : Any]]?) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:) dynamic public class func extendedData(itemID: Swift.String?, name: Swift.String?, category: Swift.String?, price: Foundation.NSNumber?, quantity: Foundation.NSNumber?, currency: Swift.String?) -> [Swift.AnyHashable : Any] - @available(swift, deprecated: 1.0, message: "Use the 'canShowMessageCenter(completion:)' method instead.") - @objc dynamic public func queryCanShowMessageCenter(completion: @escaping (Swift.Bool) -> Swift.Void) - @objc(presentMessageCenterFromViewController:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?) - @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc(presentMessageCenterFromViewController:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @objc(presentMessageCenterFromViewController:withCustomData:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?) - @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc(presentMessageCenterFromViewController:withCustomData:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "This feature is not implemented and this method will always result in false.") - @objc dynamic public func dismissMessageCenter(animated: Swift.Bool, completion: (() -> Swift.Void)? = nil) - @available(*, deprecated, message: "This feature is not implemented and this property will return an empty view.") - @objc dynamic public func unreadMessageCountAccessoryView(apptentiveHeart: Swift.Bool) -> UIKit.UIView - @available(*, deprecated, message: "This method is no longer implemented and will trigger an assertion failure.") - @objc dynamic public func openAppStore() - @available(*, deprecated, message: "Use the 'setRemoteNotificationToken()' method instead.") - @objc dynamic public func setPushProvider(_ pushProvider: ApptentiveKit.ApptentivePushProvider, deviceToken: Foundation.Data) - @available(*, deprecated, message: "This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:).") - @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, from _: UIKit.UIViewController?, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool - @available(*, deprecated, message: "Advertising identifier collection is not implemented.") - @objc dynamic public var advertisingIdentifier: Foundation.UUID? { - @objc get - @objc set - } - @available(*, deprecated, message: "mParticleId has been renamed to mParticleID.") - @objc dynamic public var mParticleId: Swift.String? { - @objc get - @objc set - } + @objc(engage:withCustomData:fromViewController:completion:) @_Concurrency.MainActor final public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:)' method instead.") + @objc @_Concurrency.MainActor final public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping @Sendable (Swift.Bool) -> Swift.Void) + @available(swift, deprecated: 1.0, message: "Use the 'canShowMessageCenter()' method instead.") + @objc @_Concurrency.MainActor final public func queryCanShowMessageCenter(completion: @escaping @Sendable (Swift.Bool) -> Swift.Void) + #if compiler(>=5.3) && $NonescapableTypes + @objc(presentMessageCenterFromViewController:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @available(swift, deprecated: 1.0, message: "Use the async version of this method.") + @objc(presentMessageCenterFromViewController:completion:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(presentMessageCenterFromViewController:withCustomData:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @available(swift, deprecated: 1.0, message: "Use the async version of this method.") + @objc(presentMessageCenterFromViewController:withCustomData:completion:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc dynamic public func removeCustomPersonData(withKey key: Swift.String) + @objc @_Concurrency.MainActor final public func removeCustomPersonData(withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc dynamic public func removeCustomDeviceData(withKey key: Swift.String) + @objc @_Concurrency.MainActor final public func removeCustomDeviceData(withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataString:withKey:) dynamic public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String) + @objc(addCustomDeviceDataString:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataNumber:withKey:) dynamic public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String) + @objc(addCustomDeviceDataNumber:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataBool:withKey:) dynamic public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String) + @objc(addCustomDeviceDataBool:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataString:withKey:) dynamic public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String) + @objc(addCustomPersonDataString:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataNumber:withKey:) dynamic public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String) + @objc(addCustomPersonDataNumber:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataBool:withKey:) dynamic public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String) - @available(*, deprecated, message: "Set style overrides defined in UIKit+Apptentive.swift extensions.") - @objc dynamic public var styleSheet: Any? { - @objc get - @objc set - } - @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.") - @objc dynamic public func checkSDKConfiguration() + @objc(addCustomPersonDataBool:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String) + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func logIn(withToken token: Swift.String, completion: @escaping (Swift.Bool, (any Swift.Error)?) -> Swift.Void) + @objc @_Concurrency.MainActor final public func logIn(withToken token: Swift.String, completion: @escaping @Sendable (Swift.Bool, (any Swift.Error)?) -> Swift.Void) + #endif @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func logOut() + @objc @_Concurrency.MainActor final public func logOut() + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Assign an object that conforms to the 'ApptentiveDelegate' protocol to the Apptentive instance's 'delegate' property.") - @objc dynamic public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? { - @objc get - @objc set - } - @available(*, deprecated, message: "This feature is no longer supported.") - @objc dynamic public var preInteractionCallback: ApptentiveKit.ApptentiveInteractionCallback? { + @objc @_Concurrency.MainActor final public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? { @objc get @objc set } + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func updateToken(_ token: Swift.String, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") - @objc dynamic public var logLevel: ApptentiveKit.ApptentiveLogLevel { + @objc @_Concurrency.MainActor final public func updateToken(_ token: Swift.String, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + @available(swift, deprecated: 1.0, message: "Log level is no longer supported. Use the filtering in Xcode or Console app.") + @objc @_Concurrency.MainActor final public var logLevel: ApptentiveKit.ApptentiveLogLevel { @objc get @objc set } } extension UIKit.UIButton { @available(swift, deprecated: 1.0, message: "Set the 'apptentiveStyle' property to 'ApptentiveButtonStyle.pill'.") - @objc @_Concurrency.MainActor(unsafe) public static let apptentivePillRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency public static let apptentivePillRadius: CoreFoundation.CGFloat @available(swift, deprecated: 1.0, message: "Use the 'apptentiveStyle' property.") - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveCornerRadius: CoreFoundation.CGFloat { + @objc @_Concurrency.MainActor @preconcurrency public static var apptentiveCornerRadius: CoreFoundation.CGFloat { @objc get @objc set } } extension UIKit.UITableView { @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UITableView.Style'.") - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: Swift.Int { + @objc @_Concurrency.MainActor @preconcurrency public static var apptentiveStyle: Swift.Int { @objc get @objc set } } extension UIKit.UIViewController { @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UIModalPresentationStyle'.") - @objc @_Concurrency.MainActor(unsafe) dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle { @objc get @objc set } } @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") public typealias ApptentiveAuthenticationFailureCallback = (ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> Swift.Void -@available(*, deprecated, message: "This feature is no longer supported.") -public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") @objc public enum ApptentiveAuthenticationFailureReason : Swift.Int { case unknown = 0 @@ -947,7 +991,10 @@ public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashab case missingAppKey = 9 case missingAppSignature = 10 case invalidKeySignaturePair = 11 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif + @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get @@ -957,39 +1004,23 @@ public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashab public class ApptentiveConfiguration : ObjectiveC.NSObject { @objc final public let apptentiveKey: Swift.String @objc final public let apptentiveSignature: Swift.String - @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of its static log properties.") + @available(*, deprecated, message: "Logging now uses iOS's Unified Logging features so logs are no longer filtered by the SDK.") @objc public var logLevel: ApptentiveKit.ApptentiveLogLevel - @available(swift, deprecated: 1.0, message: "Set the 'shouldHideSensitiveLogs' property on 'ApptentiveLogger' or one of its static log properties.") + @available(*, deprecated, message: "Logging now uses iOS's Unified Logging features so redaction of sensitive information is handled automatically.") @objc public var shouldSanitizeLogMessages: Swift.Bool - @available(*, deprecated, message: "This property is ignored. Use the designated initializer for 'Apptentive' to set this.") - @objc public var baseURL: Foundation.URL? + @objc public var overrideBaseURL: Foundation.URL? + @objc public var region: Swift.String? @available(swift, deprecated: 1.0, message: "Set the 'distributionName' property on 'Apptentive' directly before calling 'register(with:completion)'.") @objc public var distributionName: Swift.String? @available(swift, deprecated: 1.0, message: "Set the 'distributionVersion' property on 'Apptentive' directly before calling 'register(with:completion)'.") @objc public var distributionVersion: Swift.String? - @available(*, deprecated, message: "This property is ignored. An 'SKStoreReviewController' will be used for all ratings.") - @objc public var appID: Swift.String? - @available(*, deprecated, message: "This property is ignored. The info button no longer exists.") - @objc public var showInfoButton: Swift.Bool - @available(*, deprecated, message: "This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard.") - @objc public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? + #if compiler(>=5.3) && $NonescapableTypes @objc(initWithApptentiveKey:apptentiveSignature:) required public init?(apptentiveKey: Swift.String, apptentiveSignature: Swift.String) + #endif @objc public static func configuration(apptentiveKey key: Swift.String, apptentiveSignature signature: Swift.String) -> ApptentiveKit.ApptentiveConfiguration @objc deinit } -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -@objc public enum ApptentivePushProvider : Swift.Int { - case apptentive = 0 - case urbanAirship = 1 - case amazonSNS = 2 - case parse = 3 - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") @objc public enum ApptentiveLogLevel : Swift.UInt { case undefined = 0 case crit = 1 @@ -998,340 +1029,266 @@ public class ApptentiveConfiguration : ObjectiveC.NSObject { case info = 4 case debug = 5 case verbose = 6 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.UInt) + #endif + @available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") public typealias RawValue = Swift.UInt public var rawValue: Swift.UInt { get } } -@objc @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public class TermsAndConditions : ObjectiveC.NSObject { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public init(bodyText: Swift.String?, linkText: Swift.String?, linkURL: Foundation.URL?) - final public let bodyText: Swift.String? - final public let linkText: Swift.String? - final public let linkURL: Foundation.URL? - @objc deinit -} -@available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public protocol ApptentiveStyle { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor -} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -public enum ApptentiveStyleIdentifier { - case body - case headerTitle - case headerMessage - case messageDate - case messageSender - case messageStatus - case messageCenterStatus - case surveyInstructions - case doneButton - case button - case submitButton - case textInput - case headerBackground - case footerBackground - case failure - case separator - case background - case collectionBackground - case textInputBackground - case textInputPlaceholder - case messageBackground - case replyBackground - case contextBackground - public static func == (a: ApptentiveKit.ApptentiveStyleIdentifier, b: ApptentiveKit.ApptentiveStyleIdentifier) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public class ApptentiveStyleSheet : ApptentiveKit.ApptentiveStyle { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - convenience public init?(contentsOf stylePropertyListURL: Foundation.URL) - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var fontFamily: Swift.String - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var lightFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var regularFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var mediumFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var boldFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var primaryColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var secondaryColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var failureColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var backgroundColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var separatorColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var collectionBackgroundColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var placeholderColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var sizeAdjustment: CoreFoundation.CGFloat - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func setFontDescriptor(_ fontDescriptor: UIKit.UIFontDescriptor, forStyle style: Swift.String) - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func setColor(_ color: UIKit.UIColor, forStyle style: Swift.String) - @objc deinit -} -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogButton : UIKit.UIButton { - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var borderWidth: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var borderColor: UIKit.UIColor - @_Concurrency.MainActor(unsafe) @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogButton : UIKit.UIButton { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var cornerRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var borderWidth: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var borderColor: UIKit.UIColor + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize { @objc get } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func layoutSubviews() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func didMoveToWindow() @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DismissButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DismissButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class InteractionButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class InteractionButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class YesButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class YesButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class NoButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class NoButton : ApptentiveKit.DialogButton { @objc deinit } -public struct Sysctl { - public enum Error : Swift.Error { - case unknown - case malformedUTF8 - case invalidSize - case posixError(Darwin.POSIXErrorCode) - } - public static func data(for keys: [Swift.Int32]) throws -> [Swift.Int8] - public static func keys(for name: Swift.String) throws -> [Swift.Int32] - public static func value(ofType: T.Type, forKeys keys: [Swift.Int32]) throws -> T - public static func value(ofType type: T.Type, forKeys keys: Swift.Int32...) throws -> T - public static func value(ofType type: T.Type, forName name: Swift.String) throws -> T - public static func string(for keys: [Swift.Int32]) throws -> Swift.String - public static func string(for keys: Swift.Int32...) throws -> Swift.String - public static func string(for name: Swift.String) throws -> Swift.String - public static var hostName: Swift.String { - get - } - public static var machine: Swift.String { - get - } - public static var model: Swift.String { - get - } - public static var activeCPUs: Swift.Int32 { - get - } - public static var osRelease: Swift.String { - get - } - public static var osType: Swift.String { - get - } - public static var osVersion: Swift.String { - get - } - public static var version: Swift.String { - get - } -} -@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class ApptentiveNavigationController : UIKit.UINavigationController { - @_Concurrency.MainActor(unsafe) @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle { +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class ApptentiveNavigationController : UIKit.UINavigationController { + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle { @objc get } - @objc @_Concurrency.MainActor(unsafe) public static var prefersLargeHeader: Swift.Bool + @objc @_Concurrency.MainActor @preconcurrency public static var prefersLargeHeader: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes @available(iOS 5.0, *) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(rootViewController: UIKit.UIViewController) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) - @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?) + #endif + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(rootViewController: UIKit.UIViewController) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) + #endif @objc deinit } -extension UIKit.UITableView { - @_Concurrency.MainActor(unsafe) public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat +@_Concurrency.MainActor extension UIKit.UITableView { + @_Concurrency.MainActor public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat } -extension UIKit.UITableView.Style { - public static var apptentive: UIKit.UITableView.Style +@_Concurrency.MainActor extension UIKit.UITableView.Style { + @_Concurrency.MainActor public static var apptentive: UIKit.UITableView.Style } -extension UIKit.UIModalPresentationStyle { - public static var apptentive: UIKit.UIModalPresentationStyle +@_Concurrency.MainActor extension UIKit.UIModalPresentationStyle { + @_Concurrency.MainActor public static var apptentive: UIKit.UIModalPresentationStyle } -extension UIKit.UIBarButtonItem { - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIBarButtonItem - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveProfileEdit: UIKit.UIBarButtonItem +@_Concurrency.MainActor extension UIKit.UIBarButtonItem { + @objc @_Concurrency.MainActor public static var apptentiveClose: UIKit.UIBarButtonItem + @objc @_Concurrency.MainActor public static var appentiveRefresh: UIKit.UIBarButtonItem + @objc @_Concurrency.MainActor public static var apptentiveProfileEdit: UIKit.UIBarButtonItem } -extension UIKit.UIButton { - @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIButton? - public enum ApptentiveButtonStyle { +@_Concurrency.MainActor extension UIKit.UIButton { + @_Concurrency.MainActor public static var apptentiveClose: UIKit.UIButton? + public enum ApptentiveButtonStyle : Swift.Equatable { case pill case radius(CoreFoundation.CGFloat) - } - @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle -} -extension UIKit.UIImage { - @objc public static var apptentiveMessageAttachmentButton: UIKit.UIImage? - @objc public static var apptentiveMessageSendButton: UIKit.UIImage? - @objc public static var apptentiveSentMessageBubble: UIKit.UIImage? - @objc public static var apptentiveReceivedMessageBubble: UIKit.UIImage? - @objc public static var apptentiveAttachmentPlaceholder: UIKit.UIImage? - @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIImage? - @objc public static var apptentiveHeaderLogo: UIKit.UIImage? - @objc public static var apptentiveRadioButton: UIKit.UIImage? - @objc public static var apptentiveCheckbox: UIKit.UIImage? - @objc public static var apptentiveRadioButtonSelected: UIKit.UIImage? - @objc public static var apptentiveCheckboxSelected: UIKit.UIImage? -} -extension UIKit.UIColor { - @objc public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor - @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor + public static func == (a: UIKit.UIButton.ApptentiveButtonStyle, b: UIKit.UIButton.ApptentiveButtonStyle) -> Swift.Bool + } + @_Concurrency.MainActor public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle +} +@_Concurrency.MainActor extension UIKit.UIImage { + @objc @_Concurrency.MainActor public static var apptentiveMessageAttachmentButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveMessageSendButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveSentMessageBubble: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveReceivedMessageBubble: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveAttachmentPlaceholder: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveAttachmentRemoveButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveHeaderLogo: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveRadioButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveCheckbox: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveRadioButtonSelected: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveCheckboxSelected: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveDialogHeader: UIKit.UIImage? +} +@_Concurrency.MainActor extension UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageTextInputPlaceholder'.") - @objc public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor { @objc get @objc set } - @objc public static var apptentiveMessageCenterTextInput: UIKit.UIColor - @objc public static var apptentivetextInputTint: UIKit.UIColor - @objc public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInput: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentivetextInputTint: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageCenterTextInputBorder'.") - @objc public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor { @objc get @objc set } - @objc public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor - @objc public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor - @objc public static var apptentiveMessageCenterStatus: UIKit.UIColor - @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor - @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor - @objc public static var apptentiveMessageBubbleInbound: UIKit.UIColor - @objc public static var apptentiveMessageBubbleOutbound: UIKit.UIColor - @objc public static var apptentiveMessageLabelInbound: UIKit.UIColor - @objc public static var apptentiveMessageLabelOutbound: UIKit.UIColor - @objc public static var apptentiveQuestionLabel: UIKit.UIColor - @objc public static var apptentiveInstructionsLabel: UIKit.UIColor - @objc public static var apptentiveChoiceLabel: UIKit.UIColor - @objc public static var apptentiveError: UIKit.UIColor - @objc public static var apptentiveTint: UIKit.UIColor - @objc public static var apptentiveSecondaryLabel: UIKit.UIColor - @objc public static var apptentiveRangeControlBorder: UIKit.UIColor - @objc public static var apptentiveSurveyIntroduction: UIKit.UIColor - @objc public static var apptentiveTextInputBorder: UIKit.UIColor - @objc public static var apptentiveTextInputBackground: UIKit.UIColor - @objc public static var apptentiveTextInput: UIKit.UIColor - @objc public static var apptentiveTextInputPlaceholder: UIKit.UIColor - @objc public static var apptentiveMinMaxLabel: UIKit.UIColor - @objc public static var apptentiveGroupedBackground: UIKit.UIColor - @objc public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor - @objc public static var apptentiveSeparator: UIKit.UIColor - @objc public static var apptentiveImageSelected: UIKit.UIColor - @objc public static var apptentiveImageNotSelected: UIKit.UIColor - @objc public static var apptentiveSubmitButton: UIKit.UIColor - @objc public static var apptentiveBranchedSurveyFooter: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterStatus: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageBubbleInbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageBubbleOutbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageLabelInbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageLabelOutbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveQuestionLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveInstructionsLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveChoiceLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveError: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTint: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSecondaryLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveRangeControlBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSurveyIntroduction: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSurveyTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveOtherTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveOtherTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInput: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputPlaceholder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMinMaxLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveGroupedBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSeparator: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveImageSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveImageNotSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveBranchedSurveyFooter: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.") - public static var apptentiveSubmitLabel: UIKit.UIColor - @objc public static var apptentiveSubmitStatusLabel: UIKit.UIColor - @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIColor - @objc public static var apptentiveSubmitButtonTitle: UIKit.UIColor - @objc public static var apptentiveSubmitButtonBorder: UIKit.UIColor - @objc public static var apptentiveQuestionSeparator: UIKit.UIColor - public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor - public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor - @objc public static var apptentiveMessageCenterBackground: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveSubmitLabel: UIKit.UIColor { + get + set + } + @objc @_Concurrency.MainActor public static var apptentiveSubmitStatusLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTermsOfServiceLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveQuestionSeparator: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterBackground: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveAttachmentRemoveButton'.") - @objc public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor - @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIColor - @objc public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor - @objc public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor - @objc public static var apptentiveTextInputBorderSelected: UIKit.UIColor - @objc public static var apptentiveDisclaimerLabel: UIKit.UIColor -} -extension UIKit.UIFont { - @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont - @objc public static var apptentiveMessageCenterTextInput: UIKit.UIFont - @objc public static var apptentiveTextInputPlaceholder: UIKit.UIFont - @objc public static var apptentiveMessageCenterStatus: UIKit.UIFont - @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont - @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont - @objc public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont - @objc public static var apptentiveQuestionLabel: UIKit.UIFont - @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIFont - @objc public static var apptentiveChoiceLabel: UIKit.UIFont - @objc public static var apptentiveMessageLabel: UIKit.UIFont - @objc public static var apptentiveMinMaxLabel: UIKit.UIFont - @objc public static var apptentiveSenderLabel: UIKit.UIFont - @objc public static var apptentiveMessageDateLabel: UIKit.UIFont - @objc public static var apptentiveInstructionsLabel: UIKit.UIFont - @objc public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor { + @objc get + @objc set + } + @objc @_Concurrency.MainActor public static var apptentiveAttachmentRemoveButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBorderSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDisclaimerLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogBackground: UIKit.UIColor? + @objc @_Concurrency.MainActor public static var apptentiveDialogTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogMessage: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogButtonBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogButtonLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveButtonBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogSeparator: UIKit.UIColor +} +@_Concurrency.MainActor extension UIKit.UIFont { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInput: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTextInputPlaceholder: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterStatus: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveQuestionLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTermsOfServiceLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveChoiceLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMinMaxLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSenderLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageDateLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveInstructionsLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.") - public static var apptentiveSubmitLabel: UIKit.UIFont - @objc public static var apptentiveSubmitStatusLabel: UIKit.UIFont - @objc public static var apptentiveDisclaimerLabel: UIKit.UIFont - @objc public static var apptentiveSubmitButtonTitle: UIKit.UIFont - @objc public static var apptentiveTextInput: UIKit.UIFont + @_Concurrency.MainActor public static var apptentiveSubmitLabel: UIKit.UIFont { + get + set + } + @objc @_Concurrency.MainActor public static var apptentiveSubmitStatusLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDisclaimerLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTextInput: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogText: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogMessage: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogButton: UIKit.UIFont } -extension UIKit.UIToolbar { +@_Concurrency.MainActor extension UIKit.UIToolbar { @objc public enum ToolbarMode : Swift.Int { case alwaysShown case hiddenWhenEmpty + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif + @available(iOS 2.0, *) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode + @objc @_Concurrency.MainActor public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode +} +@_Concurrency.MainActor extension CoreFoundation.CGFloat { + @_Concurrency.MainActor public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat + @_Concurrency.MainActor public static var apptentiveDialogCornerRadius: CoreFoundation.CGFloat + @_Concurrency.MainActor public static var apptentiveDialogButtonSpacing: CoreFoundation.CGFloat +} +@_Concurrency.MainActor extension CoreFoundation.CGSize { + @_Concurrency.MainActor public static var apptentiveThumbnail: CoreFoundation.CGSize } -extension CoreFoundation.CGFloat { - public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat +@available(iOS 26.0, *) +@_Concurrency.MainActor extension UIKit.UICornerConfiguration { + @_Concurrency.MainActor public static var apptentiveDialogButton: UIKit.UICornerConfiguration } +extension ApptentiveKit.DialogViewModel : Swift.Sendable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.Hashable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.RawRepresentable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Hashable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.RawRepresentable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.Equatable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.Hashable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.RawRepresentable {} -extension ApptentiveKit.SystemFontNames : Swift.Equatable {} -extension ApptentiveKit.SystemFontNames : Swift.Hashable {} -extension ApptentiveKit.SystemFontNames : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel : Swift.Sendable {} +extension ApptentiveKit.MessageCenterViewModel : Swift.Sendable {} extension ApptentiveKit.MessageCenterViewModel.Message.SentStatus : Swift.Hashable {} +extension ApptentiveKit.Apptentive : Swift.Sendable {} extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Equatable {} extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Hashable {} -extension ApptentiveKit.LogLevel : Swift.Hashable {} -extension ApptentiveKit.LogLevel : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice : Swift.Sendable {} extension ApptentiveKit.Apptentive.UITheme : Swift.Equatable {} extension ApptentiveKit.Apptentive.UITheme : Swift.Hashable {} extension ApptentiveKit.Apptentive.UITheme : Swift.RawRepresentable {} +extension ApptentiveKit.Apptentive.Region : Swift.Equatable {} +extension ApptentiveKit.Apptentive.Region : Swift.Hashable {} +extension ApptentiveKit.Apptentive.Region : Swift.RawRepresentable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.Equatable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.Hashable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.RawRepresentable {} extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Equatable {} extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Hashable {} +extension ApptentiveKit.SurveyViewModel.Page : Swift.Sendable {} extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Equatable {} extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Hashable {} extension ApptentiveKit.MessageCenterViewModelError : Swift.Equatable {} extension ApptentiveKit.MessageCenterViewModelError : Swift.Hashable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.Equatable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.Hashable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel.Question : Swift.Sendable {} +extension ApptentiveKit.InteractionPresenter : Swift.Sendable {} extension ApptentiveKit.DialogViewModel.DialogType : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.DialogType : Swift.Hashable {} @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") @@ -1340,22 +1297,12 @@ extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Equatable extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Hashable {} @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.RawRepresentable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.Equatable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.Hashable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.RawRepresentable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.Equatable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.Hashable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.RawRepresentable {} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Equatable {} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Hashable {} extension UIKit.UIToolbar.ToolbarMode : Swift.Equatable {} extension UIKit.UIToolbar.ToolbarMode : Swift.Hashable {} extension UIKit.UIToolbar.ToolbarMode : Swift.RawRepresentable {} diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 37ebf8f..e1f3262 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 25e3c74..aa4aa2c 100644 --- a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,8 +1,10 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) -// swift-module-flags: -target x86_64-apple-ios13.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name ApptentiveKit +// swift-compiler-version: Apple Swift version 6.2.3 (swiftlang-6.2.3.3.21 clang-1700.6.3.2) +// swift-module-flags: -target x86_64-apple-ios15.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 6 -enforce-exclusivity=checked -O -enable-experimental-feature DebugDescriptionMacro -module-name ApptentiveKit +// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.2.3 import CommonCrypto import CoreTelephony +import CryptoKit import DeveloperToolsSupport import Foundation import MobileCoreServices @@ -11,41 +13,48 @@ import PhotosUI import QuickLook import QuickLookThumbnailing import SafariServices +import Security import StoreKit import Swift import SwiftUI import UIKit +import UniformTypeIdentifiers +import UserNotifications import WebKit import _Concurrency import _StringProcessing import _SwiftConcurrencyShims -@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate { - @_Concurrency.MainActor(unsafe) @objc override dynamic public var next: UIKit.UIResponder? { +@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var next: UIKit.UIResponder? { @objc get } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidLoad() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool) - @_Concurrency.MainActor(unsafe) public func dismiss() - @_Concurrency.MainActor(unsafe) public func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage imageData: ApptentiveKit.DialogViewModel.Image) + #endif + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidLoad() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool) + @_Concurrency.MainActor public func dismiss() + @_Concurrency.MainActor public func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage imageData: ApptentiveKit.DialogViewModel.Image) @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class EnjoymentDialogViewController : ApptentiveKit.DialogViewController { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class EnjoymentDialogViewController : ApptentiveKit.DialogViewController { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class TextModalViewController : ApptentiveKit.DialogViewController { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class TextModalViewController : ApptentiveKit.DialogViewController { @objc deinit } extension ApptentiveKit.DialogViewModel { public enum Image : Swift.Equatable { case none case loading(altText: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout) - case loaded(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout, maxHeight: CoreFoundation.CGFloat) + case loaded(image: UIKit.UIImage, acessibilityLabel: Swift.String, layout: ApptentiveKit.DialogViewModel.Image.Layout) public enum Layout : Swift.String { case fullWidth case leading case trailing case center + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get @@ -58,13 +67,15 @@ extension ApptentiveKit.DialogViewModel { @_hasMissingDesignatedInitializers public class Action { final public let label: Swift.String final public let actionType: ApptentiveKit.DialogViewModel.Action.ActionType - final public let buttonTapped: () -> Swift.Void + final public let buttonTapped: @_Concurrency.MainActor @Sendable () -> Swift.Void public enum ActionType : Swift.String { case dismiss case interaction case yes case no + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get @@ -73,45 +84,25 @@ extension ApptentiveKit.DialogViewModel { @objc deinit } } -public enum HTMLTextAlignment : Swift.String { - case center - case left - case right - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -public enum SystemFontNames : Swift.String { - case html - case os - public init?(rawValue: Swift.String) - public typealias RawValue = Swift.String - public var rawValue: Swift.String { - get - } -} -extension Swift.String { - public func attributedString(withFont font: UIKit.UIFont, alignment: ApptentiveKit.HTMLTextAlignment) -> Foundation.NSMutableAttributedString? -} extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let minValue: Swift.Int - final public let maxValue: Swift.Int - final public let minText: Swift.String? - final public let maxText: Swift.String? - public var selectedValueIndex: Swift.Int? { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let minValue: Swift.Int + @_Concurrency.MainActor final public let maxValue: Swift.Int + @_Concurrency.MainActor final public let minText: Swift.String? + @_Concurrency.MainActor final public let maxText: Swift.String? + @_Concurrency.MainActor public var selectedValueIndex: Swift.Int? { get } - public var value: Swift.Int? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var value: Swift.Int? { get } - public var choiceLabels: [Swift.String] { + #endif + @_Concurrency.MainActor public var choiceLabels: [Swift.String] { get } - public func selectValue(at index: Swift.Int) - public var accessibilityHintForSegment: Swift.String { + @_Concurrency.MainActor public func selectValue(at index: Swift.Int) + @_Concurrency.MainActor public var accessibilityHintForSegment: Swift.String { get } @objc deinit @@ -142,9 +133,9 @@ extension ApptentiveKit.MessageCenterViewModel { case sending case sent case failed - public func hash(into hasher: inout Swift.Hasher) public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.SentStatus, b: ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> Swift.Bool public func encode(to encoder: any Swift.Encoder) throws + public func hash(into hasher: inout Swift.Hasher) public var hashValue: Swift.Int { get } @@ -162,24 +153,32 @@ extension ApptentiveKit.MessageCenterViewModel { } @objc @_hasMissingDesignatedInitializers public class Attachment : ObjectiveC.NSObject, QuickLook.QLPreviewItem { final public let fileExtension: Swift.String? + #if compiler(>=5.3) && $NonescapableTypes public var thumbnail: UIKit.UIImage? { get } + #endif public var downloadProgress: Swift.Float public var localURL: Foundation.URL? public var displayName: Swift.String { get } + #if compiler(>=5.3) && $NonescapableTypes @objc public var previewItemURL: Foundation.URL? { @objc get } + #endif + #if compiler(>=5.3) && $NonescapableTypes @objc public var previewItemTitle: Swift.String? { @objc get } + #endif + #if compiler(>=5.3) && $NonescapableTypes @objc override dynamic public var accessibilityLabel: Swift.String? { @objc get @objc set } + #endif public var removeButtonAccessibilityLabel: Swift.String { get } @@ -191,21 +190,19 @@ extension ApptentiveKit.MessageCenterViewModel { @objc deinit } } -extension ApptentiveKit.Apptentive : UserNotifications.UNUserNotificationCenterDelegate { - @objc dynamic public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data) - @available(*, deprecated, message: "Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead.") - @objc dynamic public func setRemoteNotifcationDeviceToken(_ tokenData: Foundation.Data) - @objc dynamic public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool - @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool - @objc dynamic public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool - @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) - @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) +extension ApptentiveKit.Apptentive : @preconcurrency UserNotifications.UNUserNotificationCenterDelegate { + @objc @_Concurrency.MainActor final public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data) + @objc @_Concurrency.MainActor final public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping @Sendable (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool + @objc @_Concurrency.MainActor final public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool + @objc @_Concurrency.MainActor final public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool + @_Concurrency.MainActor @objc final public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping @Sendable (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) + @_Concurrency.MainActor @objc final public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping @Sendable () -> Swift.Void) } extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice] - public func toggleChoice(at index: Swift.Int) - public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice] + @_Concurrency.MainActor public func toggleChoice(at index: Swift.Int) + @_Concurrency.MainActor public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle { get } public enum SelectionStyle { @@ -217,18 +214,17 @@ extension ApptentiveKit.SurveyViewModel { get } } - @_hasMissingDesignatedInitializers public class Choice { - final public let label: Swift.String - public var htmlLabel: Foundation.NSAttributedString? - final public let placeholderText: Swift.String? - final public let supportsOther: Swift.Bool - public var isSelected: Swift.Bool { + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Choice { + @_Concurrency.MainActor final public let label: Foundation.AttributedString + @_Concurrency.MainActor final public let placeholderText: Swift.String? + @_Concurrency.MainActor final public let supportsOther: Swift.Bool + @_Concurrency.MainActor public var isSelected: Swift.Bool { get } - public var isMarkedAsInvalid: Swift.Bool { + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get } - public var value: Swift.String? { + @_Concurrency.MainActor public var value: Swift.String? { get set } @@ -237,94 +233,89 @@ extension ApptentiveKit.SurveyViewModel { @objc deinit } } -public struct ApptentiveLogger { - public static var shouldHideSensitiveLogs: Swift.Bool - public var logLevel: ApptentiveKit.LogLevel -} -extension ApptentiveKit.ApptentiveLogger { - public static var `default`: ApptentiveKit.ApptentiveLogger - public static var engagement: ApptentiveKit.ApptentiveLogger - public static var interaction: ApptentiveKit.ApptentiveLogger - public static var network: ApptentiveKit.ApptentiveLogger - public static var payload: ApptentiveKit.ApptentiveLogger - public static var targeting: ApptentiveKit.ApptentiveLogger - public static var messages: ApptentiveKit.ApptentiveLogger - public static var attachments: ApptentiveKit.ApptentiveLogger - public static var resources: ApptentiveKit.ApptentiveLogger - public static var logLevel: ApptentiveKit.LogLevel { - get - set - } -} -public enum LogLevel : Swift.Int, Swift.Comparable { - case debug - case info - case notice - case warning - case error - case critical - case fault - public static func < (lhs: ApptentiveKit.LogLevel, rhs: ApptentiveKit.LogLevel) -> Swift.Bool - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } +extension os.Logger { + public static let `default`: os.Logger + public static let engagement: os.Logger + public static let interaction: os.Logger + public static let network: os.Logger + public static let payload: os.Logger + public static let targeting: os.Logger + public static let messages: os.Logger + public static let attachments: os.Logger + public static let resources: os.Logger } @objc public protocol ApptentiveDelegate { @objc func authenticationDidFail(with error: any Swift.Error) } -@objc @_hasMissingDesignatedInitializers public class Apptentive : ObjectiveC.NSObject { - @objc public static let shared: ApptentiveKit.Apptentive - @objc weak public var delegate: (any ApptentiveKit.ApptentiveDelegate)? - public var interactionPresenter: ApptentiveKit.InteractionPresenter { +@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class Apptentive : ObjectiveC.NSObject { + @objc @_Concurrency.MainActor public static let shared: ApptentiveKit.Apptentive + @objc @_Concurrency.MainActor weak final public var delegate: (any ApptentiveKit.ApptentiveDelegate)? + @_Concurrency.MainActor final public var interactionPresenter: ApptentiveKit.InteractionPresenter { get set } - @objc public var theme: ApptentiveKit.Apptentive.UITheme - @objc public var personName: Swift.String? { + @objc @_Concurrency.MainActor final public var theme: ApptentiveKit.Apptentive.UITheme + @objc @_Concurrency.MainActor final public var shouldUseSecureTokenStorage: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personName: Swift.String? { @objc get @objc set + _modify } - @objc public var personEmailAddress: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personEmailAddress: Swift.String? { @objc get @objc set + _modify } - @objc public var mParticleID: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var mParticleID: Swift.String? { @objc get @objc set + _modify } - public var personCustomData: ApptentiveKit.CustomData { + #endif + @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var personCustomData: ApptentiveKit.CustomData { get set + _modify } - public var deviceCustomData: ApptentiveKit.CustomData { + @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var deviceCustomData: ApptentiveKit.CustomData { get set + _modify } - @objc dynamic public var unreadMessageCount: Swift.Int - @objc public var distributionName: Swift.String? { + @objc @_Concurrency.MainActor dynamic final public var unreadMessageCount: Swift.Int + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var distributionName: Swift.String? { @objc get @objc set + _modify } - @objc public var distributionVersion: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc @ApptentiveKit.Apptentive.BackendSync @_Concurrency.MainActor final public var distributionVersion: Swift.String? { @objc get @objc set + _modify } - @objc public enum UITheme : Swift.Int { + #endif + @objc public enum UITheme : Swift.Int, Swift.Sendable { case apptentive = 1 + case customerOnly = 2 + case customerBasedOnApptentive = 3 case none = 0 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } - public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials) async throws - #endif - public struct AppCredentials : Swift.Codable, Swift.Equatable { + public struct AppCredentials : Swift.Codable, Swift.Equatable, Swift.Sendable { public let key: Swift.String public let signature: Swift.String public init(key: Swift.String, signature: Swift.String) @@ -332,45 +323,74 @@ public enum LogLevel : Swift.Int, Swift.Comparable { public func encode(to encoder: any Swift.Encoder) throws public init(from decoder: any Swift.Decoder) throws } - public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil) async throws -> Swift.Bool + public enum Region : Swift.String, Swift.Sendable { + case us + case eu + case au + #if compiler(>=5.3) && $NonescapableTypes + public init?(rawValue: Swift.String) + #endif + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + public struct Environment : Swift.Sendable { + public init(_ template: @escaping @Sendable (Swift.String, ApptentiveKit.Apptentive.Region) -> Swift.String) + public static let production: ApptentiveKit.Apptentive.Environment + public static func custom(_ url: Foundation.URL) -> ApptentiveKit.Apptentive.Environment + } + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, region: ApptentiveKit.Apptentive.Region = .us, environment: ApptentiveKit.Apptentive.Environment = .production, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + nonisolated final public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, region: ApptentiveKit.Apptentive.Region = .us, environment: ApptentiveKit.Apptentive.Environment = .production) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + nonisolated final public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil) async throws -> Swift.Bool #endif - public func dismissAllInteractions(animated: Swift.Bool) - public func presentMessageCenter(from viewController: UIKit.UIViewController?, completion: ((Swift.Result) -> Swift.Void)? = nil) - public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData?, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil) async throws -> Swift.Bool + @_Concurrency.MainActor final public func dismissAllInteractions(animated: Swift.Bool) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - @objc(sendAttachmentText:) public func sendAttachment(_ text: Swift.String) - @objc(sendAttachmentImage:) public func sendAttachment(_ image: UIKit.UIImage) - @objc(sendAttachmentFile:withMimeType:) public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String) - public func canShowInteraction(event: ApptentiveKit.Event, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func canShowInteraction(event: ApptentiveKit.Event) async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + nonisolated final public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData? = nil) async throws -> Swift.Bool #endif - public func canShowMessageCenter(completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func canShowMessageCenter() async throws -> Swift.Bool + @objc(sendAttachmentText:) nonisolated final public func sendAttachment(_ text: Swift.String) + @objc(sendAttachmentImage:) nonisolated final public func sendAttachment(_ image: UIKit.UIImage) + @objc(sendAttachmentFile:withMimeType:) nonisolated final public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func canShowInteraction(event: ApptentiveKit.Event, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - public func logIn(with token: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void) - #if compiler(>=5.3) && $AsyncAwait - public func logIn(with token: Swift.String) async throws + nonisolated final public func canShowInteraction(event: ApptentiveKit.Event) async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func canShowMessageCenter(completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) #endif - public func logOut(completion: ((Swift.Result) -> Swift.Void)?) - #if compiler(>=5.3) && $AsyncAwait - public func logOut() async throws + nonisolated final public func canShowMessageCenter() async throws -> Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func logIn(with token: Swift.String, completion: @escaping @Sendable (Swift.Result) -> Swift.Void) #endif - public func updateToken(_ token: Swift.String, completion: ((Swift.Result) -> Swift.Void)? = nil) - #if compiler(>=5.3) && $AsyncAwait - public func updateToken(_ token: Swift.String) async throws + nonisolated final public func logIn(with token: Swift.String) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func logOut(completion: (@Sendable (Swift.Result) -> Swift.Void)?) #endif - convenience public init(apiBaseURL: Foundation.URL) + nonisolated final public func logOut() async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func updateToken(_ token: Swift.String, completion: (@Sendable (Swift.Result) -> Swift.Void)? = nil) + #endif + nonisolated final public func updateToken(_ token: Swift.String) async throws + @propertyWrapper public struct BackendSync { + public var wrappedValue: T { + get + set + } + } @objc deinit } -public enum ApptentiveError : Swift.Error, Foundation.LocalizedError { +public enum ApptentiveError : Swift.Error, Foundation.LocalizedError, Swift.Equatable { case internalInconsistency - case invalidCustomDataType(Any?) + case invalidCustomDataType case fileExistsAtContainerDirectoryPath case unsupportedBackendStateTransition case emptyEventName @@ -381,14 +401,19 @@ public enum ApptentiveError : Swift.Error, Foundation.LocalizedError { case missingSubClaim case mismatchedSubClaim case invalidEncryptionKey + case invalidAppCredentials case noActiveConversation case authenticationFailed(reason: ApptentiveKit.AuthenticationFailureReason?, responseString: Swift.String?) case resourceNotDecodableAsImage + case interactionExceededRateLimit(count: Swift.Int, limit: Swift.Int) + #if compiler(>=5.3) && $NonescapableTypes public var errorDescription: Swift.String? { get } + #endif + public static func == (a: ApptentiveKit.ApptentiveError, b: ApptentiveKit.ApptentiveError) -> Swift.Bool } -public enum AuthenticationFailureReason : Swift.String, Swift.Codable { +public enum AuthenticationFailureReason : Swift.String, Swift.Codable, Swift.Sendable { case invalidAlgorithm case malformedToken case invalidToken @@ -400,14 +425,16 @@ public enum AuthenticationFailureReason : Swift.String, Swift.Codable { case missingAppKey case missingAppSignature case invalidKeySignaturePair + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.String) + #endif public typealias RawValue = Swift.String public var rawValue: Swift.String { get } } -public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> () -public protocol CustomDataCompatible { +nonisolated(unsafe) public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> () +public protocol CustomDataCompatible : Swift.Sendable { } extension Swift.String : ApptentiveKit.CustomDataCompatible { } @@ -419,12 +446,14 @@ extension Swift.Int : ApptentiveKit.CustomDataCompatible { } extension Swift.Bool : ApptentiveKit.CustomDataCompatible { } -public struct CustomData : Swift.Equatable, Swift.Codable { +public struct CustomData : Swift.Equatable, Swift.Codable, Swift.Sendable { public init() + #if compiler(>=5.3) && $NonescapableTypes public subscript(key: Swift.String) -> (any ApptentiveKit.CustomDataCompatible)? { get set } + #endif public var keys: Swift.Dictionary.Keys { get } @@ -432,56 +461,64 @@ public struct CustomData : Swift.Equatable, Swift.Codable { public init(from decoder: any Swift.Decoder) throws public static func == (lhs: ApptentiveKit.CustomData, rhs: ApptentiveKit.CustomData) -> Swift.Bool } -public protocol SurveyViewModelDelegate : AnyObject { - func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel) - func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) -} -@_hasMissingDesignatedInitializers public class SurveyViewModel { - final public let name: Swift.String? - final public let isRequired: Swift.Bool - final public let pageIndicatorSegmentCount: Swift.Int - final public let validationErrorMessage: Swift.String - public var disclaimerText: Swift.String? { +@_Concurrency.MainActor public protocol SurveyViewModelDelegate : AnyObject { + @_Concurrency.MainActor func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel) + @_Concurrency.MainActor func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel) +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class SurveyViewModel { + @_Concurrency.MainActor final public let name: Swift.String? + @_Concurrency.MainActor final public let isRequired: Swift.Bool + @_Concurrency.MainActor final public let pageIndicatorSegmentCount: Swift.Int + @_Concurrency.MainActor final public let validationErrorMessage: Foundation.AttributedString + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var disclaimerText: Foundation.AttributedString? { get } + #endif public struct TermsAndConditions { } - final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions? + @_Concurrency.MainActor final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions? public struct CloseConfirmation { } - final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation - weak public var delegate: (any ApptentiveKit.SurveyViewModelDelegate)? - public var currentPage: ApptentiveKit.SurveyViewModel.Page { + @_Concurrency.MainActor final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation + @_Concurrency.MainActor weak public var delegate: (any ApptentiveKit.SurveyViewModelDelegate)? + @_Concurrency.MainActor public var currentPage: ApptentiveKit.SurveyViewModel.Page { get } - public var questions: [ApptentiveKit.SurveyViewModel.Question] { + @_Concurrency.MainActor public var questions: [ApptentiveKit.SurveyViewModel.Question] { get } - public var isMarkedAsInvalid: Swift.Bool { + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get } - public var thankYouMessage: Swift.String? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var thankYouMessage: Foundation.AttributedString? { get } - public var introduction: Swift.String? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var introduction: Foundation.AttributedString? { get } - public var advanceButtonText: Swift.String { + #endif + @_Concurrency.MainActor public var advanceButtonText: Swift.String { get } - public var invalidQuestionIndexes: Foundation.IndexSet { + @_Concurrency.MainActor public var invalidQuestionIndexes: Foundation.IndexSet { get } - public var surveyDidSendResponse: Swift.Bool - public var highlightFirstQuestionSegment: Swift.Bool - public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath) - public func selectValueFromRange(at indexPath: Foundation.IndexPath) - public func openTermsAndConditions() - public func advance() - public var isValid: Swift.Bool { + @_Concurrency.MainActor public var surveyDidSendResponse: Swift.Bool + @_Concurrency.MainActor public var highlightFirstQuestionSegment: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath) + #endif + @_Concurrency.MainActor public func selectValueFromRange(at indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func openTermsAndConditions() + @_Concurrency.MainActor public func advance() async + @_Concurrency.MainActor public var isValid: Swift.Bool { get } public enum DisplayMode { @@ -493,104 +530,106 @@ public protocol SurveyViewModelDelegate : AnyObject { get } } - public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode { + @_Concurrency.MainActor public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode { get } - public var shouldConfirmCancel: Swift.Bool { + @_Concurrency.MainActor public var shouldConfirmCancel: Swift.Bool { get } - public var currentSelectedSegmentIndex: Swift.Int? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var currentSelectedSegmentIndex: Swift.Int? { get } - public func launch() - public func continuePartial() - public func cancel(partial: Swift.Bool) + #endif + @_Concurrency.MainActor public var isIntroPage: Swift.Bool { + get + } + @_Concurrency.MainActor public var isSuccessPage: Swift.Bool { + get + } + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func continuePartial() + @_Concurrency.MainActor public func cancel(partial: Swift.Bool) @objc deinit } extension ApptentiveKit.SurveyViewModel { - @_hasMissingDesignatedInitializers public class Page { - final public let id: Swift.String - final public let description: Swift.String? - final public let disclaimer: Swift.String? - final public let questions: [ApptentiveKit.SurveyViewModel.Question] - final public let advanceButtonLabel: Swift.String - final public let pageIndicatorValue: Swift.Int? + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Page { + @_Concurrency.MainActor final public let id: Swift.String + @_Concurrency.MainActor final public let description: Foundation.AttributedString? + @_Concurrency.MainActor final public let disclaimer: Foundation.AttributedString? + @_Concurrency.MainActor final public let questions: [ApptentiveKit.SurveyViewModel.Question] + @_Concurrency.MainActor final public let advanceButtonLabel: Swift.String + @_Concurrency.MainActor final public let pageIndicatorValue: Swift.Int? @objc deinit } } -public protocol MessageCenterViewModelDelegate : AnyObject { - func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath]) - func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToRemoveAttachmentAt index: Swift.Int, with error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToAddAttachmentWith error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToSendMessageWith error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFinishAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFailAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath, with error: any Swift.Error) - func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, profilePhoto: UIKit.UIImage, didDownloadFor indexPath: Foundation.IndexPath) -} -@_hasMissingDesignatedInitializers public class MessageCenterViewModel { - final public let headingTitle: Swift.String - final public let branding: Swift.String? - final public let composerTitle: Swift.String - final public let composerSendButtonTitle: Swift.String - final public let composerAttachButtonTitle: Swift.String - final public let composerPlaceholderText: Swift.String - final public let composerCloseConfirmBody: Swift.String - final public let composerCloseDiscardButtonTitle: Swift.String - final public let composerCloseCancelButtonTitle: Swift.String - final public let greetingTitle: Swift.String - final public let greetingBody: Swift.String - final public let greetingImageURL: Foundation.URL - final public let statusBody: Swift.String? - public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]] - public var hasLoadedMessages: Swift.Bool - public var thumbnailSize: CoreFoundation.CGSize { +@_Concurrency.MainActor public protocol MessageCenterViewModelDelegate : AnyObject { + @_Concurrency.MainActor func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath]) + @_Concurrency.MainActor func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel) + @_Concurrency.MainActor func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel) +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class MessageCenterViewModel { + @_Concurrency.MainActor final public let headingTitle: Swift.String + @_Concurrency.MainActor final public let branding: Swift.String? + @_Concurrency.MainActor final public let composerTitle: Swift.String + @_Concurrency.MainActor final public let composerSendButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerAttachButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerPlaceholderText: Swift.String + @_Concurrency.MainActor final public let composerCloseConfirmBody: Swift.String + @_Concurrency.MainActor final public let composerCloseDiscardButtonTitle: Swift.String + @_Concurrency.MainActor final public let composerCloseCancelButtonTitle: Swift.String + @_Concurrency.MainActor final public let greetingTitle: Swift.String + @_Concurrency.MainActor final public let greetingBody: Swift.String + @_Concurrency.MainActor final public let greetingImageURL: Foundation.URL + @_Concurrency.MainActor final public let statusBody: Swift.String? + @_Concurrency.MainActor public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]] + @_Concurrency.MainActor public var hasLoadedMessages: Swift.Bool + @_Concurrency.MainActor public var thumbnailSize: CoreFoundation.CGSize { get set } - final public let profileNamePlaceholder: Swift.String - final public let profileEmailPlaceholder: Swift.String - final public let profileCancelButtonText: Swift.String - final public let profileSaveButtonText: Swift.String - final public let profileEmailInvalidError: Swift.String - final public let editProfileViewTitle: Swift.String - final public let editProfileNamePlaceholder: Swift.String - final public let editProfileEmailPlaceholder: Swift.String - final public let editProfileCancelButtonText: Swift.String - final public let editProfileSaveButtonText: Swift.String - final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode - final public let closeButtonAccessibilityLabel: Swift.String - final public let closeButtonAccessibilityHint: Swift.String - final public let profileButtonAccessibilityLabel: Swift.String - final public let profileButtonAccessibilityHint: Swift.String - final public let sendButtonAccessibilityLabel: Swift.String - final public let sendButtonAccessibilityHint: Swift.String - final public let attachButtonAccessibilityLabel: Swift.String - final public let attachButtonAccessibilityHint: Swift.String - final public let attachmentOptionsTitle: Swift.String - final public let attachmentOptionsImagesButton: Swift.String - final public let attachmentOptionsFilesButton: Swift.String - final public let attachmentOptionsCancelButton: Swift.String - final public let showAttachmentButtonAccessibilityHint: Swift.String - final public let downloadAttachmentButtonAccessibilityHint: Swift.String - public var emailAddress: Swift.String? { + @_Concurrency.MainActor final public let profileNamePlaceholder: Swift.String + @_Concurrency.MainActor final public let profileEmailPlaceholder: Swift.String + @_Concurrency.MainActor final public let profileCancelButtonText: Swift.String + @_Concurrency.MainActor final public let profileSaveButtonText: Swift.String + @_Concurrency.MainActor final public let profileEmailInvalidError: Swift.String + @_Concurrency.MainActor final public let editProfileViewTitle: Swift.String + @_Concurrency.MainActor final public let editProfileNamePlaceholder: Swift.String + @_Concurrency.MainActor final public let editProfileEmailPlaceholder: Swift.String + @_Concurrency.MainActor final public let editProfileCancelButtonText: Swift.String + @_Concurrency.MainActor final public let editProfileSaveButtonText: Swift.String + @_Concurrency.MainActor final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode + @_Concurrency.MainActor final public let closeButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let closeButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let profileButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let profileButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let sendButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let sendButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let attachButtonAccessibilityLabel: Swift.String + @_Concurrency.MainActor final public let attachButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsTitle: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsImagesButton: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsFilesButton: Swift.String + @_Concurrency.MainActor final public let attachmentOptionsCancelButton: Swift.String + @_Concurrency.MainActor final public let showAttachmentButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor final public let downloadAttachmentButtonAccessibilityHint: Swift.String + @_Concurrency.MainActor public var emailAddress: Swift.String? { get set } - public var name: Swift.String? { + @_Concurrency.MainActor public var name: Swift.String? { get set } - public var profileIsValid: Swift.Bool - public var shouldRequestProfile: Swift.Bool - public var shouldAllowProfileEdit: Swift.Bool + @_Concurrency.MainActor public var profileIsValid: Swift.Bool + @_Concurrency.MainActor public var shouldRequestProfile: Swift.Bool + @_Concurrency.MainActor public var shouldAllowProfileEdit: Swift.Bool public enum ProfileMode { case optionalEmail case requiredEmail @@ -601,49 +640,61 @@ public protocol MessageCenterViewModelDelegate : AnyObject { get } } - public var oldestUnreadMessageIndexPath: Foundation.IndexPath? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var oldestUnreadMessageIndexPath: Foundation.IndexPath? { get } - public var newestMessageIndexPath: Foundation.IndexPath? { + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var newestMessageIndexPath: Foundation.IndexPath? { get } - public func commitProfileEdits() - public func cancelProfileEdits() - public func launch() - public func cancel() - public var numberOfMessageGroups: Swift.Int { + #endif + @_Concurrency.MainActor public func commitProfileEdits() + @_Concurrency.MainActor public func cancelProfileEdits() + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func cancel() + @_Concurrency.MainActor public var numberOfMessageGroups: Swift.Int { get } - public func markMessageAsRead(at indexPath: Foundation.IndexPath) - public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int - public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String? - public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message - public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) - public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message { + @_Concurrency.MainActor public func markMessageAsRead(at indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String? + #endif + @_Concurrency.MainActor public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message + @_Concurrency.MainActor public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath) async throws + @_Concurrency.MainActor public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message { get } - public var draftMessageBody: Swift.String? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var draftMessageBody: Swift.String? { get set } - public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] { + #endif + @_Concurrency.MainActor public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] { get } - public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?) - public func addFileAttachment(at sourceURL: Foundation.URL) - public func removeAttachment(at index: Swift.Int) - public var remainingAttachmentSlots: Swift.Int { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?) async throws + #endif + @_Concurrency.MainActor public func addFileAttachment(at sourceURL: Foundation.URL) async throws + @_Concurrency.MainActor public func removeAttachment(at index: Swift.Int) async throws + @_Concurrency.MainActor public var remainingAttachmentSlots: Swift.Int { get } - public var canAddAttachment: Swift.Bool { + @_Concurrency.MainActor public var canAddAttachment: Swift.Bool { get } - public var canSendMessage: Swift.Bool { + @_Concurrency.MainActor public var canSendMessage: Swift.Bool { get } - public func sendMessage() - public func getGreetingImage(completion: @escaping (UIKit.UIImage) -> Swift.Void) - public func getProfilePhoto(for indexPath: Foundation.IndexPath) + @_Concurrency.MainActor public func sendMessage() async throws + @_Concurrency.MainActor public func getGreetingImage() async throws -> UIKit.UIImage + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public func getProfilePhoto(for indexPath: Foundation.IndexPath) async throws -> UIKit.UIImage? + #endif @objc deinit } public enum MessageCenterViewModelError : Swift.Error { @@ -656,92 +707,134 @@ public enum MessageCenterViewModelError : Swift.Error { } } extension ApptentiveKit.Apptentive { - public var engagementManifestURL: Foundation.URL? { + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public var engagementManifestURL: Foundation.URL? { get } - public func loadEngagementManifest(at url: Foundation.URL?, completion: @escaping (Swift.Result) -> Swift.Void) - public func getInteractionList(_ completion: @escaping ([ApptentiveKit.Apptentive.InteractionListItem]) -> Swift.Void) - public func presentInteraction(with id: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void) - public func presentInteraction(at url: Foundation.URL, completion: @escaping (Swift.Result) -> Swift.Void) + #endif + public enum ConversationState : Swift.String { + case none + case placeholder + case anonymousPending + case legacyPending + case anonymous + case loggedIn + case loggedOut + #if compiler(>=5.3) && $NonescapableTypes + public init?(rawValue: Swift.String) + #endif + public typealias RawValue = Swift.String + public var rawValue: Swift.String { + get + } + } + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func loadEngagementManifest(at url: Foundation.URL?) async throws + #endif + @_Concurrency.MainActor final public func getInteractionList() async -> [ApptentiveKit.Apptentive.InteractionListItem] + @_Concurrency.MainActor final public func presentInteraction(with id: Swift.String) async throws + @_Concurrency.MainActor final public func presentInteraction(at url: Foundation.URL) async throws public struct InteractionListItem { public let id: Swift.String public let displayName: Swift.String public let typeName: Swift.String } - public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void) - public func getConnectionInfo(_ completion: @escaping (_ state: Swift.String?, _ id: Swift.String?, _ token: Swift.String?, _ subject: Swift.String?, _ buttonLabel: Swift.String?) -> Swift.Void) + @_Concurrency.MainActor final public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor final public func getConnectionInfo() async -> (ApptentiveKit.Apptentive.ConversationState, Swift.String?, Swift.String?) + #endif +} +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @available(iOS 26, *) +@_Concurrency.MainActor @preconcurrency public class GlassDialogButton : UIKit.UIView { + #if compiler(>=5.3) && $IsolatedDeinit + @objc @_Concurrency.MainActor deinit + #else + @objc deinit + #endif } extension ApptentiveKit.SurveyViewModel { - @_hasMissingDesignatedInitializers public class Question { - final public let text: Swift.String - final public let isRequired: Swift.Bool - final public let requiredText: Swift.String? - final public let errorMessage: Swift.String - final public let instructions: Swift.String? - public var isMarkedAsInvalid: Swift.Bool { + @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class Question { + @_Concurrency.MainActor final public let text: Foundation.AttributedString + @_Concurrency.MainActor final public let isRequired: Swift.Bool + @_Concurrency.MainActor final public let requiredText: Swift.String? + @_Concurrency.MainActor final public let errorMessage: Swift.String + @_Concurrency.MainActor final public let instructions: Swift.String? + @_Concurrency.MainActor public var isMarkedAsInvalid: Swift.Bool { get set } - public var accessibilityLabel: Swift.String { + @_Concurrency.MainActor public var accessibilityLabel: Swift.String { get } @objc deinit } } -public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible { +public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible, Swift.CustomStringConvertible, Swift.Sendable { public var customData: ApptentiveKit.CustomData public init(name: Swift.String) public init(stringLiteral value: Swift.String) public var debugDescription: Swift.String { get } + public var description: Swift.String { + get + } public typealias ExtendedGraphemeClusterLiteralType = Swift.String public typealias StringLiteralType = Swift.String public typealias UnicodeScalarLiteralType = Swift.String } -open class InteractionPresenter { - public init() - open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) throws - open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) throws - open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) throws - open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel, completion: @escaping (Swift.Result) -> Swift.Void) - open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController, completion: (() -> Swift.Void)? = {}) throws - public var validatedPresentingViewController: UIKit.UIViewController? { +@_Concurrency.MainActor open class InteractionPresenter { + @_Concurrency.MainActor public init() + @_Concurrency.MainActor open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) async throws + @_Concurrency.MainActor open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) async throws + @_Concurrency.MainActor open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) async throws + @_Concurrency.MainActor open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel) async throws + @_Concurrency.MainActor open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController) async throws + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor public var validatedPresentingViewController: UIKit.UIViewController? { get } - public var messageCenterCurrentlyPresented: Swift.Bool { + #endif + @_Concurrency.MainActor public var messageCenterCurrentlyPresented: Swift.Bool { get } - open func dismissPresentedViewController(animated: Swift.Bool) + @_Concurrency.MainActor open func dismissPresentedViewController(animated: Swift.Bool) @objc deinit } -public enum InteractionPresenterError : Swift.Error { +public enum InteractionPresenterError : Swift.Error, Swift.Equatable { case notImplemented(Swift.String, Swift.String) case decodingFailed(Swift.String, Swift.String) case noPresentingViewController + public static func == (a: ApptentiveKit.InteractionPresenterError, b: ApptentiveKit.InteractionPresenterError) -> Swift.Bool +} +extension ApptentiveKit.Apptentive { + @objc @_Concurrency.MainActor public static var fontName: Swift.String? { + @objc get + @objc set + } } extension Foundation.NSNotification.Name { public static let apptentiveEventEngaged: Foundation.Notification.Name } -public protocol DialogViewModelDelegate : AnyObject { - func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage: ApptentiveKit.DialogViewModel.Image) - func dismiss() -} -@_hasMissingDesignatedInitializers public class DialogViewModel { - final public let title: Swift.String? - final public let message: Swift.String? - final public let dialogType: ApptentiveKit.DialogViewModel.DialogType - final public let actions: [ApptentiveKit.DialogViewModel.Action] - public var dialogContainsImage: Swift.Bool - public var image: ApptentiveKit.DialogViewModel.Image { +@_Concurrency.MainActor public protocol DialogViewModelDelegate : AnyObject { + @_Concurrency.MainActor func dialogViewModel(_: ApptentiveKit.DialogViewModel, didLoadImage: ApptentiveKit.DialogViewModel.Image) + @_Concurrency.MainActor func dismiss() +} +@_hasMissingDesignatedInitializers @_Concurrency.MainActor public class DialogViewModel { + @_Concurrency.MainActor final public let title: Foundation.AttributedString? + @_Concurrency.MainActor final public let message: Foundation.AttributedString? + @_Concurrency.MainActor final public let dialogType: ApptentiveKit.DialogViewModel.DialogType + @_Concurrency.MainActor final public let actions: [ApptentiveKit.DialogViewModel.Action] + @_Concurrency.MainActor public var dialogContainsImage: Swift.Bool + @_Concurrency.MainActor public var image: ApptentiveKit.DialogViewModel.Image { get set } - public var maxHeight: Swift.Int - weak public var delegate: (any ApptentiveKit.DialogViewModelDelegate)? - public func buttonSelected(at position: Swift.Int) - public func launch() - public func cancel() + @_Concurrency.MainActor public var maxHeight: Swift.Int + @_Concurrency.MainActor weak public var delegate: (any ApptentiveKit.DialogViewModelDelegate)? + @_Concurrency.MainActor public func buttonSelected(at position: Swift.Int) + @_Concurrency.MainActor public func launch() + @_Concurrency.MainActor public func cancel() public enum DialogType { case enjoymentDialog case textModal @@ -753,30 +846,30 @@ public protocol DialogViewModelDelegate : AnyObject { } @objc deinit } -@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogView : UIKit.UIView { - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleTextColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var messageTextColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var messageFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var headerImage: UIKit.UIImage? - @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonSpacing: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonInset: UIKit.UIEdgeInsets - @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorsAreHidden: Swift.Bool - @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorColor: UIKit.UIColor - @objc @_Concurrency.MainActor(unsafe) dynamic public var imageInset: UIKit.UIEdgeInsets { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogView : UIKit.UIView { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleTextColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var messageTextColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var messageFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var headerImage: UIKit.UIImage? + @objc @_Concurrency.MainActor @preconcurrency dynamic public var cornerRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var buttonSpacing: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var buttonInset: UIKit.UIEdgeInsets + @objc @_Concurrency.MainActor @preconcurrency dynamic public var separatorsAreHidden: Swift.Bool + @objc @_Concurrency.MainActor @preconcurrency dynamic public var separatorColor: UIKit.UIColor + @objc @_Concurrency.MainActor @preconcurrency dynamic public var imageInset: UIKit.UIEdgeInsets { @objc get @objc set } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func didMoveToWindow() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func layoutSubviews() @objc deinit } extension ApptentiveKit.SurveyViewModel { - @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question { - final public let placeholderText: Swift.String? - final public let allowMultipleLines: Swift.Bool - public var value: Swift.String? { + @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question { + @_Concurrency.MainActor final public let placeholderText: Swift.String? + @_Concurrency.MainActor final public let allowMultipleLines: Swift.Bool + @_Concurrency.MainActor public var value: Swift.String? { get set } @@ -784,155 +877,106 @@ extension ApptentiveKit.SurveyViewModel { } } extension ApptentiveKit.Apptentive { - @available(*, deprecated, message: "Use the 'register(with:completion:)' method on the 'shared' instance instead.") - @objc(registerWithConfiguration:) dynamic public class func register(with configuration: ApptentiveKit.ApptentiveConfiguration) + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the 'register(with:completion:) method that takes an 'AppCredentials' argument.") - @objc(registerWithConfiguration:completion:) dynamic public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "Use the 'shared' static property instead.") - @objc dynamic public class func sharedConnection() -> ApptentiveKit.Apptentive - @available(*, deprecated, message: "This property is ignored. SKStoreReviewController will be used for all ratings.") - @objc dynamic public var appID: Swift.String? { - @objc get - @objc set - } - @available(*, deprecated, message: "This property is ignored. The info button no longer exists.") - @objc dynamic public var showInfoButton: Swift.Bool { - @objc get - @objc set - } - @available(*, deprecated, message: "This feature is not implemented.") - @objc dynamic public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? { - @objc get - @objc set - } - @available(*, deprecated, message: "This property is not available for reading.") - @objc dynamic public var apptentiveKey: Swift.String { - @objc get - } - @available(*, deprecated, message: "This property is not available for reading.") - @objc dynamic public var apptentiveSignature: Swift.String { - @objc get - } - @objc(engage:fromViewController:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?) - @objc(engage:fromViewController:completion:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) + @objc(registerWithConfiguration:completion:) @_Concurrency.MainActor final public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(engage:fromViewController:) @_Concurrency.MainActor final public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(engage:fromViewController:completion:) @_Concurrency.MainActor final public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.") - @objc(engage:withCustomData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?) + @objc(engage:withCustomData:fromViewController:) @_Concurrency.MainActor final public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.") - @objc(engage:withCustomData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.") - @objc(engage:withCustomData:withExtendedData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?) - @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.") - @objc(engage:withCustomData:withExtendedData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:completion:)' method instead.") - @objc dynamic public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void) - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataDate:) dynamic public class func extendedData(date: Foundation.Date) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataLocationForLatitude:longitude:) dynamic public class func extendedData(latitude: Swift.Double, longitude: Swift.Double) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:) dynamic public class func extendedData(transactionID: Swift.String?, affiliation: Swift.String?, revenue: Foundation.NSNumber?, shipping: Foundation.NSNumber?, tax: Foundation.NSNumber?, currency: Swift.String?, commerceItems: [[Swift.AnyHashable : Any]]?) -> [Swift.AnyHashable : Any] - @available(*, deprecated, message: "Extended event data are no longer supported.") - @objc(extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:) dynamic public class func extendedData(itemID: Swift.String?, name: Swift.String?, category: Swift.String?, price: Foundation.NSNumber?, quantity: Foundation.NSNumber?, currency: Swift.String?) -> [Swift.AnyHashable : Any] - @available(swift, deprecated: 1.0, message: "Use the 'canShowMessageCenter(completion:)' method instead.") - @objc dynamic public func queryCanShowMessageCenter(completion: @escaping (Swift.Bool) -> Swift.Void) - @objc(presentMessageCenterFromViewController:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?) - @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc(presentMessageCenterFromViewController:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @objc(presentMessageCenterFromViewController:withCustomData:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?) - @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc(presentMessageCenterFromViewController:withCustomData:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(*, deprecated, message: "This feature is not implemented and this method will always result in false.") - @objc dynamic public func dismissMessageCenter(animated: Swift.Bool, completion: (() -> Swift.Void)? = nil) - @available(*, deprecated, message: "This feature is not implemented and this property will return an empty view.") - @objc dynamic public func unreadMessageCountAccessoryView(apptentiveHeart: Swift.Bool) -> UIKit.UIView - @available(*, deprecated, message: "This method is no longer implemented and will trigger an assertion failure.") - @objc dynamic public func openAppStore() - @available(*, deprecated, message: "Use the 'setRemoteNotificationToken()' method instead.") - @objc dynamic public func setPushProvider(_ pushProvider: ApptentiveKit.ApptentivePushProvider, deviceToken: Foundation.Data) - @available(*, deprecated, message: "This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:).") - @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, from _: UIKit.UIViewController?, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool - @available(*, deprecated, message: "Advertising identifier collection is not implemented.") - @objc dynamic public var advertisingIdentifier: Foundation.UUID? { - @objc get - @objc set - } - @available(*, deprecated, message: "mParticleId has been renamed to mParticleID.") - @objc dynamic public var mParticleId: Swift.String? { - @objc get - @objc set - } + @objc(engage:withCustomData:fromViewController:completion:) @_Concurrency.MainActor final public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:)' method instead.") + @objc @_Concurrency.MainActor final public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping @Sendable (Swift.Bool) -> Swift.Void) + @available(swift, deprecated: 1.0, message: "Use the 'canShowMessageCenter()' method instead.") + @objc @_Concurrency.MainActor final public func queryCanShowMessageCenter(completion: @escaping @Sendable (Swift.Bool) -> Swift.Void) + #if compiler(>=5.3) && $NonescapableTypes + @objc(presentMessageCenterFromViewController:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @available(swift, deprecated: 1.0, message: "Use the async version of this method.") + @objc(presentMessageCenterFromViewController:completion:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @objc(presentMessageCenterFromViewController:withCustomData:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @available(swift, deprecated: 1.0, message: "Use the async version of this method.") + @objc(presentMessageCenterFromViewController:withCustomData:completion:) @_Concurrency.MainActor final public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc dynamic public func removeCustomPersonData(withKey key: Swift.String) + @objc @_Concurrency.MainActor final public func removeCustomPersonData(withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc dynamic public func removeCustomDeviceData(withKey key: Swift.String) + @objc @_Concurrency.MainActor final public func removeCustomDeviceData(withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataString:withKey:) dynamic public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String) + @objc(addCustomDeviceDataString:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataNumber:withKey:) dynamic public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String) + @objc(addCustomDeviceDataNumber:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.") - @objc(addCustomDeviceDataBool:withKey:) dynamic public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String) + @objc(addCustomDeviceDataBool:withKey:) @_Concurrency.MainActor final public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataString:withKey:) dynamic public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String) + @objc(addCustomPersonDataString:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataNumber:withKey:) dynamic public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String) + @objc(addCustomPersonDataNumber:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String) @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.") - @objc(addCustomPersonDataBool:withKey:) dynamic public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String) - @available(*, deprecated, message: "Set style overrides defined in UIKit+Apptentive.swift extensions.") - @objc dynamic public var styleSheet: Any? { - @objc get - @objc set - } - @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.") - @objc dynamic public func checkSDKConfiguration() + @objc(addCustomPersonDataBool:withKey:) @_Concurrency.MainActor final public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String) + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func logIn(withToken token: Swift.String, completion: @escaping (Swift.Bool, (any Swift.Error)?) -> Swift.Void) + @objc @_Concurrency.MainActor final public func logIn(withToken token: Swift.String, completion: @escaping @Sendable (Swift.Bool, (any Swift.Error)?) -> Swift.Void) + #endif @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func logOut() + @objc @_Concurrency.MainActor final public func logOut() + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Assign an object that conforms to the 'ApptentiveDelegate' protocol to the Apptentive instance's 'delegate' property.") - @objc dynamic public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? { - @objc get - @objc set - } - @available(*, deprecated, message: "This feature is no longer supported.") - @objc dynamic public var preInteractionCallback: ApptentiveKit.ApptentiveInteractionCallback? { + @objc @_Concurrency.MainActor final public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? { @objc get @objc set } + #endif + #if compiler(>=5.3) && $NonescapableTypes @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.") - @objc dynamic public func updateToken(_ token: Swift.String, completion: ((Swift.Bool) -> Swift.Void)? = nil) - @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") - @objc dynamic public var logLevel: ApptentiveKit.ApptentiveLogLevel { + @objc @_Concurrency.MainActor final public func updateToken(_ token: Swift.String, completion: (@Sendable (Swift.Bool) -> Swift.Void)? = nil) + #endif + @available(swift, deprecated: 1.0, message: "Log level is no longer supported. Use the filtering in Xcode or Console app.") + @objc @_Concurrency.MainActor final public var logLevel: ApptentiveKit.ApptentiveLogLevel { @objc get @objc set } } extension UIKit.UIButton { @available(swift, deprecated: 1.0, message: "Set the 'apptentiveStyle' property to 'ApptentiveButtonStyle.pill'.") - @objc @_Concurrency.MainActor(unsafe) public static let apptentivePillRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency public static let apptentivePillRadius: CoreFoundation.CGFloat @available(swift, deprecated: 1.0, message: "Use the 'apptentiveStyle' property.") - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveCornerRadius: CoreFoundation.CGFloat { + @objc @_Concurrency.MainActor @preconcurrency public static var apptentiveCornerRadius: CoreFoundation.CGFloat { @objc get @objc set } } extension UIKit.UITableView { @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UITableView.Style'.") - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: Swift.Int { + @objc @_Concurrency.MainActor @preconcurrency public static var apptentiveStyle: Swift.Int { @objc get @objc set } } extension UIKit.UIViewController { @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UIModalPresentationStyle'.") - @objc @_Concurrency.MainActor(unsafe) dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle { @objc get @objc set } } @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") public typealias ApptentiveAuthenticationFailureCallback = (ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String?) -> Swift.Void -@available(*, deprecated, message: "This feature is no longer supported.") -public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") @objc public enum ApptentiveAuthenticationFailureReason : Swift.Int { case unknown = 0 @@ -947,7 +991,10 @@ public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashab case missingAppKey = 9 case missingAppSignature = 10 case invalidKeySignaturePair = 11 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif + @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get @@ -957,39 +1004,23 @@ public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashab public class ApptentiveConfiguration : ObjectiveC.NSObject { @objc final public let apptentiveKey: Swift.String @objc final public let apptentiveSignature: Swift.String - @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of its static log properties.") + @available(*, deprecated, message: "Logging now uses iOS's Unified Logging features so logs are no longer filtered by the SDK.") @objc public var logLevel: ApptentiveKit.ApptentiveLogLevel - @available(swift, deprecated: 1.0, message: "Set the 'shouldHideSensitiveLogs' property on 'ApptentiveLogger' or one of its static log properties.") + @available(*, deprecated, message: "Logging now uses iOS's Unified Logging features so redaction of sensitive information is handled automatically.") @objc public var shouldSanitizeLogMessages: Swift.Bool - @available(*, deprecated, message: "This property is ignored. Use the designated initializer for 'Apptentive' to set this.") - @objc public var baseURL: Foundation.URL? + @objc public var overrideBaseURL: Foundation.URL? + @objc public var region: Swift.String? @available(swift, deprecated: 1.0, message: "Set the 'distributionName' property on 'Apptentive' directly before calling 'register(with:completion)'.") @objc public var distributionName: Swift.String? @available(swift, deprecated: 1.0, message: "Set the 'distributionVersion' property on 'Apptentive' directly before calling 'register(with:completion)'.") @objc public var distributionVersion: Swift.String? - @available(*, deprecated, message: "This property is ignored. An 'SKStoreReviewController' will be used for all ratings.") - @objc public var appID: Swift.String? - @available(*, deprecated, message: "This property is ignored. The info button no longer exists.") - @objc public var showInfoButton: Swift.Bool - @available(*, deprecated, message: "This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard.") - @objc public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? + #if compiler(>=5.3) && $NonescapableTypes @objc(initWithApptentiveKey:apptentiveSignature:) required public init?(apptentiveKey: Swift.String, apptentiveSignature: Swift.String) + #endif @objc public static func configuration(apptentiveKey key: Swift.String, apptentiveSignature signature: Swift.String) -> ApptentiveKit.ApptentiveConfiguration @objc deinit } -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -@objc public enum ApptentivePushProvider : Swift.Int { - case apptentive = 0 - case urbanAirship = 1 - case amazonSNS = 2 - case parse = 3 - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") @objc public enum ApptentiveLogLevel : Swift.UInt { case undefined = 0 case crit = 1 @@ -998,340 +1029,266 @@ public class ApptentiveConfiguration : ObjectiveC.NSObject { case info = 4 case debug = 5 case verbose = 6 + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.UInt) + #endif + @available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") public typealias RawValue = Swift.UInt public var rawValue: Swift.UInt { get } } -@objc @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public class TermsAndConditions : ObjectiveC.NSObject { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public init(bodyText: Swift.String?, linkText: Swift.String?, linkURL: Foundation.URL?) - final public let bodyText: Swift.String? - final public let linkText: Swift.String? - final public let linkURL: Foundation.URL? - @objc deinit -} -@available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public protocol ApptentiveStyle { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor -} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -public enum ApptentiveStyleIdentifier { - case body - case headerTitle - case headerMessage - case messageDate - case messageSender - case messageStatus - case messageCenterStatus - case surveyInstructions - case doneButton - case button - case submitButton - case textInput - case headerBackground - case footerBackground - case failure - case separator - case background - case collectionBackground - case textInputBackground - case textInputPlaceholder - case messageBackground - case replyBackground - case contextBackground - public static func == (a: ApptentiveKit.ApptentiveStyleIdentifier, b: ApptentiveKit.ApptentiveStyleIdentifier) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -@_hasMissingDesignatedInitializers @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") -public class ApptentiveStyleSheet : ApptentiveKit.ApptentiveStyle { - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - convenience public init?(contentsOf stylePropertyListURL: Foundation.URL) - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var fontFamily: Swift.String - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var lightFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var regularFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var mediumFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var boldFaceAttribute: Swift.String? - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var primaryColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var secondaryColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var failureColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var backgroundColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var separatorColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var collectionBackgroundColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var placeholderColor: UIKit.UIColor - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public var sizeAdjustment: CoreFoundation.CGFloat - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func setFontDescriptor(_ fontDescriptor: UIKit.UIFontDescriptor, forStyle style: Swift.String) - @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.") - public func setColor(_ color: UIKit.UIColor, forStyle style: Swift.String) - @objc deinit -} -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogButton : UIKit.UIButton { - @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont - @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var borderWidth: CoreFoundation.CGFloat - @objc @_Concurrency.MainActor(unsafe) dynamic public var borderColor: UIKit.UIColor - @_Concurrency.MainActor(unsafe) @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DialogButton : UIKit.UIButton { + @objc @_Concurrency.MainActor @preconcurrency dynamic public var titleFont: UIKit.UIFont + @objc @_Concurrency.MainActor @preconcurrency dynamic public var cornerRadius: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var borderWidth: CoreFoundation.CGFloat + @objc @_Concurrency.MainActor @preconcurrency dynamic public var borderColor: UIKit.UIColor + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize { @objc get } - @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func layoutSubviews() + @_Concurrency.MainActor @preconcurrency @objc override dynamic public func didMoveToWindow() @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DismissButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class DismissButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class InteractionButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class InteractionButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class YesButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class YesButton : ApptentiveKit.DialogButton { @objc deinit } -@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class NoButton : ApptentiveKit.DialogButton { +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor @preconcurrency public class NoButton : ApptentiveKit.DialogButton { @objc deinit } -public struct Sysctl { - public enum Error : Swift.Error { - case unknown - case malformedUTF8 - case invalidSize - case posixError(Darwin.POSIXErrorCode) - } - public static func data(for keys: [Swift.Int32]) throws -> [Swift.Int8] - public static func keys(for name: Swift.String) throws -> [Swift.Int32] - public static func value(ofType: T.Type, forKeys keys: [Swift.Int32]) throws -> T - public static func value(ofType type: T.Type, forKeys keys: Swift.Int32...) throws -> T - public static func value(ofType type: T.Type, forName name: Swift.String) throws -> T - public static func string(for keys: [Swift.Int32]) throws -> Swift.String - public static func string(for keys: Swift.Int32...) throws -> Swift.String - public static func string(for name: Swift.String) throws -> Swift.String - public static var hostName: Swift.String { - get - } - public static var machine: Swift.String { - get - } - public static var model: Swift.String { - get - } - public static var activeCPUs: Swift.Int32 { - get - } - public static var osRelease: Swift.String { - get - } - public static var osType: Swift.String { - get - } - public static var osVersion: Swift.String { - get - } - public static var version: Swift.String { - get - } -} -@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class ApptentiveNavigationController : UIKit.UINavigationController { - @_Concurrency.MainActor(unsafe) @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle { +@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor @preconcurrency public class ApptentiveNavigationController : UIKit.UINavigationController { + @_Concurrency.MainActor @preconcurrency @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle { @objc get } - @objc @_Concurrency.MainActor(unsafe) public static var prefersLargeHeader: Swift.Bool + @objc @_Concurrency.MainActor @preconcurrency public static var prefersLargeHeader: Swift.Bool + #if compiler(>=5.3) && $NonescapableTypes @available(iOS 5.0, *) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(rootViewController: UIKit.UIViewController) - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) - @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?) + #endif + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(rootViewController: UIKit.UIViewController) + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?) + #endif + #if compiler(>=5.3) && $NonescapableTypes + @_Concurrency.MainActor @preconcurrency @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder) + #endif @objc deinit } -extension UIKit.UITableView { - @_Concurrency.MainActor(unsafe) public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat +@_Concurrency.MainActor extension UIKit.UITableView { + @_Concurrency.MainActor public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat } -extension UIKit.UITableView.Style { - public static var apptentive: UIKit.UITableView.Style +@_Concurrency.MainActor extension UIKit.UITableView.Style { + @_Concurrency.MainActor public static var apptentive: UIKit.UITableView.Style } -extension UIKit.UIModalPresentationStyle { - public static var apptentive: UIKit.UIModalPresentationStyle +@_Concurrency.MainActor extension UIKit.UIModalPresentationStyle { + @_Concurrency.MainActor public static var apptentive: UIKit.UIModalPresentationStyle } -extension UIKit.UIBarButtonItem { - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIBarButtonItem - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveProfileEdit: UIKit.UIBarButtonItem +@_Concurrency.MainActor extension UIKit.UIBarButtonItem { + @objc @_Concurrency.MainActor public static var apptentiveClose: UIKit.UIBarButtonItem + @objc @_Concurrency.MainActor public static var appentiveRefresh: UIKit.UIBarButtonItem + @objc @_Concurrency.MainActor public static var apptentiveProfileEdit: UIKit.UIBarButtonItem } -extension UIKit.UIButton { - @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIButton? - public enum ApptentiveButtonStyle { +@_Concurrency.MainActor extension UIKit.UIButton { + @_Concurrency.MainActor public static var apptentiveClose: UIKit.UIButton? + public enum ApptentiveButtonStyle : Swift.Equatable { case pill case radius(CoreFoundation.CGFloat) - } - @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle -} -extension UIKit.UIImage { - @objc public static var apptentiveMessageAttachmentButton: UIKit.UIImage? - @objc public static var apptentiveMessageSendButton: UIKit.UIImage? - @objc public static var apptentiveSentMessageBubble: UIKit.UIImage? - @objc public static var apptentiveReceivedMessageBubble: UIKit.UIImage? - @objc public static var apptentiveAttachmentPlaceholder: UIKit.UIImage? - @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIImage? - @objc public static var apptentiveHeaderLogo: UIKit.UIImage? - @objc public static var apptentiveRadioButton: UIKit.UIImage? - @objc public static var apptentiveCheckbox: UIKit.UIImage? - @objc public static var apptentiveRadioButtonSelected: UIKit.UIImage? - @objc public static var apptentiveCheckboxSelected: UIKit.UIImage? -} -extension UIKit.UIColor { - @objc public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor - @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor + public static func == (a: UIKit.UIButton.ApptentiveButtonStyle, b: UIKit.UIButton.ApptentiveButtonStyle) -> Swift.Bool + } + @_Concurrency.MainActor public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle +} +@_Concurrency.MainActor extension UIKit.UIImage { + @objc @_Concurrency.MainActor public static var apptentiveMessageAttachmentButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveMessageSendButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveSentMessageBubble: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveReceivedMessageBubble: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveAttachmentPlaceholder: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveAttachmentRemoveButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveHeaderLogo: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveRadioButton: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveCheckbox: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveRadioButtonSelected: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveCheckboxSelected: UIKit.UIImage? + @objc @_Concurrency.MainActor public static var apptentiveDialogHeader: UIKit.UIImage? +} +@_Concurrency.MainActor extension UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageTextInputPlaceholder'.") - @objc public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor { @objc get @objc set } - @objc public static var apptentiveMessageCenterTextInput: UIKit.UIColor - @objc public static var apptentivetextInputTint: UIKit.UIColor - @objc public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInput: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentivetextInputTint: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageCenterTextInputBorder'.") - @objc public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor { @objc get @objc set } - @objc public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor - @objc public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor - @objc public static var apptentiveMessageCenterStatus: UIKit.UIColor - @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor - @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor - @objc public static var apptentiveMessageBubbleInbound: UIKit.UIColor - @objc public static var apptentiveMessageBubbleOutbound: UIKit.UIColor - @objc public static var apptentiveMessageLabelInbound: UIKit.UIColor - @objc public static var apptentiveMessageLabelOutbound: UIKit.UIColor - @objc public static var apptentiveQuestionLabel: UIKit.UIColor - @objc public static var apptentiveInstructionsLabel: UIKit.UIColor - @objc public static var apptentiveChoiceLabel: UIKit.UIColor - @objc public static var apptentiveError: UIKit.UIColor - @objc public static var apptentiveTint: UIKit.UIColor - @objc public static var apptentiveSecondaryLabel: UIKit.UIColor - @objc public static var apptentiveRangeControlBorder: UIKit.UIColor - @objc public static var apptentiveSurveyIntroduction: UIKit.UIColor - @objc public static var apptentiveTextInputBorder: UIKit.UIColor - @objc public static var apptentiveTextInputBackground: UIKit.UIColor - @objc public static var apptentiveTextInput: UIKit.UIColor - @objc public static var apptentiveTextInputPlaceholder: UIKit.UIColor - @objc public static var apptentiveMinMaxLabel: UIKit.UIColor - @objc public static var apptentiveGroupedBackground: UIKit.UIColor - @objc public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor - @objc public static var apptentiveSeparator: UIKit.UIColor - @objc public static var apptentiveImageSelected: UIKit.UIColor - @objc public static var apptentiveImageNotSelected: UIKit.UIColor - @objc public static var apptentiveSubmitButton: UIKit.UIColor - @objc public static var apptentiveBranchedSurveyFooter: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterStatus: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageBubbleInbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageBubbleOutbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageLabelInbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageLabelOutbound: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveQuestionLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveInstructionsLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveChoiceLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveError: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTint: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSecondaryLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveRangeControlBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSurveyIntroduction: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSurveyTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveOtherTextInputBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveOtherTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInput: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputPlaceholder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMinMaxLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveGroupedBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSeparator: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveImageSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveImageNotSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveBranchedSurveyFooter: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.") - public static var apptentiveSubmitLabel: UIKit.UIColor - @objc public static var apptentiveSubmitStatusLabel: UIKit.UIColor - @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIColor - @objc public static var apptentiveSubmitButtonTitle: UIKit.UIColor - @objc public static var apptentiveSubmitButtonBorder: UIKit.UIColor - @objc public static var apptentiveQuestionSeparator: UIKit.UIColor - public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor - public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor - @objc public static var apptentiveMessageCenterBackground: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveSubmitLabel: UIKit.UIColor { + get + set + } + @objc @_Concurrency.MainActor public static var apptentiveSubmitStatusLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTermsOfServiceLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveQuestionSeparator: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor + @_Concurrency.MainActor public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterBackground: UIKit.UIColor @available(*, deprecated, message: "This property has been renamed to 'apptentiveAttachmentRemoveButton'.") - @objc public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor - @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIColor - @objc public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor - @objc public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor - @objc public static var apptentiveTextInputBorderSelected: UIKit.UIColor - @objc public static var apptentiveDisclaimerLabel: UIKit.UIColor -} -extension UIKit.UIFont { - @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont - @objc public static var apptentiveMessageCenterTextInput: UIKit.UIFont - @objc public static var apptentiveTextInputPlaceholder: UIKit.UIFont - @objc public static var apptentiveMessageCenterStatus: UIKit.UIFont - @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont - @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont - @objc public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont - @objc public static var apptentiveQuestionLabel: UIKit.UIFont - @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIFont - @objc public static var apptentiveChoiceLabel: UIKit.UIFont - @objc public static var apptentiveMessageLabel: UIKit.UIFont - @objc public static var apptentiveMinMaxLabel: UIKit.UIFont - @objc public static var apptentiveSenderLabel: UIKit.UIFont - @objc public static var apptentiveMessageDateLabel: UIKit.UIFont - @objc public static var apptentiveInstructionsLabel: UIKit.UIFont - @objc public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor { + @objc get + @objc set + } + @objc @_Concurrency.MainActor public static var apptentiveAttachmentRemoveButton: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveTextInputBorderSelected: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDisclaimerLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogBackground: UIKit.UIColor? + @objc @_Concurrency.MainActor public static var apptentiveDialogTitle: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogMessage: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogButtonBackground: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogButtonLabel: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveButtonBorder: UIKit.UIColor + @objc @_Concurrency.MainActor public static var apptentiveDialogSeparator: UIKit.UIColor +} +@_Concurrency.MainActor extension UIKit.UIFont { + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterTextInput: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTextInputPlaceholder: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterStatus: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveQuestionLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTermsOfServiceLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveChoiceLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMinMaxLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSenderLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveMessageDateLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveInstructionsLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.") - public static var apptentiveSubmitLabel: UIKit.UIFont - @objc public static var apptentiveSubmitStatusLabel: UIKit.UIFont - @objc public static var apptentiveDisclaimerLabel: UIKit.UIFont - @objc public static var apptentiveSubmitButtonTitle: UIKit.UIFont - @objc public static var apptentiveTextInput: UIKit.UIFont + @_Concurrency.MainActor public static var apptentiveSubmitLabel: UIKit.UIFont { + get + set + } + @objc @_Concurrency.MainActor public static var apptentiveSubmitStatusLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDisclaimerLabel: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveSubmitButtonTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveTextInput: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogTitle: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogText: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogMessage: UIKit.UIFont + @objc @_Concurrency.MainActor public static var apptentiveDialogButton: UIKit.UIFont } -extension UIKit.UIToolbar { +@_Concurrency.MainActor extension UIKit.UIToolbar { @objc public enum ToolbarMode : Swift.Int { case alwaysShown case hiddenWhenEmpty + #if compiler(>=5.3) && $NonescapableTypes public init?(rawValue: Swift.Int) + #endif + @available(iOS 2.0, *) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { get } } - @objc @_Concurrency.MainActor(unsafe) public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode + @objc @_Concurrency.MainActor public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode +} +@_Concurrency.MainActor extension CoreFoundation.CGFloat { + @_Concurrency.MainActor public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat + @_Concurrency.MainActor public static var apptentiveDialogCornerRadius: CoreFoundation.CGFloat + @_Concurrency.MainActor public static var apptentiveDialogButtonSpacing: CoreFoundation.CGFloat +} +@_Concurrency.MainActor extension CoreFoundation.CGSize { + @_Concurrency.MainActor public static var apptentiveThumbnail: CoreFoundation.CGSize } -extension CoreFoundation.CGFloat { - public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat +@available(iOS 26.0, *) +@_Concurrency.MainActor extension UIKit.UICornerConfiguration { + @_Concurrency.MainActor public static var apptentiveDialogButton: UIKit.UICornerConfiguration } +extension ApptentiveKit.DialogViewModel : Swift.Sendable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.Hashable {} extension ApptentiveKit.DialogViewModel.Image.Layout : Swift.RawRepresentable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Hashable {} extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.RawRepresentable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.Equatable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.Hashable {} -extension ApptentiveKit.HTMLTextAlignment : Swift.RawRepresentable {} -extension ApptentiveKit.SystemFontNames : Swift.Equatable {} -extension ApptentiveKit.SystemFontNames : Swift.Hashable {} -extension ApptentiveKit.SystemFontNames : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel : Swift.Sendable {} +extension ApptentiveKit.MessageCenterViewModel : Swift.Sendable {} extension ApptentiveKit.MessageCenterViewModel.Message.SentStatus : Swift.Hashable {} +extension ApptentiveKit.Apptentive : Swift.Sendable {} extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Equatable {} extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Hashable {} -extension ApptentiveKit.LogLevel : Swift.Hashable {} -extension ApptentiveKit.LogLevel : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice : Swift.Sendable {} extension ApptentiveKit.Apptentive.UITheme : Swift.Equatable {} extension ApptentiveKit.Apptentive.UITheme : Swift.Hashable {} extension ApptentiveKit.Apptentive.UITheme : Swift.RawRepresentable {} +extension ApptentiveKit.Apptentive.Region : Swift.Equatable {} +extension ApptentiveKit.Apptentive.Region : Swift.Hashable {} +extension ApptentiveKit.Apptentive.Region : Swift.RawRepresentable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.Equatable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.Hashable {} extension ApptentiveKit.AuthenticationFailureReason : Swift.RawRepresentable {} extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Equatable {} extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Hashable {} +extension ApptentiveKit.SurveyViewModel.Page : Swift.Sendable {} extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Equatable {} extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Hashable {} extension ApptentiveKit.MessageCenterViewModelError : Swift.Equatable {} extension ApptentiveKit.MessageCenterViewModelError : Swift.Hashable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.Equatable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.Hashable {} +extension ApptentiveKit.Apptentive.ConversationState : Swift.RawRepresentable {} +extension ApptentiveKit.SurveyViewModel.Question : Swift.Sendable {} +extension ApptentiveKit.InteractionPresenter : Swift.Sendable {} extension ApptentiveKit.DialogViewModel.DialogType : Swift.Equatable {} extension ApptentiveKit.DialogViewModel.DialogType : Swift.Hashable {} @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") @@ -1340,22 +1297,12 @@ extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Equatable extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Hashable {} @available(swift, deprecated: 1.0, message: "Use the 'AuthenticationFailureReason' enumeration.") extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.RawRepresentable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.Equatable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.Hashable {} -@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.") -extension ApptentiveKit.ApptentivePushProvider : Swift.RawRepresentable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.Equatable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.Hashable {} -@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.") +@available(*, deprecated, message: "The SDK now uses Unified Logging, so logs are filtered by the logging system.") extension ApptentiveKit.ApptentiveLogLevel : Swift.RawRepresentable {} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Equatable {} -@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.") -extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Hashable {} extension UIKit.UIToolbar.ToolbarMode : Swift.Equatable {} extension UIKit.UIToolbar.ToolbarMode : Swift.Hashable {} extension UIKit.UIToolbar.ToolbarMode : Swift.RawRepresentable {} diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ar.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ar.lproj/Localizable.strings index 11d637e..01587b1 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ar.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ar.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/da.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/da.lproj/Localizable.strings index 01ee847..f0e7aa8 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/da.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/da.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/de.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/de.lproj/Localizable.strings index e8dedb3..869b57d 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/de.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/de.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/el.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/el.lproj/Localizable.strings index e374fff..c04ad7a 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/el.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/el.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/en.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/en.lproj/Localizable.strings index cc52768..03668c8 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/en.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/en.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/es.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/es.lproj/Localizable.strings index 92bc64b..ceb0424 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/es.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/es.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/fr-CA.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/fr-CA.lproj/Localizable.strings index d5636e5..0f39f61 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/fr-CA.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/fr-CA.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/fr.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/fr.lproj/Localizable.strings index b55be04..6d5757c 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/fr.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/fr.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/id.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/id.lproj/Localizable.strings index 5374766..03a9469 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/id.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/id.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/it.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/it.lproj/Localizable.strings index 36ff091..174bd0a 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/it.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/it.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ja.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ja.lproj/Localizable.strings index 1122040..60ab473 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ja.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ja.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ko.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ko.lproj/Localizable.strings index 7548aab..534e640 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ko.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ko.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ms.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ms.lproj/Localizable.strings index 53f7516..9638fb9 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ms.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ms.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/nl.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/nl.lproj/Localizable.strings index 21019bf..4db9753 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/nl.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/nl.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/pl.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/pl.lproj/Localizable.strings index 5db3e8c..6d297a4 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/pl.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/pl.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/pt-BR.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/pt-BR.lproj/Localizable.strings index f4930b1..022c1be 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/pt-BR.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/pt-BR.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ru.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ru.lproj/Localizable.strings index bf37297..b3d6cbc 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ru.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ru.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/sv.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/sv.lproj/Localizable.strings index eb1c408..111f04a 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/sv.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/sv.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/th.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/th.lproj/Localizable.strings index 0b40371..d92ea04 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/th.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/th.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/tr.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/tr.lproj/Localizable.strings index 139dbb7..2fcb4ff 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/tr.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/tr.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/zh-Hans.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/zh-Hans.lproj/Localizable.strings index d320e70..07c933f 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/zh-Hans.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/zh-Hans.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/zh-Hant.lproj/Localizable.strings b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/zh-Hant.lproj/Localizable.strings index d0d76ba..8505a29 100644 Binary files a/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/zh-Hant.lproj/Localizable.strings and b/ApptentiveKit.iOS/Externals/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/zh-Hant.lproj/Localizable.strings differ diff --git a/ApptentiveKit.iOS/StructsAndEnums.cs b/ApptentiveKit.iOS/StructsAndEnums.cs index 7b30a4c..3de9537 100644 --- a/ApptentiveKit.iOS/StructsAndEnums.cs +++ b/ApptentiveKit.iOS/StructsAndEnums.cs @@ -5,6 +5,8 @@ namespace ApptentiveKit.iOS [Native] public enum UITheme : long { + CustomerBasedOnApptentive = 3, + CustomerOnly = 2, Apptentive = 1, None = 0 } diff --git a/Plugin.Maui.Apptentive.Sample/App.xaml.cs b/Plugin.Maui.Apptentive.Sample/App.xaml.cs index 7f5e185..789cfbd 100644 --- a/Plugin.Maui.Apptentive.Sample/App.xaml.cs +++ b/Plugin.Maui.Apptentive.Sample/App.xaml.cs @@ -5,8 +5,11 @@ public partial class App : Application public App() { InitializeComponent(); + } - MainPage = new AppShell(); + protected override Window CreateWindow(IActivationState? activationState) + { + return new Window(new AppShell()); } } diff --git a/Plugin.Maui.Apptentive.Sample/MauiProgram.cs b/Plugin.Maui.Apptentive.Sample/MauiProgram.cs index a278184..696fb73 100644 --- a/Plugin.Maui.Apptentive.Sample/MauiProgram.cs +++ b/Plugin.Maui.Apptentive.Sample/MauiProgram.cs @@ -1,4 +1,7 @@ -using Microsoft.Extensions.Logging; +using System.ComponentModel; +using Microsoft.Extensions.Logging; +using Plugin.Maui.Apptentive; +using Microsoft.Extensions.Configuration; namespace Plugin.Maui.Apptentive.Sample; @@ -29,12 +32,24 @@ public static MauiApp CreateMauiApp() Console.WriteLine("succeed."); }; + // Get Alchemer credentials from secrets settings file + // (Copy/rename the template file and add your credentials to the copy) + var assembly = typeof(MauiProgram).Assembly; + using var stream = assembly.GetManifestResourceStream("Plugin.Maui.Apptentive.Sample.appsettings.Secret.json"); + var secrets = new ConfigurationBuilder() + .AddJsonStream(stream!) + .Build(); + #if __IOS__ - var configuration = new Configuration("Your Apptentive iOS App Key", "Your Apptentive iOS App Signature"); + var configuration = new Configuration(secrets["Apptentive:iOSKey"]!, secrets["Apptentive:iOSSignature"]!); #elif __ANDROID__ - var configuration = new Configuration("Your Apptentive Android App Key", "Your Apptentive Android App Signature"); + var configuration = new Configuration(secrets["Apptentive:AndroidKey"]!, secrets["Apptentive:AndroidSignature"]!); #endif + // Uncomment to set region and/or testing API base URL for lower environments. + // configuration.Region = "eu"; + // configuration.OverrideBaseUrl = "https://api.apptentive.com/"; + #if DEBUG configuration.LogLevel = ApptentiveLogLevel.Verbose; configuration.ShouldSanitizeLogMessages = false; @@ -42,6 +57,9 @@ public static MauiApp CreateMauiApp() #if __IOS__ Plugin.Maui.Apptentive.Apptentive.Default.Register(configuration, completionHandler); + + // Uncomment to set font name for iOS interactions. + // ApptentiveKit.iOS.Apptentive.FontName = "AmericanTypewriter"; #elif __ANDROID__ Plugin.Maui.Apptentive.Apptentive.Default.Register(configuration, completionHandler, MainApplication.Current); #endif diff --git a/Plugin.Maui.Apptentive.Sample/Plugin.Maui.Apptentive.Sample.csproj b/Plugin.Maui.Apptentive.Sample/Plugin.Maui.Apptentive.Sample.csproj index ccad161..53a2551 100644 --- a/Plugin.Maui.Apptentive.Sample/Plugin.Maui.Apptentive.Sample.csproj +++ b/Plugin.Maui.Apptentive.Sample/Plugin.Maui.Apptentive.Sample.csproj @@ -1,8 +1,9 @@  - net8.0-android;net8.0-ios - $(TargetFrameworks);net7.0-windows10.0.19041.0 + net10.0-android;net10.0-ios + + Exe @@ -10,6 +11,7 @@ true true enable + enable Apptentive Maui Sample @@ -29,11 +31,11 @@ 6.7 - + true true - + True portable True @@ -56,7 +58,7 @@ false - + false @@ -75,28 +77,32 @@ + + - + + + - + - + - - + + - - - - - + + + + + diff --git a/Plugin.Maui.Apptentive.Sample/README.md b/Plugin.Maui.Apptentive.Sample/README.md index 3128a16..f63f483 100644 --- a/Plugin.Maui.Apptentive.Sample/README.md +++ b/Plugin.Maui.Apptentive.Sample/README.md @@ -7,42 +7,49 @@ This app is intended for testing and development of the Plugin.Maui.Apptentive p Because Visual Studio for Mac is being sunsetted (as of early 2024), the environment you use to build and run this app is somewhat in flux. -This app uses the .NET framework version 8.0 (tested with 8.0.101). You can -[download it here](https://dotnet.microsoft.com/en-us/download/dotnet/8.0). +This app uses the .NET framework version 10.0 (tested with 10.0.103). You can +[download it here](https://dotnet.microsoft.com/en-us/download/dotnet/10.0). After installing the .NET framework, You will need to install the following workloads (`dotnet workload install `): -- maui-ios -- maui-android -- maui-mobile -- maui +- `maui-ios` +- `maui-android` +- `maui-mobile` +- `maui` -`sudo dotnet workload install ` if it should be run with the elevated permission +by running: + +`sudo dotnet workload install ` ## Build and Run -To build the app, move to the (inner) Plugin.Maui.Apptentive.Sample -subdirectory (two levels down from the root of the repo) and run the -following: +First, copy the `appsettings-template.Secret.json` file to `appsettings.Secret.json` and +add your iOS and Android credentials from the Alchemer Digital dashboard. + +If re-building after making C# source changes, you may have to clean and build +before running: + +`dotnet clean` +`dotnet run -f:net10.0-ios` and/or `dotnet run -f:net10.0-android` ### ios -`dotnet build -f:net8.0-ios -t:Run` +`dotnet build -f:net10.0-ios -t:run` You can also supply a device UDID (`xcrun simctl list` to show simulators): -`dotnet build -f:net8.0-ios -t:Run /p:_DeviceName=:v2:udid=` +`dotnet build -f:net10.0-ios -t:run /p:_DeviceName=:v2:udid=` ### android debug: -`dotnet build -t:run -f:net8.0-android` +`dotnet build -t:run -f:net10.0-android` with device -`dotnet build -t:run -f:net8.0-android -t:Run /p:_DeviceName=` +`dotnet build -t:run -f:net10.0-android -t:Run /p:_DeviceName=` where the device name would be found by running `adb devices` in the command line and all the active connected devices would be listed release: -`dotnet build -c Release -t:run -f:net8.0-android` +`dotnet build -c Release -t:run -f:net10.0-android` diff --git a/Plugin.Maui.Apptentive.Sample/appsettings-template.Secret.json b/Plugin.Maui.Apptentive.Sample/appsettings-template.Secret.json new file mode 100644 index 0000000..d393148 --- /dev/null +++ b/Plugin.Maui.Apptentive.Sample/appsettings-template.Secret.json @@ -0,0 +1,8 @@ +{ + "Apptentive": { + "iOSKey": "your-ios-key", + "iOSSignature": "your-ios-signature", + "AndroidKey": "your-android-key", + "AndroidSignature": "your-android-signature" + } +} \ No newline at end of file diff --git a/Plugin.Maui.Apptentive/Configuration.cs b/Plugin.Maui.Apptentive/Configuration.cs index 11ba130..70d9000 100644 --- a/Plugin.Maui.Apptentive/Configuration.cs +++ b/Plugin.Maui.Apptentive/Configuration.cs @@ -18,6 +18,8 @@ public class Configuration public bool ShouldInheritAppTheme; public long RatingInteractionThrottleLength; public string? CustomAppStoreURL; + public string? Region; + public string? OverrideBaseUrl; public Configuration(string ApptentiveKey, string ApptentiveSignature) { diff --git a/Plugin.Maui.Apptentive/IApptentive.cs b/Plugin.Maui.Apptentive/IApptentive.cs index 5e3e425..69aaeef 100644 --- a/Plugin.Maui.Apptentive/IApptentive.cs +++ b/Plugin.Maui.Apptentive/IApptentive.cs @@ -3,7 +3,7 @@ namespace Plugin.Maui.Apptentive; public partial interface IApptentive { - void Engage(string Event, Action onCompletion = null); + void Engage(string Event, Action? onCompletion = null); void CanShowInteraction(string Event, Action completion); @@ -43,7 +43,7 @@ public partial interface IApptentive { void sendAttachmentFile(System.IO.Stream file, string MimeType); - void LogIn(string Token, Action Completion); + void LogIn(string Token, Action? Completion); void LogOut(); diff --git a/Plugin.Maui.Apptentive/Platforms/iOS/Apptentive.ios.cs b/Plugin.Maui.Apptentive/Platforms/iOS/Apptentive.ios.cs index a3e45ef..caee8f2 100644 --- a/Plugin.Maui.Apptentive/Platforms/iOS/Apptentive.ios.cs +++ b/Plugin.Maui.Apptentive/Platforms/iOS/Apptentive.ios.cs @@ -14,7 +14,7 @@ partial class ApptentiveImplementation: IApptentive public event AuthenticationFailureHandler? AuthenticationFailed; - public void Register(Configuration Configuration, Action completion) + public void Register(Configuration Configuration, Action? completion) { NSNotificationCenter.DefaultCenter.AddObserver(new NSString("com.apptentive.apptentiveEventEngaged"), HandleEventEngaged, null); ApptentiveKit.iOS.Apptentive.Shared.AuthenticationFailureCallback = HandleAuthenticationFailed; @@ -24,17 +24,19 @@ public void Register(Configuration Configuration, Action completion) iosConfiguration.ShouldSanitizeLogMessages = Configuration.ShouldSanitizeLogMessages; iosConfiguration.DistributionName = Configuration.DistributionName; iosConfiguration.DistributionVersion = Configuration.DistributionVersion; + iosConfiguration.Region = Configuration.Region; + iosConfiguration.OverrideBaseUrl = NSUrl.FromString(Configuration.OverrideBaseUrl); - ApptentiveKit.iOS.Apptentive.Shared.Theme = UITheme.None; + ApptentiveKit.iOS.Apptentive.Shared.Theme = UITheme.CustomerOnly; ApptentiveKit.iOS.Apptentive.Shared.Register(iosConfiguration, completion); } - public void Engage(string Event, Action completion = null) { + public void Engage(string Event, Action? completion = null) { ApptentiveKit.iOS.Apptentive.Shared.Engage(Event, null, completion); } - public void CanShowInteraction(string Event, Action completion = null) { + public void CanShowInteraction(string Event, Action completion) { ApptentiveKit.iOS.Apptentive.Shared.QueryCanShowInteraction(Event, (bool result) => completion(result)); } @@ -117,8 +119,8 @@ public void sendAttachmentFile(System.IO.Stream File, string MimeType) { } } - public void LogIn(string Token, Action Completion) { - ApptentiveKit.iOS.Apptentive.Shared.LogIn(Token, (bool Success, NSError Error) => Completion(Success, Error?.LocalizedDescription) ); + public void LogIn(string Token, Action? Completion) { + ApptentiveKit.iOS.Apptentive.Shared.LogIn(Token, (bool Success, NSError Error) => Completion?.Invoke(Success, Error?.LocalizedDescription) ); } public void LogOut() { @@ -132,10 +134,10 @@ public void UpdateToken(string Token, Action? Completion) { private void HandleEventEngaged(NSNotification notification) { if (EventEngaged != null) { - string? name = notification.UserInfo.ValueForKey(new NSString("eventType"))?.ToString(); - string? type = notification.UserInfo.ValueForKey(new NSString("interactionType"))?.ToString(); - string? id = notification.UserInfo.ValueForKey(new NSString("interactionID"))?.ToString(); - string? source = notification.UserInfo.ValueForKey(new NSString("eventSource"))?.ToString(); + string? name = notification.UserInfo?.ValueForKey(new NSString("eventType"))?.ToString(); + string? type = notification.UserInfo?.ValueForKey(new NSString("interactionType"))?.ToString(); + string? id = notification.UserInfo?.ValueForKey(new NSString("interactionID"))?.ToString(); + string? source = notification.UserInfo?.ValueForKey(new NSString("eventSource"))?.ToString(); EventEngaged?.Invoke(name, type, id, source); } diff --git a/Plugin.Maui.Apptentive/Plugin.Maui.Apptentive.csproj b/Plugin.Maui.Apptentive/Plugin.Maui.Apptentive.csproj index 10f71d2..75a8456 100644 --- a/Plugin.Maui.Apptentive/Plugin.Maui.Apptentive.csproj +++ b/Plugin.Maui.Apptentive/Plugin.Maui.Apptentive.csproj @@ -1,6 +1,6 @@ - net8.0-android;net8.0-ios; + net10.0-android;net10.0-ios; true true enable @@ -8,8 +8,8 @@ Library Alchemer Digital Team - 6.9.0 - Copyright © 2024 Alchemer LLC and contributors + 7.0.0 + Copyright © 2026 Alchemer LLC and contributors True https://github.com/apptentive/apptentive-maui git @@ -25,7 +25,7 @@ 21.0 - + false @@ -44,13 +44,12 @@ - - - + + + - +