diff --git a/Intercom.xcframework/Info.plist b/Intercom.xcframework/Info.plist
deleted file mode 100644
index 3805c9ab..00000000
--- a/Intercom.xcframework/Info.plist
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
- AvailableLibraries
-
-
- LibraryIdentifier
- ios-arm64_armv7
- LibraryPath
- Intercom.framework
- SupportedArchitectures
-
- arm64
- armv7
-
- SupportedPlatform
- ios
-
-
- LibraryIdentifier
- ios-arm64_i386_x86_64-simulator
- LibraryPath
- Intercom.framework
- SupportedArchitectures
-
- arm64
- i386
- x86_64
-
- SupportedPlatform
- ios
- SupportedPlatformVariant
- simulator
-
-
- CFBundlePackageType
- XFWK
- XCFrameworkFormatVersion
- 1.0
-
-
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Assets.car b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Assets.car
deleted file mode 100644
index a9b9a8ea..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Assets.car and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMCompany.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMCompany.h
deleted file mode 100644
index 02bcf0c3..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMCompany.h
+++ /dev/null
@@ -1,87 +0,0 @@
-//
-// ICMCompany.h
-//
-// Created by Intercom on 17/01/2017.
-// Copyright (c) 2017 Intercom. All rights reserved.
-//
-
-#import
-
-/**
- * The ICMCompany object is used for adding companies to users in Intercom.
- * All of the default attributes you can modify are available as properties on ICMCompany.
- * This is an example of how to create an ICMCompany object to update default attributes.
- *
- * ICMCompany *company = [ICMCompany new];
- * company.companyId = @"12345";
- * company.name = @"TestCorp";
- *
- * You can also add custom attributes to your company.
- *
- * ICMCompany *company = [ICMCompany new];
- * company.companyId = @"12345";
- * company.name = @"TestCorp";
- * company.customAttributes = @{@"employee_count" : @200};
- *
- */
-@interface ICMCompany : NSObject
-
-/**
- The ID of the company.
- @note This property is required
- */
-@property (nonatomic, copy, nullable) NSString *companyId;
-
-/**
- The name of the company.
- */
-@property (nonatomic, copy, nullable) NSString *name;
-
-/**
- The created at date for this company.
- */
-@property (nonatomic, strong, nullable) NSDate *createdAt;
-
-/**
- The monthly spend of the company.
- */
-@property (nonatomic, strong, nullable) NSNumber *monthlySpend;
-
-/**
- The plan of the company.
- */
-@property (nonatomic, copy, nullable) NSString *plan;
-
-/**
- Custom attributes for this user.
- @note Each key must be an NSString and each value must be of type NSString, NSNumber or NSNull.
- */
-@property (nonatomic, strong, nullable) NSDictionary *customAttributes;
-
-/**
- Gives you a null value to apply to string attributes.
-
- @return the value to set on string attributes which you wish to be null
- */
-+ (nonnull NSString *)nullStringAttribute;
-
-/**
- Gives you a null value to apply to number attributes.
-
- @return the value to set on number attributes which you wish to be null
- */
-+ (nonnull NSNumber *)nullNumberAttribute;
-
-/**
- Gives you a null value to apply to date attributes.
-
- @return the value to set on date attributes which you wish to be null
- */
-+ (nonnull NSDate *)nullDateAttribute;
-
-/**
- A dictionary representation for the company.
- */
-- (nonnull NSDictionary *)attributes;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterArticle.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterArticle.h
deleted file mode 100644
index 08ec8808..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterArticle.h
+++ /dev/null
@@ -1,34 +0,0 @@
-//
-// ICMHelpCenterArticle.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael McNamara on 03/06/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- ICMHelpCenterArticle represents a Help Center article.
-*/
-NS_SWIFT_NAME(HelpCenterArticle)
-@interface ICMHelpCenterArticle : NSObject
-
-/**
- The id of this article.
- */
-@property (nonatomic, copy) NSString *articleId;
-
-/**
- The title of this article.
- */
-@property (nonatomic, copy) NSString *title;
-
-- (instancetype)initWithArticleId:(NSString *)articleId
- title:(NSString *)title;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterArticleSearchResult.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterArticleSearchResult.h
deleted file mode 100644
index 6b0a0827..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterArticleSearchResult.h
+++ /dev/null
@@ -1,46 +0,0 @@
-//
-// ICMHelpCenterArticleSearchResult.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael McNamara on 04/06/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- ICMHelpCenterArticleSearchResult represents the result of a Help Center search.
-*/
-NS_SWIFT_NAME(HelpCenterArticleSearchResult)
-@interface ICMHelpCenterArticleSearchResult : NSObject
-
-/**
- The id of this article.
- */
-@property (nonatomic, copy) NSString *articleId;
-
-/**
- The title of this article.
- */
-@property (nonatomic, copy) NSString *title;
-
-/**
- The summary of this article.
- */
-@property (nonatomic, copy) NSString *summary;
-
-/**
- A snippet of this article that matches the search term.
- */
-@property (nonatomic, copy) NSString *matchingSnippet;
-
-- (instancetype)initWithArticleId:(NSString *)articleId
- title:(NSString *)title
- summary:(nullable NSString *)summary
- matchingSnippet:(nullable NSString *)matchingSnippet;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterCollection.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterCollection.h
deleted file mode 100644
index ea42d089..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterCollection.h
+++ /dev/null
@@ -1,40 +0,0 @@
-//
-// ICMHelpCenterCollection.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael McNamara on 26/05/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- ICMHelpCenterCollection represents a Help Center collection.
-*/
-NS_SWIFT_NAME(HelpCenterCollection)
-@interface ICMHelpCenterCollection : NSObject
-
-/**
- The id of this collection.
- */
-@property (nonatomic, copy) NSString *collectionId;
-
-/**
- The title of this collection.
- */
-@property (nonatomic, copy) NSString *title;
-
-/**
- A summary of this collection.
- */
-@property (nonatomic, copy, nullable) NSString *summary;
-
-- (instancetype)initWithCollectionId:(NSString *)collectionId
- title:(NSString *)title
- summary:(nullable NSString *)summary;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterCollectionContent.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterCollectionContent.h
deleted file mode 100644
index bcb3e45f..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterCollectionContent.h
+++ /dev/null
@@ -1,55 +0,0 @@
-//
-// ICMHelpCenterCollectionContent.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael McNamara on 03/06/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-@class ICMHelpCenterArticle;
-@class ICMHelpCenterSection;
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- ICMHelpCenterCollection represents a Help Center collection and its contents.
-*/
-NS_SWIFT_NAME(HelpCenterCollectionContent)
-@interface ICMHelpCenterCollectionContent : NSObject
-
-/**
- The id of this collection.
- */
-@property (nonatomic, copy) NSString *collectionId;
-
-/**
- The title of this collection.
- */
-@property (nonatomic, copy) NSString *title;
-
-/**
- A summary of this collection.
- */
-@property (nonatomic, copy, nullable) NSString *summary;
-
-/**
- The articles contained in this collection.
- */
-@property (nonatomic, strong) NSArray *articles;
-
-/**
- The sections contained in this collection.
- */
-@property (nonatomic, strong) NSArray *sections;
-
-- (instancetype)initWithCollectionId:(NSString *)collectionId
- title:(NSString *)title
- summary:(nullable NSString *)summary
- articles:(NSArray *)articles
- sections:(NSArray *)sections;
-
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterDataError.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterDataError.h
deleted file mode 100644
index acb225d8..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterDataError.h
+++ /dev/null
@@ -1,23 +0,0 @@
-//
-// ICMHelpCenterDataError.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael McNamara on 08/06/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-extern NSErrorDomain const ICMHelpCenterDataErrorDomain;
-
-typedef NS_ERROR_ENUM(ICMHelpCenterDataErrorDomain, ICMHelpCenterDataError) {
- contentNotAvailable = 1,
- networkError,
- somethingWentWrong,
- noUserRegistered,
- noAppRegistered
-};
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterSection.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterSection.h
deleted file mode 100644
index df4960f2..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMHelpCenterSection.h
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-// ICMHelpCenterSection.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael McNamara on 03/06/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-@class ICMHelpCenterArticle;
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- ICMHelpCenterSection represents a Help Center section.
-*/
-NS_SWIFT_NAME(HelpCenterSection)
-@interface ICMHelpCenterSection : NSObject
-
-/**
- The title of this section.
- */
-@property (nonatomic, copy) NSString *title;
-
-/**
- The articles contained in this section.
- */
-@property (nonatomic, strong) NSArray *articles;
-
-- (instancetype)initWithTitle:(NSString *)title
- articles:(NSArray *)articles;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMUserAttributes.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMUserAttributes.h
deleted file mode 100644
index 23fed07e..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/ICMUserAttributes.h
+++ /dev/null
@@ -1,104 +0,0 @@
-//
-// ICMUserAttributes.h
-//
-// Created by Intercom on 17/01/2017.
-// Copyright (c) 2017 Intercom. All rights reserved.
-//
-
-#import
-#import
-
-/**
- The ICMUserAttributes object is used for updating a user in Intercom.
- All of the default attributes you can modify are available as properties on ICMUserAttributes.
- This is an example of how to create an ICMUserAttributes object to update default attributes
-
- ICMUserAttributes *userAttributes = [ICMUserAttributes new];
- userAttributes.userId = @"12345";
- userAttributes.email = @"test@email.com";
- userAttributes.name = @"Andy";
-
- You can also add custom attributes to your user:
-
- ICMUserAttributes *userAttributes = [ICMUserAttributes new];
- userAttributes.userId = @"12345";
- userAttributes.email = @"test@email.com";
- userAttributes.customAttributes = @{@"items_in_cart" : @8};
-*/
-@interface ICMUserAttributes : NSObject
-
-/**
- The email for this user.
- */
-@property (nonatomic, copy, nullable) NSString *email;
-
-/**
- The user ID for this user.
- */
-@property (nonatomic, copy, nullable) NSString *userId;
-
-/**
- The name of this user.
- */
-@property (nonatomic, copy, nullable) NSString *name;
-
-/**
- The phone number of this user.
- */
-@property (nonatomic, copy, nullable) NSString *phone;
-
-/**
- The language override code for this user.
-
- @note languageOverride must be a valid language code. For more information see [here](https://docs.intercom.com/configure-intercom-for-your-product-or-site/customize-the-intercom-messenger/localize-intercom-to-work-with-multiple-languages ).
- */
-@property (nonatomic, copy, nullable) NSString *languageOverride;
-
-/**
- The signed up date for this user.
- */
-@property (nonatomic, strong, nullable) NSDate *signedUpAt;
-
-/**
- A boolean indicating if the user has unsubscribed from emails.
- */
-@property (nonatomic, assign) BOOL unsubscribedFromEmails;
-
-/**
- The companies for this user.
- */
-@property (nonatomic, strong, nullable) NSArray *companies;
-
-/**
- Custom attributes for this user.
- @note Each key must be an NSString and each value must be of type NSString, NSNumber or NSNull.
- */
-@property (nonatomic, strong, nullable) NSDictionary *customAttributes;
-
-/**
- Gives you a null value to apply to string attributes.
-
- @return the value to set on string attributes which you wish to be null
- */
-+ (nonnull NSString *)nullStringAttribute;
-
-/**
- Gives you a null value to apply to number attributes.
-
- @return the value to set on number attributes which you wish to be null
- */
-+ (nonnull NSNumber *)nullNumberAttribute;
-
-/**
- Gives you a null value to apply to date attributes.
-
- @return the value to set on date attributes which you wish to be null
- */
-+ (nonnull NSDate *)nullDateAttribute;
-
-/**
- A dictionary representation for the user attributes.
- */
-- (nonnull NSDictionary *)attributes;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/Intercom.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/Intercom.h
deleted file mode 100644
index fba61d94..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Headers/Intercom.h
+++ /dev/null
@@ -1,452 +0,0 @@
-//
-// Intercom.h
-// Intercom for iOS
-//
-// Created by Intercom on 8/01/2015.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- Intercom is your direct line of communication to every user, right inside your app. Intercom’s in-app messages
- are up to 10 times more effective than email too! Send the right messages, to the right users, at exactly the right time.
-
- ## How do I track my users?
-
- In order to see your users in Intercom's user list, you must first register them via your iOS application. If you have a
- place in your application where you become aware of the user's identity such as a log in view controller, call one of the
- following depending on the information you have available for that user:
-
- If you have both a unique user identifier and an email for your users::
-
- [Intercom registerUserWithUserId:@"123456" email:@"joe@example.com"];
-
- If you only have a unique identifier for your users:
-
- [Intercom registerUserWithUserId:@"123456"];
-
- Finally, if you only have an email address for your users:
-
- [Intercom registerUserWithEmail:@"joe@example.com"];
-
- ## Can I track unidentified users?
-
- Yes, absolutely. If you have an application that doesn't require users to log in, you can call:
-
- [Intercom registerUnidentifiedUser];
-
- If the user subsequently logs in or you learn additional information about them (e.g. get an email address),
- calling any of the other user registration methods will update that user's identity in Intercom and contain
- all user data tracked previously.
-
- ## How do push notifications work?
-
- Intercom for iOS enables your users to receive push notifications for new messages. Simply call:
-
- - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
- [Intercom setDeviceToken:deviceToken];
- }
-
- in your `didRegisterForRemoteNotificationsWithDeviceToken:` method once you have registered your app for
- push notifications with the `UIApplicationDelegate`.
-
- When your app receives a push notification Intercom for iOS checks to see if it is an Intercom push notification
- and opens the message. You do not need to implement any additional code in order to launch the message window.
-
- To do this we [safely swizzle](http://blog.newrelic.com/2014/04/16/right-way-to-swizzle/) the public methods
- in `UIApplicationDelegate` that handle receiving push notifications. We do not use any private APIs to do this.
-
- ## More information
-
- Full documentation is available [here](https://developers.intercom.com/docs/ios-installation ) and please contact
- us directly via Intercom for any support or questions you may have.
-
- */
-@interface Intercom : NSObject
-
-#pragma mark - Intercom Initialisation
-
-//=========================================================================================================
-/*! @name Getting set up */
-//=========================================================================================================
-/*!
- Initialize Intercom with your iOS API key and App ID. This will allow your app to connect with Intercom.
- This is best done in the application delegate's didFinishLaunchingWithOptions: method.
-
- @param apiKey The iOS API key found on the API Key settings page.
- @param appId The App ID of your Intercom app.
- */
-+ (void)setApiKey:(NSString *)apiKey forAppId:(NSString *)appId;
-
-//=========================================================================================================
-/*! @name Using Identity Verification */
-//=========================================================================================================
-/*!
- Identity Verification helps to make sure that conversations between you and your users are kept private, and that one
- user can't impersonate another. If Identity Verification is enabled for your app, Intercom for iOS will sign all requests
- going to the Intercom servers with tokens. It requires your mobile application to have its own server which authenticates the app's users,
- and which can store a secret. More information on Identity Verification can be found [here](https://developers.intercom.com/docs/ios-identity-verification)
-
-
- @note This should be called before any user registration takes place.
- @param userHash A HMAC digest of the user ID or email.
- */
-+ (void)setUserHash:(NSString *)userHash;
-
-#pragma mark - User Registration
-
-//=========================================================================================================
-/*! @name Working with anonymous users */
-//=========================================================================================================
-/*!
- If you call registerUnidentifiedUser, all activity will be tracked anonymously. If you choose to subsequently
- identify that user, all that anonymous activity will be merged into the identified user. This means that you
- will no longer see the anonymous user in Intercom, but rather the identified one.
-
- We recommend this is called from within the application delegate's didFinishLaunchingWithOptions: method.
-
- @note You must call one of the user registration methods in order to start communicating with Intercom.
- */
-+ (void)registerUnidentifiedUser;
-
-//=========================================================================================================
-/*! @name Working with identified users */
-//=========================================================================================================
-/*!
- In order to keep track of a specific user, you must identify it with a unique user identifier, an email
- address, or both. By supplying information like this Intercom provides richer user profiles for your users.
- This is a userId, supplied by you (e.g. from an existing web service for your product) to represent your
- user in Intercom, once set it cannot be changed.
-
- If you are putting Intercom for iOS into an app that has persisted an authentication token or equivalent
- so your users don't have to log in repeatedly (like most apps) then we advise putting the user registration
- call in the `didBecomeActive:` method in your application delegate. This won't have any negative impact if
- you also add it to your authentication success method elsewhere in your app.
-
- @param userId A unique identifier for your user.
- @param email Your user's email address.
- @note You must call one of the user registration methods in order to start communicating with Intercom.
- */
-+ (void)registerUserWithUserId:(NSString *)userId email:(NSString *)email;
-
-/*!
- Register a user just with their userId.
-
- @param userId A unique identifier for your user.
- @note You must call one of the user registration methods in order to start communicating with Intercom.
- */
-+ (void)registerUserWithUserId:(NSString *)userId;
-
-/*!
- Register a user with just their email address.
-
- @param email Your user's email address.
- @note You must call one of the user registration methods in order to start communicating with Intercom.
- */
-+ (void)registerUserWithEmail:(NSString *)email;
-
-//=========================================================================================================
-/*! @name Logging the user out */
-//=========================================================================================================
-/*!
- logout is used to clear all local caches and user data Intercom has created. Logout will also close any active
- UI that is on screen. Use this at a time when you wish to log a user out of your app or change a user.
- Once called, Intercom for iOS will no longer communicate with Intercom until a further registration is made.
- */
-+ (void)logout;
-
-/*!
- @deprecated +[Intercom reset] is deprecated. Use +[Intercom logout] instead.
- */
-+ (void)reset __attribute((deprecated("'+[Intercom reset]' is deprecated. 'Use +[Intercom logout]' instead.")));
-
-//=========================================================================================================
-/** @name Updating the user */
-//=========================================================================================================
-/*!
- You can send any data you like to Intercom. Typically our customers see a lot of value in sending data that
- relates to customer development, such as price plan, value of purchases, etc. Once these have been sent to
- Intercom you can then apply filters based on these attributes.
-
- Details on attributes available to update can be found in ICMUserAttributes.
-
- @param userAttributes The attributes to update the user with.
- */
-+ (void)updateUser:(ICMUserAttributes *)userAttributes;
-
-#pragma mark - Log Event
-
-/*!
- Log an event with a given name.
-
- You can log events in Intercom based on user actions in your app. Events are different
- to custom user attributes in that events are information on what Users did and when they
- did it, whereas custom user attributes represent the User's current state as seen in their
- profile. See details about Events [here](https://developers.intercom.com/reference/#events )
-
- @param name The name of the event that it is going to be logged.
- */
-+ (void)logEventWithName:(NSString *)name;
-
-/*!
- Metadata Objects support a few simple types that Intercom can present on your behalf, see the
- [Intercom API docs](https://developers.intercom.com/reference/#event-metadata-types )
-
- [Intercom logEventWithName:@"ordered_item" metaData:@{
- @"order_date": @1392036272,
- @"stripe_invoice": @"inv_3434343434",
- @"order_number": @{
- @"value": @"3434-3434",
- @"url": @"https://example.org/orders/3434-3434"
- }];
-
- @param name The name of the event you wish to track.
- @param metaData contains simple types to present to Intercom
- */
-+ (void)logEventWithName:(NSString *)name metaData:(NSDictionary *)metaData;
-
-//=========================================================================================================
-/*! @name Show Intercom messages and message composers */
-//=========================================================================================================
-
-#pragma mark - Present Messenger
-
-/*!
- Present the Intercom Messenger
-
- Opens the Intercom messenger automatically to the best place for your users.
- */
-+ (void)presentMessenger;
-
-/*!
- Present the message composer.
- @param initialMessage An optional message that is used to pre-populate the composer with some text.
- */
-+ (void)presentMessageComposer:(nullable NSString *)initialMessage;
-
-/*!
- Present the message composer.
- */
-+ (void)presentMessageComposer __attribute((deprecated("'+[Intercom presentMessageComposer]' is deprecated. 'Use +[Intercom presentMessageComposer:initialMessage]' instead.")));
-
-/*!
- Present the message composer with a message to pre-populate the composer.
- */
-+ (void)presentMessageComposerWithInitialMessage:(NSString *)message __attribute((deprecated("'+[Intercom presentMessageComposerWithInitialMessage]' is deprecated. 'Use +[Intercom presentMessageComposer:initialMessage]' instead.")));
-
-/*!
- Present the conversation list.
- */
-+ (void)presentConversationList __attribute((deprecated("'+[Intercom presentConversationList]' is deprecated. 'Use +[Intercom presentMessenger]' instead.")));;
-
-#pragma mark - Help Center UI
-
-/*!
- Present the Help Center.
- */
-+ (void)presentHelpCenter;
-
-/*!
- Present the Help Center with specific collections only.
- - Note: If the requested collections cannot be found, the full Help Center will be shown instead.
- @param collectionIds The ID of the collections to be presented.
- */
-+ (void)presentHelpCenterCollections:(nonnull NSArray *)collectionIds;
-
-/*!
- Present an article.
- @param articleId The ID of the article to be presented.
- */
-+ (void)presentArticle:(nonnull NSString *)articleId;
-
-#pragma mark - Help Center Data API
-
-/*!
- Fetch all Help Center collections.
- @param completion A completion callback with two parameters: an array of collections or an error.
- */
-+ (void)fetchHelpCenterCollectionsWithCompletion:(void (^)(NSArray *_Nullable collections, NSError *_Nullable error))completion NS_REFINED_FOR_SWIFT;
-
-/*!
- Fetch the contents of a Help Center collection.
- @param collectionId The ID of the Help Center collection.
- @param completion A completion callback with two parameters: a collection content object or an error.
- */
-+ (void)fetchHelpCenterCollection:(nonnull NSString *)collectionId
- withCompletion:(void (^)(ICMHelpCenterCollectionContent *_Nullable collectionContent, NSError *_Nullable error))completion NS_REFINED_FOR_SWIFT;
-
-/*!
- Search the Help Center.
- @param searchTerm The search string.
- @param completion A completion callback with two parameters: an array of search results or an error.
- */
-+ (void)searchHelpCenter:(nonnull NSString *)searchTerm
- withCompletion:(void (^)(NSArray *_Nullable articleSearchResults, NSError *_Nullable error))completion NS_REFINED_FOR_SWIFT;
-
-#pragma mark - Mobile Carousels
-
-/*!
- Present a Mobile Carousel.
- @param carouselId The ID of the Mobile Carousel to be presented.
- */
-+ (void)presentCarousel:(nonnull NSString *)carouselId;
-
-#pragma mark - Push Notifications
-
-//=========================================================================================================
-/*! @name Working with push notifications */
-//=========================================================================================================
-/*!
- Set the device token for push notifications. Once the device token is set, the methods for receiving push
- notifications are safely swizzled so ones sent from Intercom can be intercepted. When a push notification from
- Intercom is received, Intercom for iOS will automatically launch the message from the notification.
-
- @param deviceToken The device token provided in the `didRegisterForRemoteNotificationsWithDeviceToken` method.
- */
-+ (void)setDeviceToken:(NSData *)deviceToken;
-
-/*!
- Use this method to check if a push notification payload was sent by Intercom. Typically you should call
- +[Intercom handleIntercomPushNotification:] after checking this.
-
- @note This is only needed if you have set `IntercomAutoIntegratePushNotifications` to NO in your Info.plist
- @return YES if the payload is an Intercom push notification, NO otherwise.
- */
-+ (BOOL)isIntercomPushNotification:(NSDictionary *)userInfo;
-
-/*!
- Use this method to handle a push notification payload received by Intercom. You should first check if this
- notification was send by Intercom with `+[Intercom isIntercomPushNotification:]`.
-
- @note This is only needed if you have set `IntercomAutoIntegratePushNotifications` to NO in your Info.plist
- */
-+ (void)handleIntercomPushNotification:(NSDictionary *)userInfo;
-
-#pragma mark - Intercom UI Visibility
-
-//=========================================================================================================
-/*! @name Incoming message presentation options */
-//=========================================================================================================
-
-/*!
- This method allows you to set a fixed bottom padding for in app messages and the launcher.
- It is useful if your app has a tab bar or similar UI at the bottom of your window.
-
- @param bottomPadding The size of the bottom padding in points.
- */
-+ (void)setBottomPadding:(CGFloat)bottomPadding;
-
-//=========================================================================================================
-/*! @name Intercom UI Visibility */
-//=========================================================================================================
-
-/*!
- Use this to hide all incoming Intercom messages and message previews in the parts of your app where you do
- not wish to interrupt users, for example Camera views, parts of a game or other scenarios.
-
- By default, all in app messages will be visible.
-
- @param visible A boolean indicating if in app messages should be visible.
- */
-+ (void)setInAppMessagesVisible:(BOOL)visible;
-
-/*!
- Use this to show the Intercom launcher selectively within your app. If you choose to display the launcher,
- you may want to hide it on some screens where screen space is critical (e.g. parts of a game).
-
- By default, the launcher is hidden.
-
- @param visible A boolean indicating if the launcher should be visible.
- */
-+ (void)setLauncherVisible:(BOOL)visible;
-
-/*!
- Hide all Intercom windows that are currently displayed.
- This will hide the Messenger, Help Center, Articles, and in-product messages (eg. Mobile Carousels, chats, and posts).
- */
-+ (void)hideIntercom;
-
-#pragma mark - Unread Conversation Count
-
-//=========================================================================================================
-/*! @name Unread conversations */
-//=========================================================================================================
-
-/*!
- This method provides the current number of unread conversations.
- This is useful if you want to display a badge counter on the button where you launch Intercom.
-
- @return The number of unread conversations.
- */
-+ (NSUInteger)unreadConversationCount;
-
-/*!
- This notification is fired when the number of unread conversations changes.
- */
-UIKIT_EXTERN NSString *const IntercomUnreadConversationCountDidChangeNotification;
-
-#pragma mark - Logging
-
-//=========================================================================================================
-/*! @name Enable logging */
-//=========================================================================================================
-
-/*!
- Enable logging for Intercom for iOS. By calling this method, Intercom will display debug information.
- @note it is recommended to use it only while debugging)
- */
-+ (void)enableLogging;
-
-//=========================================================================================================
-/*! @name Status bar handling */
-//=========================================================================================================
-
-/*!
- If you wish to change your status bar's style or visibility while an Intercom notification may be on
- screen, call this method so that Intercom's window can reflect these changes accordingly.
- */
-+ (void)setNeedsStatusBarAppearanceUpdate;
-
-//=========================================================================================================
-/*! @name Intercom Notifications */
-//=========================================================================================================
-/*!
- These are notifications thrown by Intercom for iOS when the Intercom window is displayed and hidden.
- These notifications are fired only when there is a change in the state
- of Intercom's UI: when a user receives a message for instance, willShow and didShow notifications will be
- fired accordingly when the Intercom Notification (chat head) is presented.
-
- Once the user taps on the chat head, the message is presented in your app. It will be presented covering
- the entire screen, but no notifications will be thrown here as Intercom has already been visible.
-
- In the case of a new conversation the notification `IntercomDidStartNewConversationNotification`, this
- notification is fired when a new conversation is started. This may be used to prompt users to enable push notifications.
-
- The Intercom Help Center notifications are fired when the Help Center is being displayed or hidden.
- These notifications can be used to take certain actions in your app before and after the Help Center is displayed to the user.
- */
-
-UIKIT_EXTERN NSString *const IntercomWindowWillShowNotification;
-UIKIT_EXTERN NSString *const IntercomWindowDidShowNotification;
-UIKIT_EXTERN NSString *const IntercomWindowWillHideNotification;
-UIKIT_EXTERN NSString *const IntercomWindowDidHideNotification;
-UIKIT_EXTERN NSString *const IntercomDidStartNewConversationNotification;
-UIKIT_EXTERN NSString *const IntercomHelpCenterWillShowNotification;
-UIKIT_EXTERN NSString *const IntercomHelpCenterDidShowNotification;
-UIKIT_EXTERN NSString *const IntercomHelpCenterWillHideNotification;
-UIKIT_EXTERN NSString *const IntercomHelpCenterDidHideNotification;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Info.plist b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Info.plist
deleted file mode 100644
index 19b6436d..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Info.plist and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/InterBlocksAssets.bundle/Assets.car b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/InterBlocksAssets.bundle/Assets.car
deleted file mode 100644
index 1d754380..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/InterBlocksAssets.bundle/Assets.car and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/InterBlocksAssets.bundle/Info.plist b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/InterBlocksAssets.bundle/Info.plist
deleted file mode 100644
index 153b7d3a..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/InterBlocksAssets.bundle/Info.plist and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom
deleted file mode 100755
index 85717f66..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/data/intercom_area_codes.json b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/data/intercom_area_codes.json
deleted file mode 100644
index 7604ab2d..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/data/intercom_area_codes.json
+++ /dev/null
@@ -1 +0,0 @@
-[{"code":"AD","emoji":"🇦🇩","dialCode":"376","priority":"0"},{"code":"AE","emoji":"🇦🇪","dialCode":"971","priority":"0"},{"code":"AF","emoji":"🇦🇫","dialCode":"93","priority":"0"},{"code":"AG","emoji":"🇦🇬","dialCode":"1268","priority":"0"},{"code":"AI","emoji":"🇦🇮","dialCode":"1264","priority":"0"},{"code":"AL","emoji":"🇦🇱","dialCode":"355","priority":"0"},{"code":"AM","emoji":"🇦🇲","dialCode":"374","priority":"0"},{"code":"AO","emoji":"🇦🇴","dialCode":"244","priority":"0"},{"code":"AQ","emoji":"🇦🇶","dialCode":"672","priority":"0"},{"code":"AR","emoji":"🇦🇷","dialCode":"54","priority":"0"},{"code":"AS","emoji":"🇦🇸","dialCode":"1684","priority":"0"},{"code":"AT","emoji":"🇦🇹","dialCode":"43","priority":"0"},{"code":"AU","emoji":"🇦🇺","dialCode":"61","priority":"0"},{"code":"AW","emoji":"🇦🇼","dialCode":"297","priority":"0"},{"code":"AX","emoji":"🇦🇽","dialCode":"358","priority":"0"},{"code":"AZ","emoji":"🇦🇿","dialCode":"994","priority":"0"},{"code":"BA","emoji":"🇧🇦","dialCode":"387","priority":"0"},{"code":"BB","emoji":"🇧🇧","dialCode":"1246","priority":"0"},{"code":"BD","emoji":"🇧🇩","dialCode":"880","priority":"0"},{"code":"BE","emoji":"🇧🇪","dialCode":"32","priority":"0"},{"code":"BF","emoji":"🇧🇫","dialCode":"226","priority":"0"},{"code":"BG","emoji":"🇧🇬","dialCode":"359","priority":"0"},{"code":"BH","emoji":"🇧🇭","dialCode":"973","priority":"0"},{"code":"BI","emoji":"🇧🇮","dialCode":"257","priority":"0"},{"code":"BJ","emoji":"🇧🇯","dialCode":"229","priority":"0"},{"code":"BL","emoji":"🇧🇱","dialCode":"590","priority":"0"},{"code":"BM","emoji":"🇧🇲","dialCode":"1441","priority":"0"},{"code":"BN","emoji":"🇧🇳","dialCode":"673","priority":"0"},{"code":"BO","emoji":"🇧🇴","dialCode":"591","priority":"0"},{"code":"BQ","emoji":"🇧🇶","dialCode":"599","priority":"0"},{"code":"BR","emoji":"🇧🇷","dialCode":"55","priority":"0"},{"code":"BS","emoji":"🇧🇸","dialCode":"1242","priority":"0"},{"code":"BT","emoji":"🇧🇹","dialCode":"975","priority":"0"},{"code":"BW","emoji":"🇧🇼","dialCode":"267","priority":"0"},{"code":"BY","emoji":"🇧🇾","dialCode":"375","priority":"0"},{"code":"BZ","emoji":"🇧🇿","dialCode":"501","priority":"0"},{"code":"CA","emoji":"🇨🇦","dialCode":"1","areaCodes":["204","226","236","249","250","289","306","343","365","387","403","416","418","431","437","438","450","506","514","519","548","579","581","587","604","613","639","647","672","705","709","742","778","780","782","807","819","825","867","873","902","905"],"priority":"2"},{"code":"CC","emoji":"🇨🇨","dialCode":"61","priority":"0"},{"code":"CD","emoji":"🇨🇩","dialCode":"243","priority":"0"},{"code":"CF","emoji":"🇨🇫","dialCode":"236","priority":"0"},{"code":"CG","emoji":"🇨🇬","dialCode":"242","priority":"0"},{"code":"CH","emoji":"🇨🇭","dialCode":"41","priority":"0"},{"code":"CI","emoji":"🇨🇮","dialCode":"225","priority":"0"},{"code":"CK","emoji":"🇨🇰","dialCode":"682","priority":"0"},{"code":"CL","emoji":"🇨🇱","dialCode":"56","priority":"0"},{"code":"CM","emoji":"🇨🇲","dialCode":"237","priority":"0"},{"code":"CN","emoji":"🇨🇳","dialCode":"86","priority":"0"},{"code":"CO","emoji":"🇨🇴","dialCode":"57","priority":"0"},{"code":"CR","emoji":"🇨🇷","dialCode":"506","priority":"0"},{"code":"CU","emoji":"🇨🇺","dialCode":"53","priority":"0"},{"code":"CV","emoji":"🇨🇻","dialCode":"238","priority":"0"},{"code":"CW","emoji":"🇨🇼","dialCode":"599","priority":"0"},{"code":"CX","emoji":"🇨🇽","dialCode":"61","priority":"0"},{"code":"CY","emoji":"🇨🇾","dialCode":"357","priority":"0"},{"code":"CZ","emoji":"🇨🇿","dialCode":"420","priority":"0"},{"code":"DE","emoji":"🇩🇪","dialCode":"49","priority":"0"},{"code":"DJ","emoji":"🇩🇯","dialCode":"253","priority":"0"},{"code":"DK","emoji":"🇩🇰","dialCode":"45","priority":"0"},{"code":"DM","emoji":"🇩🇲","dialCode":"1767","priority":"0"},{"code":"DO","emoji":"🇩🇴","dialCode":"1","areaCodes":["809","829","849"],"priority":"2"},{"code":"DZ","emoji":"🇩🇿","dialCode":"213","priority":"0"},{"code":"EC","emoji":"🇪🇨","dialCode":"593","priority":"0"},{"code":"EE","emoji":"🇪🇪","dialCode":"372","priority":"0"},{"code":"EG","emoji":"🇪🇬","dialCode":"20","priority":"0"},{"code":"EH","emoji":"🇪🇭","dialCode":"212","priority":"0"},{"code":"ER","emoji":"🇪🇷","dialCode":"291","priority":"0"},{"code":"ES","emoji":"🇪🇸","dialCode":"34","priority":"0"},{"code":"ET","emoji":"🇪🇹","dialCode":"251","priority":"0"},{"code":"FI","emoji":"🇫🇮","dialCode":"358","priority":"0"},{"code":"FJ","emoji":"🇫🇯","dialCode":"679","priority":"0"},{"code":"FK","emoji":"🇫🇰","dialCode":"500","priority":"0"},{"code":"FM","emoji":"🇫🇲","dialCode":"691","priority":"0"},{"code":"FO","emoji":"🇫🇴","dialCode":"298","priority":"0"},{"code":"FR","emoji":"🇫🇷","dialCode":"33","priority":"0"},{"code":"GA","emoji":"🇬🇦","dialCode":"241","priority":"0"},{"code":"GB","emoji":"🇬🇧","dialCode":"44","priority":"1"},{"code":"GD","emoji":"🇬🇩","dialCode":"1473","priority":"0"},{"code":"GE","emoji":"🇬🇪","dialCode":"995","priority":"0"},{"code":"GF","emoji":"🇬🇫","dialCode":"594","priority":"0"},{"code":"GG","emoji":"🇬🇬","dialCode":"44","areaCodes":["1481"],"priority":"2"},{"code":"GH","emoji":"🇬🇭","dialCode":"233","priority":"0"},{"code":"GI","emoji":"🇬🇮","dialCode":"350","priority":"0"},{"code":"GL","emoji":"🇬🇱","dialCode":"299","priority":"0"},{"code":"GM","emoji":"🇬🇲","dialCode":"220","priority":"0"},{"code":"GN","emoji":"🇬🇳","dialCode":"224","priority":"0"},{"code":"GP","emoji":"🇬🇵","dialCode":"590","priority":"0"},{"code":"GQ","emoji":"🇬🇶","dialCode":"240","priority":"0"},{"code":"GR","emoji":"🇬🇷","dialCode":"30","priority":"0"},{"code":"GT","emoji":"🇬🇹","dialCode":"502","priority":"0"},{"code":"GU","emoji":"🇬🇺","dialCode":"1671","priority":"0"},{"code":"GW","emoji":"🇬🇼","dialCode":"245","priority":"0"},{"code":"GY","emoji":"🇬🇾","dialCode":"592","priority":"0"},{"code":"HK","emoji":"🇭🇰","dialCode":"852","priority":"0"},{"code":"HN","emoji":"🇭🇳","dialCode":"504","priority":"0"},{"code":"HR","emoji":"🇭🇷","dialCode":"385","priority":"0"},{"code":"HT","emoji":"🇭🇹","dialCode":"509","priority":"0"},{"code":"HU","emoji":"🇭🇺","dialCode":"36","priority":"0"},{"code":"ID","emoji":"🇮🇩","dialCode":"62","priority":"0"},{"code":"IE","emoji":"🇮🇪","dialCode":"353","priority":"0"},{"code":"IL","emoji":"🇮🇱","dialCode":"972","priority":"0"},{"code":"IM","emoji":"🇮🇲","dialCode":"44","areaCodes":["1624"],"priority":"2"},{"code":"IN","emoji":"🇮🇳","dialCode":"91","priority":"0"},{"code":"IO","emoji":"🇮🇴","dialCode":"246","priority":"0"},{"code":"IQ","emoji":"🇮🇶","dialCode":"964","priority":"0"},{"code":"IR","emoji":"🇮🇷","dialCode":"98","priority":"0"},{"code":"IS","emoji":"🇮🇸","dialCode":"354","priority":"0"},{"code":"IT","emoji":"🇮🇹","dialCode":"39","priority":"0"},{"code":"JE","emoji":"🇯🇪","dialCode":"44","areaCodes":["1534"],"priority":"2"},{"code":"JM","emoji":"🇯🇲","dialCode":"1876","priority":"0"},{"code":"JO","emoji":"🇯🇴","dialCode":"962","priority":"0"},{"code":"JP","emoji":"🇯🇵","dialCode":"81","priority":"0"},{"code":"KE","emoji":"🇰🇪","dialCode":"254","priority":"0"},{"code":"KG","emoji":"🇰🇬","dialCode":"996","priority":"0"},{"code":"KH","emoji":"🇰🇭","dialCode":"855","priority":"0"},{"code":"KI","emoji":"🇰🇮","dialCode":"686","priority":"0"},{"code":"KM","emoji":"🇰🇲","dialCode":"269","priority":"0"},{"code":"KN","emoji":"🇰🇳","dialCode":"1869","priority":"0"},{"code":"KP","emoji":"🇰🇵","dialCode":"850","priority":"0"},{"code":"KR","emoji":"🇰🇷","dialCode":"82","priority":"0"},{"code":"KW","emoji":"🇰🇼","dialCode":"965","priority":"0"},{"code":"KY","emoji":"🇰🇾","dialCode":"1345","priority":"0"},{"code":"KZ","emoji":"🇰🇿","dialCode":"7","priority":"0"},{"code":"LA","emoji":"🇱🇦","dialCode":"856","priority":"0"},{"code":"LB","emoji":"🇱🇧","dialCode":"961","priority":"0"},{"code":"LC","emoji":"🇱🇨","dialCode":"1758","priority":"0"},{"code":"LI","emoji":"🇱🇮","dialCode":"423","priority":"0"},{"code":"LK","emoji":"🇱🇰","dialCode":"94","priority":"0"},{"code":"LR","emoji":"🇱🇷","dialCode":"231","priority":"0"},{"code":"LS","emoji":"🇱🇸","dialCode":"266","priority":"0"},{"code":"LT","emoji":"🇱🇹","dialCode":"370","priority":"0"},{"code":"LU","emoji":"🇱🇺","dialCode":"352","priority":"0"},{"code":"LV","emoji":"🇱🇻","dialCode":"371","priority":"0"},{"code":"LY","emoji":"🇱🇾","dialCode":"218","priority":"0"},{"code":"MA","emoji":"🇲🇦","dialCode":"212","priority":"0"},{"code":"MC","emoji":"🇲🇨","dialCode":"377","priority":"0"},{"code":"MD","emoji":"🇲🇩","dialCode":"373","priority":"0"},{"code":"ME","emoji":"🇲🇪","dialCode":"382","priority":"0"},{"code":"MF","emoji":"🇲🇫","dialCode":"590","priority":"0"},{"code":"MG","emoji":"🇲🇬","dialCode":"261","priority":"0"},{"code":"MH","emoji":"🇲🇭","dialCode":"692","priority":"0"},{"code":"MK","emoji":"🇲🇰","dialCode":"389","priority":"0"},{"code":"ML","emoji":"🇲🇱","dialCode":"223","priority":"0"},{"code":"MM","emoji":"🇲🇲","dialCode":"95","priority":"0"},{"code":"MN","emoji":"🇲🇳","dialCode":"976","priority":"0"},{"code":"MO","emoji":"🇲🇴","dialCode":"853","priority":"0"},{"code":"MP","emoji":"🇲🇵","dialCode":"1670","priority":"0"},{"code":"MQ","emoji":"🇲🇶","dialCode":"596","priority":"0"},{"code":"MR","emoji":"🇲🇷","dialCode":"222","priority":"0"},{"code":"MS","emoji":"🇲🇸","dialCode":"1664","priority":"0"},{"code":"MT","emoji":"🇲🇹","dialCode":"356","priority":"0"},{"code":"MU","emoji":"🇲🇺","dialCode":"230","priority":"0"},{"code":"MV","emoji":"🇲🇻","dialCode":"960","priority":"0"},{"code":"MW","emoji":"🇲🇼","dialCode":"265","priority":"0"},{"code":"MX","emoji":"🇲🇽","dialCode":"52","priority":"0"},{"code":"MY","emoji":"🇲🇾","dialCode":"60","priority":"0"},{"code":"MZ","emoji":"🇲🇿","dialCode":"258","priority":"0"},{"code":"NA","emoji":"🇳🇦","dialCode":"264","priority":"0"},{"code":"NC","emoji":"🇳🇨","dialCode":"687","priority":"0"},{"code":"NE","emoji":"🇳🇪","dialCode":"227","priority":"0"},{"code":"NF","emoji":"🇳🇫","dialCode":"672","priority":"0"},{"code":"NG","emoji":"🇳🇬","dialCode":"234","priority":"0"},{"code":"NI","emoji":"🇳🇮","dialCode":"505","priority":"0"},{"code":"NL","emoji":"🇳🇱","dialCode":"31","priority":"0"},{"code":"NO","emoji":"🇳🇴","dialCode":"47","priority":"0"},{"code":"NP","emoji":"🇳🇵","dialCode":"977","priority":"0"},{"code":"NR","emoji":"🇳🇷","dialCode":"674","priority":"0"},{"code":"NU","emoji":"🇳🇺","dialCode":"683","priority":"0"},{"code":"NZ","emoji":"🇳🇿","dialCode":"64","priority":"0"},{"code":"OM","emoji":"🇴🇲","dialCode":"968","priority":"0"},{"code":"PA","emoji":"🇵🇦","dialCode":"507","priority":"0"},{"code":"PE","emoji":"🇵🇪","dialCode":"51","priority":"0"},{"code":"PF","emoji":"🇵🇫","dialCode":"689","priority":"0"},{"code":"PG","emoji":"🇵🇬","dialCode":"675","priority":"0"},{"code":"PH","emoji":"🇵🇭","dialCode":"63","priority":"0"},{"code":"PK","emoji":"🇵🇰","dialCode":"92","priority":"0"},{"code":"PL","emoji":"🇵🇱","dialCode":"48","priority":"0"},{"code":"PM","emoji":"🇵🇲","dialCode":"508","priority":"0"},{"code":"PR","emoji":"🇵🇷","dialCode":"1","areaCodes":["787","939"],"priority":"2"},{"code":"PS","emoji":"🇵🇸","dialCode":"970","priority":"0"},{"code":"PT","emoji":"🇵🇹","dialCode":"351","priority":"0"},{"code":"PW","emoji":"🇵🇼","dialCode":"680","priority":"0"},{"code":"PY","emoji":"🇵🇾","dialCode":"595","priority":"0"},{"code":"QA","emoji":"🇶🇦","dialCode":"974","priority":"0"},{"code":"RE","emoji":"🇷🇪","dialCode":"262","priority":"0"},{"code":"RO","emoji":"🇷🇴","dialCode":"40","priority":"0"},{"code":"RS","emoji":"🇷🇸","dialCode":"381","priority":"0"},{"code":"RU","emoji":"🇷🇺","dialCode":"7","priority":"0"},{"code":"RW","emoji":"🇷🇼","dialCode":"250","priority":"0"},{"code":"SA","emoji":"🇸🇦","dialCode":"966","priority":"0"},{"code":"SB","emoji":"🇸🇧","dialCode":"677","priority":"0"},{"code":"SC","emoji":"🇸🇨","dialCode":"248","priority":"0"},{"code":"SD","emoji":"🇸🇩","dialCode":"249","priority":"0"},{"code":"SE","emoji":"🇸🇪","dialCode":"46","priority":"0"},{"code":"SG","emoji":"🇸🇬","dialCode":"65","priority":"0"},{"code":"SH","emoji":"🇸🇭","dialCode":"290","priority":"0"},{"code":"SI","emoji":"🇸🇮","dialCode":"386","priority":"0"},{"code":"SJ","emoji":"🇸🇯","dialCode":"47","priority":"0"},{"code":"SK","emoji":"🇸🇰","dialCode":"421","priority":"0"},{"code":"SL","emoji":"🇸🇱","dialCode":"232","priority":"0"},{"code":"SM","emoji":"🇸🇲","dialCode":"378","priority":"0"},{"code":"SN","emoji":"🇸🇳","dialCode":"221","priority":"0"},{"code":"SO","emoji":"🇸🇴","dialCode":"252","priority":"0"},{"code":"SR","emoji":"🇸🇷","dialCode":"597","priority":"0"},{"code":"SS","emoji":"🇸🇸","dialCode":"211","priority":"0"},{"code":"ST","emoji":"🇸🇹","dialCode":"239","priority":"0"},{"code":"SV","emoji":"🇸🇻","dialCode":"503","priority":"0"},{"code":"SX","emoji":"🇸🇽","dialCode":"1721","priority":"0"},{"code":"SY","emoji":"🇸🇾","dialCode":"963","priority":"0"},{"code":"SZ","emoji":"🇸🇿","dialCode":"268","priority":"0"},{"code":"TC","emoji":"🇹🇨","dialCode":"1649","priority":"0"},{"code":"TD","emoji":"🇹🇩","dialCode":"235","priority":"0"},{"code":"TG","emoji":"🇹🇬","dialCode":"228","priority":"0"},{"code":"TH","emoji":"🇹🇭","dialCode":"66","priority":"0"},{"code":"TJ","emoji":"🇹🇯","dialCode":"992","priority":"0"},{"code":"TK","emoji":"🇹🇰","dialCode":"690","priority":"0"},{"code":"TL","emoji":"🇹🇱","dialCode":"670","priority":"0"},{"code":"TM","emoji":"🇹🇲","dialCode":"993","priority":"0"},{"code":"TN","emoji":"🇹🇳","dialCode":"216","priority":"0"},{"code":"TO","emoji":"🇹🇴","dialCode":"676","priority":"0"},{"code":"TR","emoji":"🇹🇷","dialCode":"90","priority":"0"},{"code":"TT","emoji":"🇹🇹","dialCode":"1868","priority":"0"},{"code":"TV","emoji":"🇹🇻","dialCode":"688","priority":"0"},{"code":"TW","emoji":"🇹🇼","dialCode":"886","priority":"0"},{"code":"TZ","emoji":"🇹🇿","dialCode":"255","priority":"0"},{"code":"UA","emoji":"🇺🇦","dialCode":"380","priority":"0"},{"code":"UG","emoji":"🇺🇬","dialCode":"256","priority":"0"},{"code":"US","emoji":"🇺🇸","dialCode":"1","priority":"1"},{"code":"UY","emoji":"🇺🇾","dialCode":"598","priority":"0"},{"code":"UZ","emoji":"🇺🇿","dialCode":"998","priority":"0"},{"code":"VA","emoji":"🇻🇦","dialCode":"39","priority":"0"},{"code":"VC","emoji":"🇻🇨","dialCode":"1784","priority":"0"},{"code":"VE","emoji":"🇻🇪","dialCode":"58","priority":"0"},{"code":"VG","emoji":"🇻🇬","dialCode":"1284","priority":"0"},{"code":"VI","emoji":"🇻🇮","dialCode":"1340","priority":"0"},{"code":"VN","emoji":"🇻🇳","dialCode":"84","priority":"0"},{"code":"VU","emoji":"🇻🇺","dialCode":"678","priority":"0"},{"code":"WF","emoji":"🇼🇫","dialCode":"681","priority":"0"},{"code":"WS","emoji":"🇼🇸","dialCode":"685","priority":"0"},{"code":"XK","emoji":"🇽🇰","dialCode":"383","priority":"0"},{"code":"YE","emoji":"🇾🇪","dialCode":"967","priority":"0"},{"code":"YT","emoji":"🇾🇹","dialCode":"262","priority":"0"},{"code":"ZA","emoji":"🇿🇦","dialCode":"27","priority":"0"},{"code":"ZM","emoji":"🇿🇲","dialCode":"260","priority":"0"},{"code":"ZW","emoji":"🇿🇼","dialCode":"263","priority":"0"}]
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF.png
deleted file mode 100644
index 2f04dce2..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF@2x.png
deleted file mode 100644
index 18f81d97..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF@3x.png
deleted file mode 100644
index 2dbae4e6..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos.png
deleted file mode 100644
index 38c183f5..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos@2x.png
deleted file mode 100644
index 7c1360b4..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos@3x.png
deleted file mode 100644
index 3a18d746..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input.png
deleted file mode 100644
index 4a3a2bc2..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input@2x.png
deleted file mode 100644
index c25b83f6..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input@3x.png
deleted file mode 100644
index 39c8b33b..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input.png
deleted file mode 100644
index 76320c2b..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input@2x.png
deleted file mode 100644
index 1dbfceb6..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input@3x.png
deleted file mode 100644
index 7f02e864..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/article_loading_state.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/article_loading_state.png
deleted file mode 100644
index 59cfc950..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/article_loading_state.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/article_loading_state@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/article_loading_state@2x.png
deleted file mode 100644
index 4659bf60..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/article_loading_state@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/article_loading_state@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/article_loading_state@3x.png
deleted file mode 100644
index 1e5057e9..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/article_loading_state@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/ask_a_question.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/ask_a_question.png
deleted file mode 100644
index c755edce..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/ask_a_question.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/ask_a_question@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/ask_a_question@2x.png
deleted file mode 100644
index 8367c4bc..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/ask_a_question@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/ask_a_question@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/ask_a_question@3x.png
deleted file mode 100644
index 11b43041..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/ask_a_question@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/back.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/back.png
deleted file mode 100644
index ad084e0e..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/back.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/back@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/back@2x.png
deleted file mode 100644
index 32a3c89b..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/back@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/back@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/back@3x.png
deleted file mode 100644
index 0c41b655..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/back@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left.png
deleted file mode 100644
index 07a9ffa5..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left@2x.png
deleted file mode 100644
index 4afb3d9e..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left@3x.png
deleted file mode 100644
index 6117c069..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected.png
deleted file mode 100644
index 9f8e7c7e..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected@2x.png
deleted file mode 100644
index 2fbd09e1..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected@3x.png
deleted file mode 100644
index fa3a5c17..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right.png
deleted file mode 100644
index 6909cb02..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right@2x.png
deleted file mode 100644
index 0a631693..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right@3x.png
deleted file mode 100644
index 44263464..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected.png
deleted file mode 100644
index ef73a016..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected@2x.png
deleted file mode 100644
index 5fcede73..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected@3x.png
deleted file mode 100644
index 0687efd2..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/carousel_loading_state.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/carousel_loading_state.png
deleted file mode 100644
index a6fd57c0..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/carousel_loading_state.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/carousel_loading_state@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/carousel_loading_state@2x.png
deleted file mode 100644
index ea3151d0..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/carousel_loading_state@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/carousel_loading_state@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/carousel_loading_state@3x.png
deleted file mode 100644
index fe463fae..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/carousel_loading_state@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/chat_bubble.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/chat_bubble.png
deleted file mode 100644
index a465a305..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/chat_bubble.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/chat_bubble@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/chat_bubble@2x.png
deleted file mode 100644
index cd15cce1..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/chat_bubble@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/chat_bubble@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/chat_bubble@3x.png
deleted file mode 100644
index 53dc2e61..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/chat_bubble@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close.png
deleted file mode 100644
index 73da4357..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close@2x.png
deleted file mode 100644
index ee3bb182..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close@3x.png
deleted file mode 100644
index 2408bc90..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_annotation.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_annotation.png
deleted file mode 100644
index bfbf6e26..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_annotation.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_annotation@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_annotation@2x.png
deleted file mode 100644
index be5b5f3f..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_annotation@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_annotation@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_annotation@3x.png
deleted file mode 100644
index eb72b5b2..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_annotation@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_intercom.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_intercom.png
deleted file mode 100644
index b3c5e5be..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_intercom.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_intercom@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_intercom@2x.png
deleted file mode 100644
index f870b3f1..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_intercom@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_intercom@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_intercom@3x.png
deleted file mode 100644
index 57014792..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_intercom@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_note.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_note.png
deleted file mode 100644
index 932cfd94..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_note.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_note@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_note@2x.png
deleted file mode 100644
index e6039e90..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_note@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_note@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_note@3x.png
deleted file mode 100644
index 3affe506..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_note@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_post.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_post.png
deleted file mode 100644
index bc230d2a..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_post.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_post@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_post@2x.png
deleted file mode 100644
index 2d9321eb..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_post@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_post@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_post@3x.png
deleted file mode 100644
index 3630585c..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/close_post@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/date_selector.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/date_selector.png
deleted file mode 100755
index 016fd4a6..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/date_selector.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/date_selector@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/date_selector@2x.png
deleted file mode 100755
index 67896bc7..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/date_selector@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/date_selector@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/date_selector@3x.png
deleted file mode 100755
index c6450fce..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/date_selector@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/footer_link_icon.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/footer_link_icon.png
deleted file mode 100644
index 4974a55b..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/footer_link_icon.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/footer_link_icon@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/footer_link_icon@2x.png
deleted file mode 100644
index d686a72c..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/footer_link_icon@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/footer_link_icon@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/footer_link_icon@3x.png
deleted file mode 100644
index a0f3b94e..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/footer_link_icon@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon.png
deleted file mode 100644
index 0adabbda..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon@2x.png
deleted file mode 100644
index 717c95d5..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon@3x.png
deleted file mode 100644
index 366ae8c6..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_chevron.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_chevron.png
deleted file mode 100644
index be6aa3ad..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_chevron.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_chevron@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_chevron@2x.png
deleted file mode 100644
index bfe67dc3..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_chevron@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_chevron@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_chevron@3x.png
deleted file mode 100644
index 44bd5e03..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_chevron@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_loading_state.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_loading_state.png
deleted file mode 100644
index 51bb810a..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_loading_state.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_loading_state@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_loading_state@2x.png
deleted file mode 100644
index 19a60f50..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_loading_state@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_loading_state@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_loading_state@3x.png
deleted file mode 100644
index 1a2c2579..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/help_center_loading_state@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/homescreenFailed.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/homescreenFailed.png
deleted file mode 100644
index f96aabcd..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/homescreenFailed.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/homescreenFailed@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/homescreenFailed@2x.png
deleted file mode 100644
index f4ff5fc8..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/homescreenFailed@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/homescreenFailed@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/homescreenFailed@3x.png
deleted file mode 100644
index a6381327..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/homescreenFailed@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_green_check.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_green_check.png
deleted file mode 100644
index 5c9a9f57..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_green_check.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_green_check@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_green_check@2x.png
deleted file mode 100644
index 20617aa6..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_green_check@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_green_check@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_green_check@3x.png
deleted file mode 100644
index 8d21d97c..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_green_check@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_loading.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_loading.png
deleted file mode 100644
index 1b893082..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_loading.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_loading@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_loading@2x.png
deleted file mode 100644
index 6f5e334c..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_loading@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_loading@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_loading@3x.png
deleted file mode 100644
index 9a0a231d..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_loading@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_submit.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_submit.png
deleted file mode 100644
index 6990ba87..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_submit.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_submit@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_submit@2x.png
deleted file mode 100644
index 36dc88a7..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_submit@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_submit@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_submit@3x.png
deleted file mode 100644
index e07fdf09..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/icon_submit@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/intercom_logo.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/intercom_logo.png
deleted file mode 100644
index b66f40ce..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/intercom_logo.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/intercom_logo@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/intercom_logo@2x.png
deleted file mode 100644
index 94f18ce7..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/intercom_logo@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/intercom_logo@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/intercom_logo@3x.png
deleted file mode 100644
index f76167c7..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/intercom_logo@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/launcher.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/launcher.png
deleted file mode 100644
index 2e85ff07..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/launcher.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/launcher@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/launcher@2x.png
deleted file mode 100644
index 37b789af..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/launcher@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/launcher@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/launcher@3x.png
deleted file mode 100644
index 35319beb..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/launcher@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/linkedin.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/linkedin.png
deleted file mode 100644
index 9f2cfc5b..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/linkedin.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/linkedin@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/linkedin@2x.png
deleted file mode 100644
index fa5bf507..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/linkedin@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/linkedin@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/linkedin@3x.png
deleted file mode 100644
index dc7cae77..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/linkedin@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/logoa.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/logoa.png
deleted file mode 100644
index 054d72fd..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/logoa.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/message_failed.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/message_failed.png
deleted file mode 100644
index 4bf6321d..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/message_failed.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/message_failed@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/message_failed@2x.png
deleted file mode 100644
index f3c5d71d..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/message_failed@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/message_failed@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/message_failed@3x.png
deleted file mode 100644
index 46b8ed26..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/message_failed@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/open_post_from_card.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/open_post_from_card.png
deleted file mode 100644
index 87cba8f0..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/open_post_from_card.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/open_post_from_card@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/open_post_from_card@2x.png
deleted file mode 100644
index 2be5ed39..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/open_post_from_card@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/open_post_from_card@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/open_post_from_card@3x.png
deleted file mode 100644
index 09dbcb4b..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/open_post_from_card@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/picker_selector.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/picker_selector.png
deleted file mode 100755
index e12e51f8..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/picker_selector.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/picker_selector@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/picker_selector@2x.png
deleted file mode 100755
index 9e05ded2..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/picker_selector@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/picker_selector@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/picker_selector@3x.png
deleted file mode 100755
index 03f0c370..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/picker_selector@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/screen_action_checkmark.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/screen_action_checkmark.png
deleted file mode 100644
index a023d269..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/screen_action_checkmark.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/screen_action_checkmark@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/screen_action_checkmark@2x.png
deleted file mode 100644
index aae11474..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/screen_action_checkmark@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/screen_action_checkmark@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/screen_action_checkmark@3x.png
deleted file mode 100644
index 77cc9cbd..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/screen_action_checkmark@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/search_icon.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/search_icon.png
deleted file mode 100644
index 1affa8ca..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/search_icon.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/search_icon@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/search_icon@2x.png
deleted file mode 100644
index 0f658763..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/search_icon@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/search_icon@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/search_icon@3x.png
deleted file mode 100644
index 8979a065..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/search_icon@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/send_annotation.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/send_annotation.png
deleted file mode 100644
index b9826520..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/send_annotation.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/send_annotation@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/send_annotation@2x.png
deleted file mode 100644
index ae610fb0..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/send_annotation@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/send_annotation@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/send_annotation@3x.png
deleted file mode 100644
index f6dc6043..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/send_annotation@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/snooze_icon.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/snooze_icon.png
deleted file mode 100755
index 6d556a5e..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/snooze_icon.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/snooze_icon@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/snooze_icon@2x.png
deleted file mode 100755
index 21a969dd..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/snooze_icon@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/snooze_icon@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/snooze_icon@3x.png
deleted file mode 100755
index 44525e93..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/snooze_icon@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/spinner.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/spinner.png
deleted file mode 100644
index 5e66ff10..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/spinner.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/spinner@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/spinner@2x.png
deleted file mode 100644
index 2aa41e0f..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/spinner@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/spinner@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/spinner@3x.png
deleted file mode 100644
index 4aa56591..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/spinner@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/startConversationIcon.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/startConversationIcon.png
deleted file mode 100644
index 4fd8a25e..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/startConversationIcon.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/startConversationIcon@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/startConversationIcon@2x.png
deleted file mode 100644
index 2e296812..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/startConversationIcon@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/startConversationIcon@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/startConversationIcon@3x.png
deleted file mode 100644
index 5e6bf4ea..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/startConversationIcon@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background.png
deleted file mode 100644
index e92df967..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background@2x.png
deleted file mode 100644
index 8ed7d5c1..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background@3x.png
deleted file mode 100644
index e2ee69cb..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background_clear.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background_clear.png
deleted file mode 100644
index f49d58a7..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background_clear.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background_clear@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background_clear@2x.png
deleted file mode 100644
index 75757ced..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background_clear@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background_clear@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background_clear@3x.png
deleted file mode 100644
index 59dd7658..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/submit_button_background_clear@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_bio.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_bio.png
deleted file mode 100644
index 4752441b..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_bio.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_bio@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_bio@2x.png
deleted file mode 100644
index dcc65852..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_bio@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_bio@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_bio@3x.png
deleted file mode 100644
index 78957e98..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_bio@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_location.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_location.png
deleted file mode 100644
index 21bfc411..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_location.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_location@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_location@2x.png
deleted file mode 100644
index 4872d6a8..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_location@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_location@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_location@3x.png
deleted file mode 100644
index 518ba119..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_location@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_role.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_role.png
deleted file mode 100644
index 552c9f76..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_role.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_role@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_role@2x.png
deleted file mode 100644
index 698ae5c4..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_role@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_role@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_role@3x.png
deleted file mode 100644
index 25c27147..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/teammate_role@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background.png
deleted file mode 100644
index 4135dbfc..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background@2x.png
deleted file mode 100644
index 6c865fb7..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background@3x.png
deleted file mode 100644
index 901abfc0..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background_error.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background_error.png
deleted file mode 100644
index 6b5a4538..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background_error.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background_error@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background_error@2x.png
deleted file mode 100644
index 3357232f..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background_error@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background_error@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background_error@3x.png
deleted file mode 100644
index 94cd0701..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/textfield_background_error@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/twitter.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/twitter.png
deleted file mode 100644
index 3be9ffac..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/twitter.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/twitter@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/twitter@2x.png
deleted file mode 100644
index ac545e5b..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/twitter@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/twitter@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/twitter@3x.png
deleted file mode 100644
index 7d7cc135..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/twitter@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/undo.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/undo.png
deleted file mode 100755
index 9f73bd14..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/undo.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/undo@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/undo@2x.png
deleted file mode 100755
index 24f2ca0a..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/undo@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/undo@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/undo@3x.png
deleted file mode 100755
index 7f03b806..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/undo@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/upload_icon.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/upload_icon.png
deleted file mode 100644
index f6f4bee6..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/upload_icon.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/upload_icon@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/upload_icon@2x.png
deleted file mode 100644
index 0c016f51..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/upload_icon@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/upload_icon@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/upload_icon@3x.png
deleted file mode 100644
index 3f873747..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/upload_icon@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/warning.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/warning.png
deleted file mode 100644
index 967b8363..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/warning.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/warning@2x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/warning@2x.png
deleted file mode 100644
index e79123ee..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/warning@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/warning@3x.png b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/warning@3x.png
deleted file mode 100644
index 6548c064..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/images/warning@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/sound/admin_reply_delivered.caf b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/sound/admin_reply_delivered.caf
deleted file mode 100644
index f2f358ef..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/sound/admin_reply_delivered.caf and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/sound/message_failed.caf b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/sound/message_failed.caf
deleted file mode 100644
index 6d0be6ba..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/sound/message_failed.caf and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/sound/message_operator.caf b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/sound/message_operator.caf
deleted file mode 100644
index 55454150..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/sound/message_operator.caf and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/sound/message_sending.caf b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/sound/message_sending.caf
deleted file mode 100644
index c2d9a87a..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Intercom.bundle/sound/message_sending.caf and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/Info.plist b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/Info.plist
deleted file mode 100644
index f0523060..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/Info.plist and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ar.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ar.strings
deleted file mode 100644
index 0bc164d2..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ar.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/bg.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/bg.strings
deleted file mode 100644
index 67753520..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/bg.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/bs.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/bs.strings
deleted file mode 100644
index 6534b31d..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/bs.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ca.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ca.strings
deleted file mode 100644
index 2bbaa680..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ca.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/cs.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/cs.strings
deleted file mode 100644
index 9c5f467f..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/cs.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/da.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/da.strings
deleted file mode 100644
index 9886ad4d..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/da.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/de-form.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/de-form.strings
deleted file mode 100644
index cb3188e0..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/de-form.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/de.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/de.strings
deleted file mode 100644
index 87d5b7a7..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/de.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/el.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/el.strings
deleted file mode 100644
index 8deecc43..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/el.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/en.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/en.strings
deleted file mode 100644
index d1f4e500..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/en.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/es.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/es.strings
deleted file mode 100644
index 18698852..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/es.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/et.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/et.strings
deleted file mode 100644
index 6bdd6fed..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/et.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/fi.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/fi.strings
deleted file mode 100644
index 33c5f1ba..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/fi.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/fr.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/fr.strings
deleted file mode 100644
index 5cf31973..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/fr.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/he.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/he.strings
deleted file mode 100644
index e55f992e..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/he.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/hr.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/hr.strings
deleted file mode 100644
index a7822130..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/hr.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/hu.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/hu.strings
deleted file mode 100644
index 96a9331c..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/hu.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/id.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/id.strings
deleted file mode 100644
index c7e38b16..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/id.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/it.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/it.strings
deleted file mode 100644
index 12351833..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/it.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ja.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ja.strings
deleted file mode 100644
index b0c1728d..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ja.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ko.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ko.strings
deleted file mode 100644
index 32636bf7..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ko.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/lt.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/lt.strings
deleted file mode 100644
index ecd7cc18..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/lt.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/lv.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/lv.strings
deleted file mode 100644
index f3329a85..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/lv.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/mn.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/mn.strings
deleted file mode 100644
index 09fcad08..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/mn.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/nb.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/nb.strings
deleted file mode 100644
index 58320d88..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/nb.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/nl.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/nl.strings
deleted file mode 100644
index b8a3abe8..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/nl.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/pl.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/pl.strings
deleted file mode 100644
index d00931de..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/pl.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/pt-br.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/pt-br.strings
deleted file mode 100644
index a3567193..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/pt-br.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/pt-pt.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/pt-pt.strings
deleted file mode 100644
index e6b1248b..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/pt-pt.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ro.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ro.strings
deleted file mode 100644
index 1cb13a0d..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ro.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ru.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ru.strings
deleted file mode 100644
index c725d3eb..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/ru.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/sl.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/sl.strings
deleted file mode 100644
index 6810af57..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/sl.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/sr.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/sr.strings
deleted file mode 100644
index b0e0f5dc..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/sr.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/sv.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/sv.strings
deleted file mode 100644
index 2937a54f..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/sv.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/tr.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/tr.strings
deleted file mode 100644
index e19fce0e..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/tr.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/vi.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/vi.strings
deleted file mode 100644
index d5bb302e..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/vi.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/zh-hans.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/zh-hans.strings
deleted file mode 100644
index 3d41d427..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/zh-hans.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/zh-hant.strings b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/zh-hant.strings
deleted file mode 100644
index 407fded0..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/IntercomTranslations.bundle/zh-hant.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm.swiftdoc b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm.swiftdoc
deleted file mode 100644
index 8b2fac3f..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm.swiftdoc and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm.swiftinterface b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm.swiftinterface
deleted file mode 100644
index d92cd668..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm.swiftinterface
+++ /dev/null
@@ -1,91 +0,0 @@
-// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28)
-// swift-module-flags: -target armv7-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Intercom
-import Foundation
-@_exported import Intercom
-import Intercom_Private
-import Swift
-import UIKit
-import os.log
-import os
-@objc public protocol HelpCenterStartConversationViewDelegate {
- @objc func didSelectStartConversation()
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterStartConversationView : UIKit.UIView {
- @objc weak public var startConversationDelegate: HelpCenterStartConversationViewDelegate?
- @objc deinit
-}
-@_hasMissingDesignatedInitializers @objc public class AvailableTeammatesView : UIKit.UIStackView {
- @objc override dynamic public init(frame: CoreGraphics.CGRect)
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(ICMSearchBrowseView) public class SearchBrowseView : UIKit.UIView {
- @objc override dynamic public convenience init(frame: CoreGraphics.CGRect)
- public init(_ frame: CoreGraphics.CGRect, _ config: Intercom_Private.ICMConfigProtocol = ICMConfig.shared())
- @objc public func searchHelpArticlesAction()
- @objc public func heightForCard(width: CoreGraphics.CGFloat) -> CoreGraphics.CGFloat
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterDataService : ObjectiveC.NSObject {
- @objc override dynamic public init()
- @objc public func fetchCollections(completion: @escaping ([HelpCenterCollection]?, Swift.Error?) -> Swift.Void)
- @objc public func fetchCollection(collectionId: Swift.String, completion: @escaping (HelpCenterCollectionContent?, Swift.Error?) -> Swift.Void)
- @objc public func searchResults(for searchTerm: Swift.String, completion: @escaping ([HelpCenterArticleSearchResult]?, Swift.Error?) -> Swift.Void)
- @objc deinit
-}
-@objc @objcMembers public class ArticleMetaData : ObjectiveC.NSObject {
- @objc public static var searchBrowseSource: Swift.String
- @objc public var articleId: Swift.String?
- @objc public var articleSource: Swift.String?
- @objc public init(id: Swift.String?, source: Swift.String?)
- @objc deinit
- @objc override dynamic public init()
-}
-@_inheritsConvenienceInitializers @objc public class HelpCenterMetricService : ObjectiveC.NSObject {
- @objc public var contextIsSearchBrowse: Swift.Bool
- @objc public static func addSearchBrowseViewedEvent(homeScreenIndex: Swift.Int)
- @objc public static func addOpenedFromAPIEvent()
- @objc public static func addOpenedArticleFromAPIEvent()
- @objc public static func addOpenedFromConversationEvent()
- @objc public static func addOpenedFromInAppEvent()
- @objc public static func addOpenedFromLegacySearchAppEvent()
- @objc public static func addOpenedFromMessengerHomeAppEvent()
- @objc public static func addOpenedFromCarousel()
- @objc public static func addOpenedFromPushNotification()
- @objc public func addArticleViewedEvent()
- @objc public func addArticleFailedEvent(errorCode: Foundation.NSNumber)
- @objc public func addHappyReactionEvent()
- @objc public func addNeutralReactionEvent()
- @objc public func addSadReactionEvent(conversationOptionShown: Swift.Bool)
- @objc public func addNewConversationFromArticleEvent(accessToTeammate: Swift.Bool)
- @objc deinit
- @objc override dynamic public init()
-}
-@objc public protocol NativeArticleReactionsViewDelegate {
- @objc func selectedReactionIndex(_ reactionIdex: Swift.Int)
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NativeArticleReactionsView : UIKit.UIView {
- @objc public static var sadReactionIndex: Swift.Int
- @objc public static var neutralReactionIndex: Swift.Int
- @objc public static var happyReactionIndex: Swift.Int
- @objc weak public var articleDelegate: NativeArticleReactionsViewDelegate?
- @objc deinit
-}
-extension Intercom {
- public class func fetchHelpCenterCollections(completion: @escaping (Swift.Result<[HelpCenterCollection], ICMHelpCenterDataError>) -> Swift.Void)
- public class func fetchHelpCenterCollection(_ collectionId: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void)
- public class func searchHelpCenter(_ searchTerm: Swift.String, completion: @escaping (Swift.Result<[HelpCenterArticleSearchResult], ICMHelpCenterDataError>) -> Swift.Void)
-}
-@_hasMissingDesignatedInitializers @objc public class HelpCenterContainerViewController : UIKit.UIViewController {
- @objc public convenience init(withCollections collectionIds: [Swift.String])
- @objc public convenience init(withCollection collectionId: Swift.String)
- @objc dynamic public init()
- @objc public convenience init(fromSearchBrowse: Swift.Bool)
- @objc override dynamic public func viewDidLoad()
- @objc override dynamic public func viewDidLayoutSubviews()
- @objc deinit
- @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
-}
-extension HelpCenterContainerViewController : Intercom_Private.ICMErrorViewDelegate {
- @objc dynamic public func didSelectErrorAction()
-}
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm64-apple-ios.swiftdoc b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm64-apple-ios.swiftdoc
deleted file mode 100644
index 74c675b8..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm64-apple-ios.swiftdoc and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm64-apple-ios.swiftinterface b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm64-apple-ios.swiftinterface
deleted file mode 100644
index c4901a66..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm64-apple-ios.swiftinterface
+++ /dev/null
@@ -1,91 +0,0 @@
-// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28)
-// swift-module-flags: -target arm64-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Intercom
-import Foundation
-@_exported import Intercom
-import Intercom_Private
-import Swift
-import UIKit
-import os.log
-import os
-@objc public protocol HelpCenterStartConversationViewDelegate {
- @objc func didSelectStartConversation()
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterStartConversationView : UIKit.UIView {
- @objc weak public var startConversationDelegate: HelpCenterStartConversationViewDelegate?
- @objc deinit
-}
-@_hasMissingDesignatedInitializers @objc public class AvailableTeammatesView : UIKit.UIStackView {
- @objc override dynamic public init(frame: CoreGraphics.CGRect)
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(ICMSearchBrowseView) public class SearchBrowseView : UIKit.UIView {
- @objc override dynamic public convenience init(frame: CoreGraphics.CGRect)
- public init(_ frame: CoreGraphics.CGRect, _ config: Intercom_Private.ICMConfigProtocol = ICMConfig.shared())
- @objc public func searchHelpArticlesAction()
- @objc public func heightForCard(width: CoreGraphics.CGFloat) -> CoreGraphics.CGFloat
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterDataService : ObjectiveC.NSObject {
- @objc override dynamic public init()
- @objc public func fetchCollections(completion: @escaping ([HelpCenterCollection]?, Swift.Error?) -> Swift.Void)
- @objc public func fetchCollection(collectionId: Swift.String, completion: @escaping (HelpCenterCollectionContent?, Swift.Error?) -> Swift.Void)
- @objc public func searchResults(for searchTerm: Swift.String, completion: @escaping ([HelpCenterArticleSearchResult]?, Swift.Error?) -> Swift.Void)
- @objc deinit
-}
-@objc @objcMembers public class ArticleMetaData : ObjectiveC.NSObject {
- @objc public static var searchBrowseSource: Swift.String
- @objc public var articleId: Swift.String?
- @objc public var articleSource: Swift.String?
- @objc public init(id: Swift.String?, source: Swift.String?)
- @objc deinit
- @objc override dynamic public init()
-}
-@_inheritsConvenienceInitializers @objc public class HelpCenterMetricService : ObjectiveC.NSObject {
- @objc public var contextIsSearchBrowse: Swift.Bool
- @objc public static func addSearchBrowseViewedEvent(homeScreenIndex: Swift.Int)
- @objc public static func addOpenedFromAPIEvent()
- @objc public static func addOpenedArticleFromAPIEvent()
- @objc public static func addOpenedFromConversationEvent()
- @objc public static func addOpenedFromInAppEvent()
- @objc public static func addOpenedFromLegacySearchAppEvent()
- @objc public static func addOpenedFromMessengerHomeAppEvent()
- @objc public static func addOpenedFromCarousel()
- @objc public static func addOpenedFromPushNotification()
- @objc public func addArticleViewedEvent()
- @objc public func addArticleFailedEvent(errorCode: Foundation.NSNumber)
- @objc public func addHappyReactionEvent()
- @objc public func addNeutralReactionEvent()
- @objc public func addSadReactionEvent(conversationOptionShown: Swift.Bool)
- @objc public func addNewConversationFromArticleEvent(accessToTeammate: Swift.Bool)
- @objc deinit
- @objc override dynamic public init()
-}
-@objc public protocol NativeArticleReactionsViewDelegate {
- @objc func selectedReactionIndex(_ reactionIdex: Swift.Int)
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NativeArticleReactionsView : UIKit.UIView {
- @objc public static var sadReactionIndex: Swift.Int
- @objc public static var neutralReactionIndex: Swift.Int
- @objc public static var happyReactionIndex: Swift.Int
- @objc weak public var articleDelegate: NativeArticleReactionsViewDelegate?
- @objc deinit
-}
-extension Intercom {
- public class func fetchHelpCenterCollections(completion: @escaping (Swift.Result<[HelpCenterCollection], ICMHelpCenterDataError>) -> Swift.Void)
- public class func fetchHelpCenterCollection(_ collectionId: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void)
- public class func searchHelpCenter(_ searchTerm: Swift.String, completion: @escaping (Swift.Result<[HelpCenterArticleSearchResult], ICMHelpCenterDataError>) -> Swift.Void)
-}
-@_hasMissingDesignatedInitializers @objc public class HelpCenterContainerViewController : UIKit.UIViewController {
- @objc public convenience init(withCollections collectionIds: [Swift.String])
- @objc public convenience init(withCollection collectionId: Swift.String)
- @objc dynamic public init()
- @objc public convenience init(fromSearchBrowse: Swift.Bool)
- @objc override dynamic public func viewDidLoad()
- @objc override dynamic public func viewDidLayoutSubviews()
- @objc deinit
- @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
-}
-extension HelpCenterContainerViewController : Intercom_Private.ICMErrorViewDelegate {
- @objc dynamic public func didSelectErrorAction()
-}
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm64.swiftdoc b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm64.swiftdoc
deleted file mode 100644
index 74c675b8..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm64.swiftdoc and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm64.swiftinterface b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm64.swiftinterface
deleted file mode 100644
index c4901a66..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/arm64.swiftinterface
+++ /dev/null
@@ -1,91 +0,0 @@
-// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28)
-// swift-module-flags: -target arm64-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Intercom
-import Foundation
-@_exported import Intercom
-import Intercom_Private
-import Swift
-import UIKit
-import os.log
-import os
-@objc public protocol HelpCenterStartConversationViewDelegate {
- @objc func didSelectStartConversation()
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterStartConversationView : UIKit.UIView {
- @objc weak public var startConversationDelegate: HelpCenterStartConversationViewDelegate?
- @objc deinit
-}
-@_hasMissingDesignatedInitializers @objc public class AvailableTeammatesView : UIKit.UIStackView {
- @objc override dynamic public init(frame: CoreGraphics.CGRect)
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(ICMSearchBrowseView) public class SearchBrowseView : UIKit.UIView {
- @objc override dynamic public convenience init(frame: CoreGraphics.CGRect)
- public init(_ frame: CoreGraphics.CGRect, _ config: Intercom_Private.ICMConfigProtocol = ICMConfig.shared())
- @objc public func searchHelpArticlesAction()
- @objc public func heightForCard(width: CoreGraphics.CGFloat) -> CoreGraphics.CGFloat
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterDataService : ObjectiveC.NSObject {
- @objc override dynamic public init()
- @objc public func fetchCollections(completion: @escaping ([HelpCenterCollection]?, Swift.Error?) -> Swift.Void)
- @objc public func fetchCollection(collectionId: Swift.String, completion: @escaping (HelpCenterCollectionContent?, Swift.Error?) -> Swift.Void)
- @objc public func searchResults(for searchTerm: Swift.String, completion: @escaping ([HelpCenterArticleSearchResult]?, Swift.Error?) -> Swift.Void)
- @objc deinit
-}
-@objc @objcMembers public class ArticleMetaData : ObjectiveC.NSObject {
- @objc public static var searchBrowseSource: Swift.String
- @objc public var articleId: Swift.String?
- @objc public var articleSource: Swift.String?
- @objc public init(id: Swift.String?, source: Swift.String?)
- @objc deinit
- @objc override dynamic public init()
-}
-@_inheritsConvenienceInitializers @objc public class HelpCenterMetricService : ObjectiveC.NSObject {
- @objc public var contextIsSearchBrowse: Swift.Bool
- @objc public static func addSearchBrowseViewedEvent(homeScreenIndex: Swift.Int)
- @objc public static func addOpenedFromAPIEvent()
- @objc public static func addOpenedArticleFromAPIEvent()
- @objc public static func addOpenedFromConversationEvent()
- @objc public static func addOpenedFromInAppEvent()
- @objc public static func addOpenedFromLegacySearchAppEvent()
- @objc public static func addOpenedFromMessengerHomeAppEvent()
- @objc public static func addOpenedFromCarousel()
- @objc public static func addOpenedFromPushNotification()
- @objc public func addArticleViewedEvent()
- @objc public func addArticleFailedEvent(errorCode: Foundation.NSNumber)
- @objc public func addHappyReactionEvent()
- @objc public func addNeutralReactionEvent()
- @objc public func addSadReactionEvent(conversationOptionShown: Swift.Bool)
- @objc public func addNewConversationFromArticleEvent(accessToTeammate: Swift.Bool)
- @objc deinit
- @objc override dynamic public init()
-}
-@objc public protocol NativeArticleReactionsViewDelegate {
- @objc func selectedReactionIndex(_ reactionIdex: Swift.Int)
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NativeArticleReactionsView : UIKit.UIView {
- @objc public static var sadReactionIndex: Swift.Int
- @objc public static var neutralReactionIndex: Swift.Int
- @objc public static var happyReactionIndex: Swift.Int
- @objc weak public var articleDelegate: NativeArticleReactionsViewDelegate?
- @objc deinit
-}
-extension Intercom {
- public class func fetchHelpCenterCollections(completion: @escaping (Swift.Result<[HelpCenterCollection], ICMHelpCenterDataError>) -> Swift.Void)
- public class func fetchHelpCenterCollection(_ collectionId: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void)
- public class func searchHelpCenter(_ searchTerm: Swift.String, completion: @escaping (Swift.Result<[HelpCenterArticleSearchResult], ICMHelpCenterDataError>) -> Swift.Void)
-}
-@_hasMissingDesignatedInitializers @objc public class HelpCenterContainerViewController : UIKit.UIViewController {
- @objc public convenience init(withCollections collectionIds: [Swift.String])
- @objc public convenience init(withCollection collectionId: Swift.String)
- @objc dynamic public init()
- @objc public convenience init(fromSearchBrowse: Swift.Bool)
- @objc override dynamic public func viewDidLoad()
- @objc override dynamic public func viewDidLayoutSubviews()
- @objc deinit
- @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
-}
-extension HelpCenterContainerViewController : Intercom_Private.ICMErrorViewDelegate {
- @objc dynamic public func didSelectErrorAction()
-}
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/armv7-apple-ios.swiftdoc b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/armv7-apple-ios.swiftdoc
deleted file mode 100644
index 8b2fac3f..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/armv7-apple-ios.swiftdoc and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/armv7-apple-ios.swiftinterface b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/armv7-apple-ios.swiftinterface
deleted file mode 100644
index d92cd668..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/armv7-apple-ios.swiftinterface
+++ /dev/null
@@ -1,91 +0,0 @@
-// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28)
-// swift-module-flags: -target armv7-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Intercom
-import Foundation
-@_exported import Intercom
-import Intercom_Private
-import Swift
-import UIKit
-import os.log
-import os
-@objc public protocol HelpCenterStartConversationViewDelegate {
- @objc func didSelectStartConversation()
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterStartConversationView : UIKit.UIView {
- @objc weak public var startConversationDelegate: HelpCenterStartConversationViewDelegate?
- @objc deinit
-}
-@_hasMissingDesignatedInitializers @objc public class AvailableTeammatesView : UIKit.UIStackView {
- @objc override dynamic public init(frame: CoreGraphics.CGRect)
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(ICMSearchBrowseView) public class SearchBrowseView : UIKit.UIView {
- @objc override dynamic public convenience init(frame: CoreGraphics.CGRect)
- public init(_ frame: CoreGraphics.CGRect, _ config: Intercom_Private.ICMConfigProtocol = ICMConfig.shared())
- @objc public func searchHelpArticlesAction()
- @objc public func heightForCard(width: CoreGraphics.CGFloat) -> CoreGraphics.CGFloat
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterDataService : ObjectiveC.NSObject {
- @objc override dynamic public init()
- @objc public func fetchCollections(completion: @escaping ([HelpCenterCollection]?, Swift.Error?) -> Swift.Void)
- @objc public func fetchCollection(collectionId: Swift.String, completion: @escaping (HelpCenterCollectionContent?, Swift.Error?) -> Swift.Void)
- @objc public func searchResults(for searchTerm: Swift.String, completion: @escaping ([HelpCenterArticleSearchResult]?, Swift.Error?) -> Swift.Void)
- @objc deinit
-}
-@objc @objcMembers public class ArticleMetaData : ObjectiveC.NSObject {
- @objc public static var searchBrowseSource: Swift.String
- @objc public var articleId: Swift.String?
- @objc public var articleSource: Swift.String?
- @objc public init(id: Swift.String?, source: Swift.String?)
- @objc deinit
- @objc override dynamic public init()
-}
-@_inheritsConvenienceInitializers @objc public class HelpCenterMetricService : ObjectiveC.NSObject {
- @objc public var contextIsSearchBrowse: Swift.Bool
- @objc public static func addSearchBrowseViewedEvent(homeScreenIndex: Swift.Int)
- @objc public static func addOpenedFromAPIEvent()
- @objc public static func addOpenedArticleFromAPIEvent()
- @objc public static func addOpenedFromConversationEvent()
- @objc public static func addOpenedFromInAppEvent()
- @objc public static func addOpenedFromLegacySearchAppEvent()
- @objc public static func addOpenedFromMessengerHomeAppEvent()
- @objc public static func addOpenedFromCarousel()
- @objc public static func addOpenedFromPushNotification()
- @objc public func addArticleViewedEvent()
- @objc public func addArticleFailedEvent(errorCode: Foundation.NSNumber)
- @objc public func addHappyReactionEvent()
- @objc public func addNeutralReactionEvent()
- @objc public func addSadReactionEvent(conversationOptionShown: Swift.Bool)
- @objc public func addNewConversationFromArticleEvent(accessToTeammate: Swift.Bool)
- @objc deinit
- @objc override dynamic public init()
-}
-@objc public protocol NativeArticleReactionsViewDelegate {
- @objc func selectedReactionIndex(_ reactionIdex: Swift.Int)
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NativeArticleReactionsView : UIKit.UIView {
- @objc public static var sadReactionIndex: Swift.Int
- @objc public static var neutralReactionIndex: Swift.Int
- @objc public static var happyReactionIndex: Swift.Int
- @objc weak public var articleDelegate: NativeArticleReactionsViewDelegate?
- @objc deinit
-}
-extension Intercom {
- public class func fetchHelpCenterCollections(completion: @escaping (Swift.Result<[HelpCenterCollection], ICMHelpCenterDataError>) -> Swift.Void)
- public class func fetchHelpCenterCollection(_ collectionId: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void)
- public class func searchHelpCenter(_ searchTerm: Swift.String, completion: @escaping (Swift.Result<[HelpCenterArticleSearchResult], ICMHelpCenterDataError>) -> Swift.Void)
-}
-@_hasMissingDesignatedInitializers @objc public class HelpCenterContainerViewController : UIKit.UIViewController {
- @objc public convenience init(withCollections collectionIds: [Swift.String])
- @objc public convenience init(withCollection collectionId: Swift.String)
- @objc dynamic public init()
- @objc public convenience init(fromSearchBrowse: Swift.Bool)
- @objc override dynamic public func viewDidLoad()
- @objc override dynamic public func viewDidLayoutSubviews()
- @objc deinit
- @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
-}
-extension HelpCenterContainerViewController : Intercom_Private.ICMErrorViewDelegate {
- @objc dynamic public func didSelectErrorAction()
-}
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/armv7.swiftdoc b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/armv7.swiftdoc
deleted file mode 100644
index 8b2fac3f..00000000
Binary files a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/armv7.swiftdoc and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/armv7.swiftinterface b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/armv7.swiftinterface
deleted file mode 100644
index d92cd668..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/Intercom.swiftmodule/armv7.swiftinterface
+++ /dev/null
@@ -1,91 +0,0 @@
-// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28)
-// swift-module-flags: -target armv7-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Intercom
-import Foundation
-@_exported import Intercom
-import Intercom_Private
-import Swift
-import UIKit
-import os.log
-import os
-@objc public protocol HelpCenterStartConversationViewDelegate {
- @objc func didSelectStartConversation()
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterStartConversationView : UIKit.UIView {
- @objc weak public var startConversationDelegate: HelpCenterStartConversationViewDelegate?
- @objc deinit
-}
-@_hasMissingDesignatedInitializers @objc public class AvailableTeammatesView : UIKit.UIStackView {
- @objc override dynamic public init(frame: CoreGraphics.CGRect)
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(ICMSearchBrowseView) public class SearchBrowseView : UIKit.UIView {
- @objc override dynamic public convenience init(frame: CoreGraphics.CGRect)
- public init(_ frame: CoreGraphics.CGRect, _ config: Intercom_Private.ICMConfigProtocol = ICMConfig.shared())
- @objc public func searchHelpArticlesAction()
- @objc public func heightForCard(width: CoreGraphics.CGFloat) -> CoreGraphics.CGFloat
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterDataService : ObjectiveC.NSObject {
- @objc override dynamic public init()
- @objc public func fetchCollections(completion: @escaping ([HelpCenterCollection]?, Swift.Error?) -> Swift.Void)
- @objc public func fetchCollection(collectionId: Swift.String, completion: @escaping (HelpCenterCollectionContent?, Swift.Error?) -> Swift.Void)
- @objc public func searchResults(for searchTerm: Swift.String, completion: @escaping ([HelpCenterArticleSearchResult]?, Swift.Error?) -> Swift.Void)
- @objc deinit
-}
-@objc @objcMembers public class ArticleMetaData : ObjectiveC.NSObject {
- @objc public static var searchBrowseSource: Swift.String
- @objc public var articleId: Swift.String?
- @objc public var articleSource: Swift.String?
- @objc public init(id: Swift.String?, source: Swift.String?)
- @objc deinit
- @objc override dynamic public init()
-}
-@_inheritsConvenienceInitializers @objc public class HelpCenterMetricService : ObjectiveC.NSObject {
- @objc public var contextIsSearchBrowse: Swift.Bool
- @objc public static func addSearchBrowseViewedEvent(homeScreenIndex: Swift.Int)
- @objc public static func addOpenedFromAPIEvent()
- @objc public static func addOpenedArticleFromAPIEvent()
- @objc public static func addOpenedFromConversationEvent()
- @objc public static func addOpenedFromInAppEvent()
- @objc public static func addOpenedFromLegacySearchAppEvent()
- @objc public static func addOpenedFromMessengerHomeAppEvent()
- @objc public static func addOpenedFromCarousel()
- @objc public static func addOpenedFromPushNotification()
- @objc public func addArticleViewedEvent()
- @objc public func addArticleFailedEvent(errorCode: Foundation.NSNumber)
- @objc public func addHappyReactionEvent()
- @objc public func addNeutralReactionEvent()
- @objc public func addSadReactionEvent(conversationOptionShown: Swift.Bool)
- @objc public func addNewConversationFromArticleEvent(accessToTeammate: Swift.Bool)
- @objc deinit
- @objc override dynamic public init()
-}
-@objc public protocol NativeArticleReactionsViewDelegate {
- @objc func selectedReactionIndex(_ reactionIdex: Swift.Int)
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NativeArticleReactionsView : UIKit.UIView {
- @objc public static var sadReactionIndex: Swift.Int
- @objc public static var neutralReactionIndex: Swift.Int
- @objc public static var happyReactionIndex: Swift.Int
- @objc weak public var articleDelegate: NativeArticleReactionsViewDelegate?
- @objc deinit
-}
-extension Intercom {
- public class func fetchHelpCenterCollections(completion: @escaping (Swift.Result<[HelpCenterCollection], ICMHelpCenterDataError>) -> Swift.Void)
- public class func fetchHelpCenterCollection(_ collectionId: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void)
- public class func searchHelpCenter(_ searchTerm: Swift.String, completion: @escaping (Swift.Result<[HelpCenterArticleSearchResult], ICMHelpCenterDataError>) -> Swift.Void)
-}
-@_hasMissingDesignatedInitializers @objc public class HelpCenterContainerViewController : UIKit.UIViewController {
- @objc public convenience init(withCollections collectionIds: [Swift.String])
- @objc public convenience init(withCollection collectionId: Swift.String)
- @objc dynamic public init()
- @objc public convenience init(fromSearchBrowse: Swift.Bool)
- @objc override dynamic public func viewDidLoad()
- @objc override dynamic public func viewDidLayoutSubviews()
- @objc deinit
- @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
-}
-extension HelpCenterContainerViewController : Intercom_Private.ICMErrorViewDelegate {
- @objc dynamic public func didSelectErrorAction()
-}
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/module.modulemap b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/module.modulemap
deleted file mode 100644
index 4c58a732..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/module.modulemap
+++ /dev/null
@@ -1,33 +0,0 @@
-// Module map for Intercom.framework. Module map documentation is here: https://clang.llvm.org/docs/Modules.html#module-map-language
-framework module Intercom {
- // The umbrella header acts as the default header for the module. It should import all other required headers.
- // This defines what is imported with `import Intercom`, `@import Intercom;` or `#import `
- // Any header not imported by the umbrella header must have an explicit header declaration (see the Experimental submodule below)
- umbrella header "Intercom.h"
-
- // This exports all modules imported by the umbrella header
- export *
-
- // `module *` defines that all headers imported in the umbrella are themselves submodules
- // `{ export * }` here exports any modules imported by these submodules
- module * { export * }
-
- // When a new system library is required, it should be added here
- link "icucore"
- link "xml2"
-
- // When a new system framework is required, it should be added here
- link framework "Foundation"
- link framework "UIKit"
- link framework "Accelerate"
- link framework "Photos"
- link framework "AudioToolbox"
- link framework "CFNetwork"
- link framework "CoreGraphics"
- link framework "ImageIO"
- link framework "MobileCoreServices"
- link framework "QuartzCore"
- link framework "Security"
- link framework "SystemConfiguration"
- link framework "WebKit"
-}
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/module.private.modulemap b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/module.private.modulemap
deleted file mode 100644
index dcfc1d52..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/module.private.modulemap
+++ /dev/null
@@ -1,30 +0,0 @@
- framework module Intercom_Private {
- header "ICMAssets.h"
- header "ICMHTTPClientProtocol.h"
- header "ICMHTTPClient.h"
- header "ICMTranslationManager.h"
- header "ICMHelpCenterTranslationManager.h"
- header "ICMTranslationKeys.h"
- header "ICMEngine.h"
- header "ICMNavigationController.h"
- header "ICMErrorViewController.h"
- header "ICMLoadingViewController.h"
- header "ICMNavigationBarCloseButton.h"
- header "ICMErrorViewDelegate.h"
- header "ICMColor.h"
- header "ICMArticleWebViewController.h"
- header "ICMContentViewControllerDelegate.h"
- header "ICMContentViewController.h"
- header "ICMUtils.h"
- header "UIImage+ICMImageUtils.h"
- header "ICMFeedbackGenerator.h"
- header "ICMActiveAdminsAvatarView.h"
- header "ICMStartConversationButton.h"
- header "ICMConfig.h"
- header "ICMSafeNetworkModel.h"
- header "ICMPresentationManager.h"
- header "ICMMetric.h"
- header "ICMMetricEvent.h"
- export *
-}
-
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMActiveAdminsAvatarView.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMActiveAdminsAvatarView.h
deleted file mode 100644
index b793f183..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMActiveAdminsAvatarView.h
+++ /dev/null
@@ -1,19 +0,0 @@
-//
-// ICMActiveAdminsAvatarView.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael Isaakidis on 17/05/2018.
-// Copyright © 2018 Intercom. All rights reserved.
-//
-
-#import
-
-@interface ICMActiveAdminsAvatarView : UIView
-
-- (instancetype)initWithHeight:(CGFloat)avatarHeight
- overlap:(CGFloat) avatarOverlap
- maxCount:(NSInteger) maxAvatarCount;
-- (NSUInteger)numberOfAvatarsDisplayed;
-- (void)updateVisibleAvatars;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMArticleWebViewController.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMArticleWebViewController.h
deleted file mode 100644
index f403b383..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMArticleWebViewController.h
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// ICMArticleWebViewController.m
-// IntercomSDK-Dynamic
-//
-// Created by Katherine Brennan on 02/10/2020.
-// Copyright © 2020 Intercom. All rights reserved.
-//
-
-#import
-#import "ICMContentViewController.h"
-@class HelpCenterMetricService;
-
-@protocol ICMContentViewControllerDelegate;
-
-@interface ICMArticleWebViewController : UIViewController
-
-@property (nonatomic, weak) id contentDelegate;
-- (instancetype)initWithId:(NSString *)articleId metricService:(id)metricService;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMAssets.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMAssets.h
deleted file mode 100644
index e6811553..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMAssets.h
+++ /dev/null
@@ -1,98 +0,0 @@
-//
-// Created by Ignacio Delgado on 17/04/2014.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#import
-#import
-
-@interface ICMAssets : NSObject
-
-+ (UIImage *)intercomLogoImage;
-
-+ (UIImage *)openPostFromCardImage;
-
-+ (UIImage *)spinnerImage;
-
-+ (UIImage *)defaultAvatarImageWithInitials:(NSString *)userInitials diameter:(CGFloat)diameter; // if there are initials, show them; if not, fall back to image
-+ (UIImage *)warningImage;
-
-+ (UIImage *)backButtonImage;
-+ (UIImage *)submitButtonBackgroundImage;
-+ (UIImage *)submitButtonBackgroundImageClear;
-+ (UIImage *)submitImage;
-+ (UIImage *)pickerSelector;
-+ (UIImage *)dateSelector;
-+ (UIImage *)greenCheckImage;
-+ (UIImage *)buttonLoadingImage;
-+ (UIImage *)textFieldBackgroundImage;
-+ (UIImage *)textFieldErrorBackgroundImage;
-+ (UIImage *)booleanButtonLeftImage;
-+ (UIImage *)booleanButtonLeftImageSelected;
-+ (UIImage *)booleanButtonRightImage;
-+ (UIImage *)booleanButtonRightImageSelected;
-
-+ (UIImage *)closePostImage;
-+ (UIImage *)closeNoteImage;
-+ (UIImage *)closeImage;
-
-+ (UIImage *)startConversationImage;
-+ (UIImage *)askAQuestion;
-
-+ (UIImage *)messageFailedImage;
-
-+ (UIImage *)uploadButtonImage;
-+ (UIImage *)chatBubbleImage;
-
-+ (UIImage *)launcherImage;
-
-+ (UIImage *)twitterIcon;
-+ (UIImage *)linkedinIcon;
-
-+ (UIImage *)snoozeIcon;
-
-+ (UIImage *)sendIcon;
-+ (UIImage *)cancelIcon;
-+ (UIImage *)undoIcon;
-
-+ (UIImage *)homescreenFailedImage;
-+ (UIImage *)searchIcon;
-
-// Help Center
-+ (UIImage *)helpCenterLoadingImage;
-+ (UIImage *)helpCenterChevron;
-
-// Carousel
-+ (UIImage *)screenActionCheckmark;
-+ (UIImage *)carouselLoadingImage;
-
-// Articles
-+ (UIImage *)articleLoadingImage;
-
-// Teammate Profile
-+ (UIImage *)teammateTimeIcon;
-+ (UIImage *)teammateRoleIcon;
-+ (UIImage *)teammateIntroIcon;
-
-//Text Input
-+ (UIImage *)textInputIcon;
-+ (UIImage *)textInputSelectedIcon;
-
-//Photo Input
-+ (UIImage *)photoInputIcon;
-+ (UIImage *)photoInputSelectedIcon;
-+ (UIImage *)expandPhotosIcon;
-
-//GIF Input
-+ (UIImage *)gifInputIcon;
-+ (UIImage *)gifInputSelectedIcon;
-
-+ (UIImage *)footerLinkIcon;
-
-// Sounds
-+ (NSURL *)soundForMessageSending;
-+ (NSURL *)soundForMessageSendingFailure;
-+ (NSURL *)soundForIncomingAdminMessage;
-+ (NSURL *)soundForIncomingOperatorMessage;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMAutoLayout.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMAutoLayout.h
deleted file mode 100644
index 9e5669cf..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMAutoLayout.h
+++ /dev/null
@@ -1,193 +0,0 @@
-//
-// ICMAutoLayout.h
-// Pods
-//
-// Created by James Treanor on 16/04/2015.
-//
-//
-
-#import
-
-typedef NS_OPTIONS(NSUInteger, ICM_JRTViewPinEdges)
-{
- /// Pins the top edge of an item.
- ICM_JRTViewPinTopEdge = 1 << 0,
-
- /// Pins the right edge of an item.
- ICM_JRTViewPinRightEdge = 1 << 1,
-
- /// Pins the bottom edge of an item.
- ICM_JRTViewPinBottomEdge = 1 << 2,
-
- /// Pins the left edge of an item.
- ICM_JRTViewPinLeftEdge = 1 << 3,
-
- /// Pins all edges of an item.
- ICM_JRTViewPinAllEdges = ~0UL
-};
-
-@interface ICMAutoLayout : NSObject
-
-/**
- * @name Centering Views
- */
-
-/**
- * Centers the receiver in the superview on a specified axis.
- *
- * @param axis The axis of the superview you wish to center the receiver in. This parameter accepts `NSLayoutAttributeCenterX` or `NSLayoutAttributeCenterY`.
- *
- * @return The `NSLayoutConstraint` generated by this method.
- */
-+(NSLayoutConstraint *)centerView:(UIView *)primaryView inContainerOnAxis:(NSLayoutAttribute)axis;
-
-/**
- * Centers the receiver in the superview on a specified axis.
- *
- * @param axis The axis of the superview you wish to center the receiver in. This parameter accepts `NSLayoutAttributeCenterX` or `NSLayoutAttributeCenterY`.
- * @param constant Constraint constant value.
- *
- * @return The `NSLayoutConstraint` generated by this method.
-*/
-
-+ (NSLayoutConstraint *)centerView:(UIView *)primaryView inContainerOnAxis:(NSLayoutAttribute)axis withConstant:(CGFloat)constant;
-
-/**
- * Centers the receiver in the superview on a specified axis.
- *
- * @param axis The axis of the superview you wish to center the receiver in. This parameter accepts `NSLayoutAttributeCenterX` or `NSLayoutAttributeCenterY`.
- * @param constant Constraint constant value.
- * @param priority Constraint priority value.
- *
- * @return The `NSLayoutConstraint` generated by this method.
-*/
-
-+ (NSLayoutConstraint *)centerView:(UIView *)primaryView inContainerOnAxis:(NSLayoutAttribute)axis withConstant:(CGFloat)constant withPriority:(UILayoutPriority)priority;
-
-/**
- * @name Constraining to a fixed size
- */
-
-/**
- * Constrains the receiver to a fixed size.
- * @warning Setting an axis to 0.0 will result in no constraint being applied to that axis.
- *
- * @param size The size to constrain the receiver to.
- *
- * @return An array of `NSLayoutConstraint` objects generated by this method.
- */
-+(NSArray *)constrainView:(UIView *)primaryView toSize:(CGSize)size;
-
-/**
- * Constrains the receiver to a fixed width.
- *
- * @param width The width to constrain the receiver to
- *
- * @return The `NSLayoutConstraint` generated by this method.
- */
-+(NSLayoutConstraint *)constrainView:(UIView *)primaryView toWidth:(CGFloat)width;
-
-/**
- * Constrains the receiver to a fixed width.
- *
- * @param width The width to constrain the receiver to
- * @param priority The UILayoutPriority of the constraint
- *
- * @return The `NSLayoutConstraint` generated by this method.
-*/
-
-+(NSLayoutConstraint *)constrainView:(UIView *)primaryView toWidth:(CGFloat)width withPriority:(UILayoutPriority)priority;
-
-/**
- * Constrains the receiver to a fixed height.
- *
- * @param height The height to constrain the receiver to
- *
- * @return The `NSLayoutConstraint` generated by this method.
- */
-+(NSLayoutConstraint *)constrainView:(UIView *)primaryView toHeight:(CGFloat)height;
-
-/**
- * Constrains the receiver to a fixed height.
- *
- * @param height The height to constrain the receiver to
- * @param priority The UILayoutPriority of the constraint
- *
- * @return The `NSLayoutConstraint` generated by this method.
-*/
-+ (NSLayoutConstraint *)constrainView:(UIView *)primaryView toHeight:(CGFloat)height withPriority:(UILayoutPriority)priority;
-
-/**
- * @name Pinning to other items
- */
-
-/**
- * Pins an attribute to any valid attribute of the peer item. The item may be the layout guide of a view controller.
- *
- * @param attribute The attribute of the receiver that you want to pin.
- * @param toAttribute The attribute of the `peerView` that you want to pin.
- * @param peerItem The item that you want to pin the receiver to. (either `UIView` or `UILayoutSupport`).
- *
- * @return The `NSLayoutConstraint` generated by this method.
- */
-+(NSLayoutConstraint *)pinView:(UIView *)primaryView attribute:(NSLayoutAttribute)attribute toAttribute:(NSLayoutAttribute)toAttribute ofItem:(id)peerItem;
-
-/**
- * Pins an attribute to any valid attribute of the peer item. The item may be the layout guide of a view controller. Provide a constant for offset/inset.
- *
- * @param attribute The attribute of the receiver that you want to pin.
- * @param toAttribute The attribute of the `peerView` that you want to pin.
- * @param peerItem The item that you want to pin the receiver to. (either `UIView` or `UILayoutSupport`).
- * @param constant The constant that you want to apply to the constraint.
- *
- * @return The `NSLayoutConstraint` generated by this method.
- */
-+(NSLayoutConstraint *)pinView:(UIView *)primaryView attribute:(NSLayoutAttribute)attribute toAttribute:(NSLayoutAttribute)toAttribute ofItem:(id)peerItem withConstant:(CGFloat)constant;
-
-/**
- * Pins an attribute to any valid attribute of the peer item. The item may be the layout guide of a view controller. Provide a constant for offset/inset along with a relation.
- *
- * @param attribute The attribute of the receiver that you want to pin.
- * @param toAttribute The attribute of the `peerView` that you want to pin.
- * @param peerItem The item that you want to pin the receiver to. (either `UIView` or `UILayoutSupport`).
- * @param constant The constant that you want to apply to the constraint.
- * @param relation The relation that you wish to apply to the constraint.
- *
- * @return The `NSLayoutConstraint` generated by this method.
- */
-+(NSLayoutConstraint *)pinView:(UIView *)primaryView attribute:(NSLayoutAttribute)attribute toAttribute:(NSLayoutAttribute)toAttribute ofItem:(id)peerItem withConstant:(CGFloat)constant relation:(NSLayoutRelation)relation;
-
-/**
- * Pins the receivers edge(s) to another views edge(s). Both views must be in the same view hierarchy.
- *
- * @param edges The edges that should be pinned to the peerView's edges.
- * @param peerView The view that the receiver is being pinned to.
- *
- * @return An array of `NSLayoutConstraint` objects generated by this method.
- */
-+(NSArray *)pinView:(UIView *)primaryView edges:(ICM_JRTViewPinEdges)edges toSameEdgesOfView:(UIView *)peerView;
-
-/**
- * Pins the receivers edge(s) to another views edge(s). Both views must be in the same view hierarchy.
- *
- * @param edges The edges that should be pinned to the peerView's edges.
- * @param peerView The view that the receiver is being pinned to.
- * @param inset The inset that is applied to the attributes.
- *
- * @return An array of `NSLayoutConstraint` objects generated by this method.
- */
-+(NSArray *)pinView:(UIView *)primaryView edges:(ICM_JRTViewPinEdges)edges toSameEdgesOfView:(UIView *)peerView inset:(CGFloat)inset;
-
-/**
- * Pins the receivers edge(s) to another views edge(s). Both views must be in the same view hierarchy.
- *
- * @param edges The edges that should be pinned to the peerView's edges.
- * @param peerView The view that the receiver is being pinned to.
- * @param inset The inset that is applied to the attributes.
- * @param priority The resulting constraints' priorities.
- *
- * @return An array of `NSLayoutConstraint` objects generated by this method.
-*/
-+ (NSArray *)pinView:(UIView *)primaryView edges:(ICM_JRTViewPinEdges)edges toSameEdgesOfView:(UIView *)peerView inset:(CGFloat)inset withPriority:(UILayoutPriority)priority;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMColor.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMColor.h
deleted file mode 100644
index 3e462378..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMColor.h
+++ /dev/null
@@ -1,105 +0,0 @@
-#import
-#import
-
-@interface ICMColor : NSObject
-
-+ (UIColor *)primaryColor;
-
-+ (UIColor *)darkPrimaryColor;
-+ (UIColor *)primaryTextColor;
-+ (UIColor *)primaryColorVariant;
-+ (UIColor *)primaryOrDarkColor;
-+ (UIColor *)whiteOrDarkForPrimaryColor;
-+ (UIColor *)secondaryColor;
-+ (UIColor *)darkSecondaryColor;
-+ (UIColor *)secondaryTextColor;
-+ (UIColor *)secondaryColorVariant;
-+ (UIColor *)helpCenterThemeColor;
-+ (UIColor *)helpCenterTextColor;
-+ (UIColor *)helpCenterSearchPlaceholderColor;
-+ (UIColor *)helpCenterSearchBarBackgroundColor;
-+ (UIColor *)bubbleTextColorUser;
-+ (UIColor *)bubbleFillColorUser;
-+ (UIColor *)launcherImageColor;
-+ (UIColor *)intercomLinkColor;
-+ (UIColor *)conversationAccessoryViewTextColor;
-+ (UIColor *)composerSeparatorColor;
-+ (UIColor *)inAppsTitleColor;
-
-
-#pragma mark - Colour Palette
-
-+ (UIColor *)ghostWhite;
-+ (UIColor *)dark;
-+ (UIColor *)charcoalGrey;
-+ (UIColor *)coolGrey;
-+ (UIColor *)mercuryGrey;
-+ (UIColor *)silver;
-+ (UIColor *)intercomBlue;
-+ (UIColor *)errorColor;
-+ (UIColor *)closeButtonDarkColor;
-+ (UIColor *)closeButtonDarkColorWithAlpha:(CGFloat)alpha;
-+ (UIColor *)closeButtonLightColor;
-+ (UIColor *)closeButtonLightColorWithAlpha:(CGFloat)alpha;
-+ (BOOL)isLightColor:(UIColor *)backgroundColor;
-
-
-#pragma mark - System color backports
-
-/// A backport of `systemGray5` which is available from iOS 13.0+. This should be deleted when dropping iOS 12.
-+ (UIColor *)systemGray5;
-
-
-#pragma mark - Active/Away States
-
-+ (UIColor *)activeColour;
-+ (UIColor *)awayColour;
-
-
-#pragma mark - Button colors
-
-/**
- * Calculates and returns a darker version of the passed in color. This should be used as the text color of an ICMButton.
- *
- * @param color The original color.
- * @return The darker color to be used as the text color of an ICMButton.
-*/
-+ (UIColor *)buttonTextColorVarient:(UIColor *)color;
-
-/**
- * Calculates and returns a lighter version of the passed in color. This should be used as the background of an ICMButton.
- *
- * @param color The original color.
- * @return The lighter color to be used as the background of an ICMButton.
-*/
-+ (UIColor *)buttonBackgroundColorVarient:(UIColor *)color;
-
-/**
- * Calculates and returns a darker version of the passed in colour. This should be used as the background color of an ICMButton while it is being tapped.
- *
- * @param color The original color.
- * @return The darker color to be used as the background of am ICMButton while it is being tapped.
-*/
-+ (UIColor *)buttonHighlightColor:(UIColor *)color;
-
-
-#pragma mark - Colour Utils
-
-+ (UIColor *)colorWithR:(int)r g:(int)g b:(int)b;
-+ (UIColor *)colorWithR:(int)r g:(int)g b:(int)b alpha:(CGFloat)alpha;
-+ (UIColor *)colorWithHexString:(NSString *)hexString;
-
-/**
- * Fades between firstColor and secondColor at the specified ratio:
- *
- * @ ratio 0.0 - fully firstColor
- * @ ratio 0.5 - halfway between firstColor and secondColor
- * @ ratio 1.0 - fully secondColor
- *
- */
-
-+ (UIColor *)colorForFadeBetweenFirstColor:(UIColor *)firstColor
- secondColor:(UIColor *)secondColor
- atRatio:(CGFloat)ratio;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMConfig.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMConfig.h
deleted file mode 100644
index b68707e9..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMConfig.h
+++ /dev/null
@@ -1,78 +0,0 @@
-#import
-#import "ICMSafeNetworkModel.h"
-
-static NSString *const kICMIntercomConfigChangedNotification = @"kICMIntercomConfigChangedNotification";
-static NSString *const kICMMessengerBackgroundImageLoadedNotification = @"kICMMessengerBackgroundImageLoadedNotification";
-static NSString *const kICMMessengerLogoImageLoadedNotification = @"kICMMessengerLogoImageLoadedNotification";
-
-@protocol ICMConfigProtocol
-@property (readonly) BOOL inboundMessages;
-@property (readonly) BOOL accessToTeammateEnabled;
-@property (readonly) BOOL helpCenterRequireSearch;
-@end
-
-@interface ICMConfig : ICMSafeNetworkModel
-
-@property (nonatomic, copy) NSString *primaryColorString;
-@property (nonatomic, copy) NSString *secondaryColorString;
-@property (nonatomic, copy) NSString *appName;
-@property (nonatomic, copy) NSString *teamIntro;
-@property (nonatomic, copy) NSString *messengerBackgroundImageUrlString;
-@property (nonatomic, copy) NSString *messengerLogoUrlString;
-@property (nonatomic, copy) NSString *teamGreeting;
-@property (nonatomic, copy) NSString *launcherAlignment;
-@property (nonatomic, copy) NSString *temporaryExpectationsMessage;
-@property (nonatomic, assign) NSUInteger homescreenCardCount;
-@property (nonatomic, assign) NSInteger launcherBottomPadding;
-
-@property (nonatomic, assign) BOOL inboundMessages;
-@property (nonatomic, assign) BOOL attachmentsEnabled;
-@property (nonatomic, assign) BOOL gifsEnabled;
-@property (nonatomic, assign) BOOL showIntercomLink;
-@property (nonatomic, assign) BOOL audioEnabled;
-@property (nonatomic, assign) BOOL metricsEnabled;
-@property (nonatomic, assign) BOOL backgroundRequestsEnabled;
-@property (nonatomic, assign) BOOL shouldDisplayDarkPrimaryColor;
-@property (nonatomic, assign) BOOL shouldDisplayDarkSecondaryColor;
-@property (nonatomic, assign) BOOL shouldDisplayDarkHelpCenterColor;
-@property (nonatomic, assign) BOOL identityVerificationEnabled;
-@property (nonatomic, assign) BOOL accessToTeammateEnabled;
-@property (nonatomic, assign) BOOL helpCenterRequireSearch;
-
-@property (nonatomic, assign) NSTimeInterval userUpdateDupCacheMaxAge;
-@property (nonatomic, assign) NSTimeInterval newSessionThreshold;
-@property (nonatomic, assign) NSTimeInterval batchUserUpdatePeriod;
-@property (nonatomic, assign) NSTimeInterval softResetTimeout;
-@property (nonatomic, assign) NSTimeInterval pingDelay;
-
-@property (nonatomic, assign) NSTimeInterval rateLimitPeriod;
-@property (nonatomic, assign) NSUInteger rateLimit;
-
-@property (nonatomic, copy) NSString *helpCenterUrlString;
-@property (nonatomic, copy) NSArray *helpCenterUrlStrings;
-@property (nonatomic, copy) NSString *helpCenterBaseColorString;
-
-@property (nonatomic, strong) NSLocale *intercomLocale;
-@property (nonatomic, strong) NSLocale *helpCenterLocale;
-@property (nonatomic, strong) NSSet *features;
-
-+ (instancetype)instanceFromDictionary:(NSDictionary *)aDictionary;
-
-+ (void)updateSharedInstanceFromDictionary:(NSDictionary *)aDictionary;
-
-+ (instancetype)sharedConfig;
-+ (void)deleteSharedConfig;
-
-- (BOOL)isEqualToConfig:(ICMConfig *)other;
-- (void)saveIfNeeded;
-- (void)save;
-- (UIImage *)messengerBackgroundImage;
-- (UIImage *)messengerLogoImage;
-- (UIColor *)primaryColor;
-- (UIColor *)secondaryColor;
-- (UIColor *)helpCenterBaseColor;
-- (BOOL)hasFeature:(NSString *)feature;
-- (BOOL)receivedFromServer;
-- (BOOL)useDefaultLauncherAlignment;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMContentViewController.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMContentViewController.h
deleted file mode 100644
index 1f2f47b1..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMContentViewController.h
+++ /dev/null
@@ -1,27 +0,0 @@
-//
-// ICMContentViewController.h
-// IntercomSDK
-//
-// Created by Michael McNamara on 05/10/2020.
-// Copyright © 2020 Intercom. All rights reserved.
-//
-
-#import
-#import "ICMContentViewControllerDelegate.h"
-
-NS_ASSUME_NONNULL_BEGIN
-
-@protocol ICMContentViewController
-
-@property (nonatomic, weak) id contentDelegate;
-
-@required
-- (void)reload;
-
-@optional
-- (void)closeButtonTapped;
-- (void)viewDidDismissBySwipe;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMContentViewControllerDelegate.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMContentViewControllerDelegate.h
deleted file mode 100644
index 3f896f0b..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMContentViewControllerDelegate.h
+++ /dev/null
@@ -1,26 +0,0 @@
-//
-// ICMContentViewControllerDelegate.h
-// IntercomSDK
-//
-// Created by Michael McNamara on 30/03/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@protocol ICMContentViewControllerDelegate
-
-@required
-- (void)contentDidLoadWithDismissEnabled:(BOOL)dismissEnabled;
-- (void)showLoadingViewWithImage:(UIImage *)image;
-- (void)contentLoadingDidFail:(NSString *)errorMessage
- showActionButton:(BOOL)showActionButton
- actionButtonTitle:(NSString * _Nullable)actionButtonTitle;
-- (void)configureCloseButtonForBackgroundColor:(UIColor *)backgroundColor;
-- (void)closeContentModal;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMEngine.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMEngine.h
deleted file mode 100644
index ff013fe4..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMEngine.h
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// ICMEngine.h
-// Intercom
-//
-// Created by Brian Boyle on 16/08/2016.
-//
-//
-
-@protocol ICMFileUploadConfig;
-
-typedef void (^ICMHTTPEmptySuccess)(void);
-typedef void (^ICMHTTPClientError) (NSError *error);
-typedef void (^ICMHTTPClientProgress) (double progress);
-
-@interface ICMEngine : NSObject
-
-- (void)requestWithoutRedirects:(NSURLRequest *)request success:(ICMHTTPEmptySuccess)success failure:(ICMHTTPClientError)failure;
-- (NSURLSessionUploadTask *)uploadFileWithFileName:(NSString *)filename data:(NSData *)data uploadConfig:(id)uploadConfig success:(ICMHTTPEmptySuccess)success progress:(ICMHTTPClientProgress)progress failure:(ICMHTTPClientError)failure;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMErrorViewController.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMErrorViewController.h
deleted file mode 100644
index fe91efc6..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMErrorViewController.h
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-// ICMErrorViewController.h
-// IntercomSDK
-//
-// Created by Roland Gropmair on 12/11/2014.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@protocol ICMErrorViewDelegate;
-
-@interface ICMErrorViewController : UIViewController
-
-@property (nonatomic, weak) id errorDelegate;
-
-- (instancetype)initWithTitle:(NSString *)title showActionButton:(BOOL)showRetryButton actionButtonTitle:(NSString * _Nullable)retryButtonTitle;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMErrorViewDelegate.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMErrorViewDelegate.h
deleted file mode 100644
index ec703d62..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMErrorViewDelegate.h
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// ICMErrorViewDelegate.h
-// IntercomSDK-Dynamic
-//
-// Created by Brian Boyle on 29/03/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@protocol ICMErrorViewDelegate
-
-@optional
-- (void) didSelectErrorAction;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMFeedbackGenerator.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMFeedbackGenerator.h
deleted file mode 100644
index 3548df4a..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMFeedbackGenerator.h
+++ /dev/null
@@ -1,22 +0,0 @@
-//
-// ICMFeedbackGenerator.h
-// IntercomSDK
-//
-// Created by Michael Isaakidis on 31/08/2018.
-// Copyright © 2018 Intercom. All rights reserved.
-//
-
-#import
-
-typedef NS_ENUM(NSUInteger, ICMFeedbackGeneratorType) {
- ICMFeedbackGeneratorTypeSelection,
- ICMFeedbackGeneratorTypeError,
- ICMFeedbackGeneratorTypeSuccess,
- ICMFeedbackGeneratorTypeWarning,
-};
-
-@interface ICMFeedbackGenerator : NSObject
-
-+ (void)feedbackWithType:(ICMFeedbackGeneratorType)type;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMHTTPClient.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMHTTPClient.h
deleted file mode 100644
index a8285c55..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMHTTPClient.h
+++ /dev/null
@@ -1,173 +0,0 @@
-//
-// Created by Ignacio Delgado on 15/04/2014.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#import
-#import "ICMHTTPClientProtocol.h"
-
-@class ArticleMetaData;
-
-@interface ICMHTTPClient : NSObject
-
-#pragma mark - User Updates
-
-+ (void)updateUserWithUserAttributes:(NSDictionary *)attributes
- newSession:(BOOL)newSession
- sentFromBackground:(BOOL)sentFromBackground
- carouselVisible:(BOOL)carouselCurrentlyPresented
- success:(ICMHTTPBaseSuccess)success
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Push Notification Tokens
-
-+ (void)submitDeviceToken;
-+ (void)deleteDeviceToken:(NSString *)deviceTokenString
- forUserIdentity:(ICMUserIdentity *)userIdentity
- completion:(ICMHTTPEmptyBlock)completion;
-
-
-#pragma mark - Events
-
-+ (void)logEventWithName:(NSString *)name
- metadata:(NSDictionary *)metadata
- sentFromBackground:(BOOL)sentFromBackground
- carouselVisible:(BOOL)carouselCurrentlyPresented
- success:(ICMHTTPBaseSuccess)success
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Conversations
-
-+ (void)markConversationAsRead:(NSString *)conversationId success:(ICMHTTPBaseSuccess)success error:(ICMHTTPClientError)failure;
-+ (void)markConversationAsDismissed:(NSString *)conversationId success:(ICMHTTPEmptySuccess)success error:(ICMHTTPClientError)failure;
-+ (void)recordInteractions:(NSString *)conversationId
- interactions:(NSArray *)interactions;
-+ (void)unreadConversations:(NSInteger)pageSize success:(ICMHTTPBaseSuccess)success error:(ICMHTTPClientError)failure;
-+ (void)conversationsBefore:(NSDate *)beforeTimestamp pageSize:(NSInteger)pageSize success:(ICMHTTPConversationsSuccess)success error:(ICMHTTPClientError)failure;
-
-/// Create a new conversation.
-/// @param blocks The blocks.
-/// @param articleMetaData If a conversation is started from an article, the articleId should be passed through. This allows teammates know what article a conversation was started from. The articleSource will also be included when Help Center when opened from the Search/Browse card
-/// @param success Success completion block.
-/// @param failure Failure completion block.
-+ (void)createConversationWithBlocks:(NSArray *)blocks
- articleMetaData:(ArticleMetaData *)articleMetaData
- success:(ICMHTTPConversationSuccess)success
- error:(ICMHTTPClientError)failure;
-+ (void)replyToConversation:(NSString *)conversationId
- withBlocks:(NSArray *)blocks
- success:(ICMHTTPReplyConversationSuccess)success
- error:(ICMHTTPClientError)failure;
-
-+ (void)reactToConversation:(NSString *)conversationId withReactionIndex:(NSUInteger)index;
-+ (void)conversationDetail:(NSString *)conversationId success:(ICMHTTPConversationSuccess)success error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Conversation Ratings
-
-+ (void)rateConversation:(NSString *)conversationId withRatingIndex:(NSUInteger)ratingIndex;
-+ (void)addConversationRatingRemarkForConversation:(NSString *)conversationId remark:(NSString *)remark;
-
-
-#pragma mark - Articles
-
-+ (void)article:(NSString *)articleId success:(ICMHTTPArticleSuccess)success error:(ICMHTTPClientError)failure;
-+ (void)reactToArticle:(NSString *)articleId articleContentId:(NSString *)articleContentId withReactionIndex:(NSUInteger)index allowAutoResponses:(BOOL)allowAutoResponses articleSource:(NSString *)articleSource;
-
-
-#pragma mark - GIFs
-
-+ (void)loadGIFs:(NSString *)searchQuery
- success:(ICMHTTPGIFSuccess)success
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Metrics
-
-+ (void)submitMetrics:(NSArray *> *)metrics
- opsMetrics:(NSArray *> *)opsMetrics
- success:(ICMHTTPEmptySuccess)success
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Uploads
-
-+ (void)createUploadWithUpload:(ITBUpload *)upload success:(ICMHTTPUploadCreateSuccess)success progress:(ICMHTTPClientProgress)progress error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - URL Tracker
-
-+ (void)trackURL:(NSString *)url;
-
-
-#pragma mark - Operator
-
-+ (void)operatorConditionSatisfied:(NSString *)transitionId
- converstionId:(NSString *)conversationId
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Sheets
-
-+ (void)fetchMessengerSheetData:(NSDictionary *)sheetParams success:(ICMHTTPSheetSuccess)success failure:(ICMHTTPClientError)failure;
-+ (void)submitMessengerSheet:(NSDictionary *)sheetPayload uri:(NSString *)uri success:(ICMHTTPEmptyBlock)success failure:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Homescreen
-
-+ (void)fetchHomescreenWithSuccess:(ICMHTTPHomescreenSuccess)success failure:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Quick Reply
-
-+ (void)quickReplyToConversation:(NSString *)conversationId
- withPartId:(NSString *)quickReplyPartId
- withOptionUUID:(NSString *)uuid
- success:(ICMHTTPReplyConversationSuccess)success
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Attribute Collector
-
-+ (void)submitFormParams:(NSDictionary *)formParams
- forConversation:(NSString *)conversationId
- success:(ICMHTTPSubmitFormSuccess)success
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Inbound Custom Bots
-
-+ (void)triggerInboundBotWithOptionUUID:(NSString *)uuid
- success:(ICMHTTPConversationSuccess)success
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Stats System
-
-+ (void)recordStatistic:(NSString *)statToRecord withInstanceId:(NSString *)instanceId statsMetadata:(NSDictionary *)statsMetadata success:(ICMHTTPBaseSuccess)success error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Carousels
-
-+ (void)getCarouselWithId:(NSString*)carouselId
- success:(ICMHTTPCarouselSuccess)success
- error:(ICMHTTPClientError)failure;
-
-#pragma mark - Help Center
-
-+ (void)getHelpCenterCollections:(ICMHTTPArraySuccess)success
- error:(ICMHTTPClientError)failure;
-
-+ (void)getHelpCenterCollection:(NSString*)collectionId
- success:(ICMHTTPDictionarySuccess)success
- error:(ICMHTTPClientError)failure;
-
-+ (void)getHelpCenterSearchResults:(NSString*)searchText
- source:(NSString*)source
- success:(ICMHTTPArraySuccess)success
- error:(ICMHTTPClientError)failure;
-
-@end
-
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMHTTPClientProtocol.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMHTTPClientProtocol.h
deleted file mode 100644
index 4870426d..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMHTTPClientProtocol.h
+++ /dev/null
@@ -1,63 +0,0 @@
-//
-// ICMHTTPClientProtocol.h
-// IntercomSDK
-//
-// Created by Michael McNamara on 14/04/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#ifndef ICMHTTPClientProtocol_h
-#define ICMHTTPClientProtocol_h
-
-#import "ICMEngine.h"
-
-@class ITBUpload;
-@class ICMConversationsResponse;
-@class ICMConversation;
-@class ICMConversationPart;
-@class ICMArticle;
-@class ICMGIFResponse;
-@class ICMSheet;
-@class ICMHomescreen;
-@class ICMBaseResponse;
-@class ICMCarousel;
-@class ICMUserIdentity;
-
-static const NSInteger kICMHTTPClientDefaultPageSize = 10;
-
-NS_ASSUME_NONNULL_BEGIN
-
-typedef void (^ICMHTTPBaseSuccess)(ICMBaseResponse *response);
-typedef void (^ICMHTTPConversationsSuccess)(ICMConversationsResponse *response);
-typedef void (^ICMHTTPConversationSuccess)(ICMConversation *response);
-typedef void (^ICMHTTPReplyConversationSuccess)(ICMConversationPart *response);
-typedef void (^ICMHTTPUploadCreateSuccess)(NSString * _Nullable publicUrl);
-typedef void (^ICMHTTPArticleSuccess)(ICMArticle *article);
-typedef void (^ICMHTTPGIFSuccess)(ICMGIFResponse *gifResponse);
-typedef void (^ICMHTTPSheetSuccess)(ICMSheet *sheet);
-typedef void (^ICMHTTPHomescreenSuccess)(ICMHomescreen *sheet);
-typedef void (^ICMHTTPEmptyBlock) (void);
-typedef void (^ICMHTTPSubmitFormSuccess)(ICMConversation *response);
-typedef void (^ICMHTTPCarouselSuccess)(ICMCarousel *carousel);
-typedef void (^ICMHTTPArraySuccess)(NSArray *array);
-typedef void (^ICMHTTPDictionarySuccess)(NSDictionary *object);
-
-@protocol ICMHTTPClientProtocol
-+ (void)getHelpCenterCollections:(nullable ICMHTTPArraySuccess)success
- error:(nullable ICMHTTPClientError)failure;
-
-+ (void)getHelpCenterCollection:(nullable NSString*)collectionId
- success:(nullable ICMHTTPDictionarySuccess)success
- error:(nullable ICMHTTPClientError)failure;
-
-+ (void)getHelpCenterSearchResults:(NSString*)searchText
- source:(nullable NSString*)source
- success:(nullable ICMHTTPArraySuccess)success
- error:(nullable ICMHTTPClientError)failure;
-
-@end
-
-NS_ASSUME_NONNULL_END
-
-
-#endif /* ICMHTTPClientProtocol_h */
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMHelpCenterTranslationManager.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMHelpCenterTranslationManager.h
deleted file mode 100644
index 0f28842a..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMHelpCenterTranslationManager.h
+++ /dev/null
@@ -1,19 +0,0 @@
-//
-// ICMHelpCenterTranslationManager.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael McNamara on 16/06/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import "ICMTranslationManager.h"
-
-NS_ASSUME_NONNULL_BEGIN
-
-/// A `ICMTranslationManager` subclass that uses our `help_center_locale` instead of the standard Intercom locale.
-/// This should be used to translate any strings in our native Help Center.
-@interface ICMHelpCenterTranslationManager : ICMTranslationManager
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMLoadingViewController.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMLoadingViewController.h
deleted file mode 100644
index 002c2730..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMLoadingViewController.h
+++ /dev/null
@@ -1,10 +0,0 @@
-
-#import
-#import
-
-@interface ICMLoadingViewController : UIViewController
-
-- (instancetype)initWithImage:(UIImage *)loadingImage accessibilityText:(NSString *)accessibilityText;
-- (void)hideLoadingSpinner;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMMetric.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMMetric.h
deleted file mode 100644
index fc3665e6..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMMetric.h
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-// ICMMetric.h
-// Pods
-//
-// Created by James Treanor on 07/08/2015.
-//
-//
-
-#import
-#import "ICMMetricEvent.h"
-@class ICMOpsMetricEvent;
-
-@interface ICMMetric : NSObject
-
-+ (instancetype)sharedInstance;
-
-- (void)addEvent:(ICMMetricEvent *)event;
-- (void)addOpsEvent:(ICMOpsMetricEvent *)opsEvent;
-- (NSSet *)events;
-- (NSSet *)opsEvents;
-- (void)clearAllEvents;
-- (void)clearEvents:(NSSet *)events opsEvents:(NSSet *)opsEvents;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMMetricEvent.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMMetricEvent.h
deleted file mode 100644
index e0680ac8..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMMetricEvent.h
+++ /dev/null
@@ -1,204 +0,0 @@
-//
-// ICMMetricEvent.h
-// Pods
-//
-// Created by James Treanor on 15/03/2016.
-//
-//
-
-#import
-
-typedef NS_ENUM(NSUInteger, ICMMetricEventType) {
- ICMMetricEventTypeMessenger = 0,
- ICMMetricEventTypeEducate = 1,
- ICMMetricEventTypeCarousel = 2,
- ICMMetricEventTypeSearchBrowse = 3
-};
-
-NS_ASSUME_NONNULL_BEGIN
-
-#pragma mark - Actions
-static NSString *const ICMMetricEventActionOpened = @"opened";
-static NSString *const ICMMetricEventActionClosed = @"closed";
-static NSString *const ICMMetricEventActionReceived = @"received";
-static NSString *const ICMMetricEventActionDismissed = @"dismissed";
-static NSString *const ICMMetricEventActionViewed = @"viewed";
-static NSString *const ICMMetricEventActionSent = @"sent";
-static NSString *const ICMMetricEventActionTyped = @"typed";
-static NSString *const ICMMetricEventActionClicked = @"clicked";
-static NSString *const ICMMetricEventActionSearched = @"searched";
-static NSString *const ICMMetricEventActionCompleted = @"completed";
-static NSString *const ICMMetricEventActionStarted = @"started";
-static NSString *const ICMMetricEventActionFailed = @"failed";
-static NSString *const ICMMetricEventActionRequested = @"requested";
-
-#pragma mark - Objects
-static NSString *const ICMMetricEventObjectConversation = @"conversation";
-static NSString *const ICMMetricEventObjectNewConversation = @"new_conversation";
-static NSString *const ICMMetricEventObjectMessenger = @"messenger";
-static NSString *const ICMMetricEventObjectMessage = @"message";
-static NSString *const ICMMetricEventObjectReply = @"reply";
-static NSString *const ICMMetricEventObjectQuickReplies = @"quick_replies";
-static NSString *const ICMMetricEventObjectQuickReply = @"quick_reply";
-static NSString *const ICMMetricEventObjectReaction = @"reaction";
-static NSString *const ICMMetricEventObjectBadge = @"badge";
-static NSString *const ICMMetricEventObjectTeamProfile = @"team_profile";
-static NSString *const ICMMetricEventObjectTeammateProfile = @"teammate_profile";
-static NSString *const ICMMetricEventObjectArticle = @"article";
-static NSString *const ICMMetricEventObjectArticlePreload = @"article_preload";
-static NSString *const ICMMetricEventObjectHelpCenter = @"help_center";
-static NSString *const ICMMetricEventObjectGIFInput = @"gif_input";
-static NSString *const ICMMetricEventObjectTextInput = @"text_input";
-static NSString *const ICMMetricEventObjectImageInput = @"image_input";
-static NSString *const ICMMetricEventObjectExpandedImageInput = @"expanded_image_input";
-static NSString *const ICMMetricEventObjectExpandedGIFInput = @"expanded_gif_input";
-static NSString *const ICMMetricEventObjectMessengerSheet = @"messenger_sheet";
-static NSString *const ICMMetricEventObjectHomescreen = @"home_screen";
-static NSString *const ICMMetricEventObjectHelpCenterData = @"help_center_data";
-static NSString *const ICMMetricEventObjectArticleReaction = @"article_reaction";
-static NSString *const ICMMetricEventObjectSearchBrowse = @"search_browse_card";
-static NSString *const ICMMetricEventObjectSearchBrowseInput = @"search_browse_card_input";
-
-#pragma mark Carousel
-static NSString *const ICMMetricEventObjectCarouselMessage = @"carousel_message";
-static NSString *const ICMMetricEventObjectCarouselMessagePreload = @"carousel_message_preload";
-static NSString *const ICMMetricEventObjectCarouselPermissionSkipped = @"carousel_permission_skipped";
-static NSString *const ICMMetricEventObjectCarouselPermissionDialog = @"carousel_permission_dialog";
-static NSString *const ICMMetricEventObjectCarouselPermissionSettings = @"carousel_permission_settings";
-
-
-#pragma mark - Place
-static NSString *const ICMMetricEventPlaceMessenger = @"messenger";
-static NSString *const ICMMetricEventPlaceMessengerHomeApp = @"messenger_home_app";
-static NSString *const ICMMetricEventPlaceConversation = @"conversation";
-static NSString *const ICMMetricEventPlaceInApp = @"in_app";
-static NSString *const ICMMetricEventPlaceCarouselMessage = @"carousel_message";
-static NSString *const ICMMetricEventPlaceWebview = @"webview";
-static NSString *const ICMMetricEventPlaceHelpCenterCollectionList = @"collection_list";
-static NSString *const ICMMetricEventPlaceHelpCenterArticleList = @"article_list";
-static NSString *const ICMMetricEventPlaceHelpCenterSearchResults = @"search_results";
-static NSString *const ICMMetricEventPlaceHelpCenterArticle = @"article";
-static NSString *const ICMMetricEventPlaceHelpCenterAPI = @"api";
-static NSString *const ICMMetricEventPlaceLegacyArticleSearchApp = @"legacy_article_search_app";
-static NSString *const ICMMetricEventPlacePushNotification = @"push";
-static NSString *const ICMMetricEventPlaceHomeScreen = @"home-screen";
-static NSString *const ICMMetricEventPlaceSearchBrowse = @"search_browse";
-
-
-#pragma mark - Context
-static NSString *const ICMMetricEventContextNoContext = @"no_context";
-static NSString *const ICMMetricEventContextFromDefaultLauncher = @"from_launcher";
-static NSString *const ICMMetricEventContextFromCustomLauncher = @"from_custom_launcher";
-static NSString *const ICMMetricEventContextFromCloseButton = @"from_close_button";
-static NSString *const ICMMetricEventContextFromBadge = @"from_badge";
-static NSString *const ICMMetricEventContextFromSnippet = @"from_snippet";
-static NSString *const ICMMetricEventContextFromFull = @"from_full";
-static NSString *const ICMMetricEventContextFromConversationList = @"from_conversation_list";
-static NSString *const ICMMetricEventContextInConversation = @"in_conversation";
-static NSString *const ICMMetricEventContextInNewConversation = @"in_new_conversation";
-static NSString *const ICMMetricEventContextFromConversation = @"from_conversation";
-static NSString *const ICMMetricEventContextFromNewConversation = @"from_new_conversation";
-static NSString *const ICMMetricEventContextFromClosedConversation = @"from_closed_conversation";
-static NSString *const ICMMetricEventContextInFollowUpConversation = @"in_followup_conversation";
-static NSString *const ICMMetricEventContextFromClicking = @"from_clicking";
-static NSString *const ICMMetricEventContextFromScrolling = @"from_scrolling";
-static NSString *const ICMMetricEventContextFromAuto = @"from_auto";
-static NSString *const ICMMetricEventContextFromPush = @"from_push";
-static NSString *const ICMMetricEventContextOnArticle = @"on_article";
-static NSString *const ICMMetricEventContextFromHelpCenterWebView = @"from_help_center_webview";
-static NSString *const ICMMetricEventContextFromArticleOnButton = @"from_article_on_button";
-static NSString *const ICMMetricEventContextHomescreen = @"home_screen";
-static NSString *const ICMMetricEventContextConversation = @"conversation";
-static NSString *const ICMMetricEventContextFromCarousel = @"from_carousel";
-static NSString *const ICMMetricEventContextFromRetry = @"from_retry";
-static NSString *const ICMMetricEventContextFromSwipe = @"from_swipe";
-static NSString *const ICMMetricEventContextFromCTA = @"from_cta";
-static NSString *const ICMMetricEventContextFromPermission = @"from_permission";
-static NSString *const ICMMetricEventContextFromPermissionSkipped = @"from_permission_skipped";
-static NSString *const ICMMetricEventContextReactionHappy = @"reaction_happy";
-static NSString *const ICMMetricEventContextReactionNeutral = @"reaction_neutral";
-static NSString *const ICMMetricEventContextReactionSad = @"reaction_sad";
-static NSString *const ICMMetricEventContextHumanStyle = @"style_human";
-static NSString *const ICMMetricEventContextBotStyle = @"style_bot";
-static NSString *const ICMMetricEventContextArticle = @"article";
-static NSString *const ICMMetricEventContextMessenger = @"messenger";
-
-#pragma mark Carousel Permissions
-static NSString *const ICMMetricEventContextPushNotification = @"push_notifications_permission";
-static NSString *const ICMMetricEventContextLocation = @"location_permission";
-static NSString *const ICMMetricEventContextCamera = @"camera_permission";
-static NSString *const ICMMetricEventContextPhotoGallery = @"photos_permission";
-static NSString *const ICMMetricEventContextMicrophone = @"microphone_permission";
-
-#pragma mark - Info Keys
-static NSString *const kICMMetricEventInfoConversationId = @"conversation_id";
-static NSString *const kICMMetricEventInfoClosedConversationId = @"closed_conversation_id";
-static NSString *const kICMMetricEventInfoConversation = @"conversation";
-static NSString *const kICMMetricEventInfoPushInstanceId = @"instance_id";
-static NSString *const kICMMetricEventInfoConversationPart = @"conversation_part";
-static NSString *const kICMMetricEventInfoMessageText = @"message_text";
-static NSString *const kICMMetricEventInfoIsAttachment = @"is_attachment";
-static NSString *const kICMMetricEventInfoIsAnnotated = @"is_annotated";
-static NSString *const kICMMetricEventInfoIsSticker = @"is_sticker";
-static NSString *const kICMMetricEventInfoHasArticleCard = @"has_article_card";
-static NSString *const kICMMetricEventInfoLauncherState = @"state";
-static NSString *const kICMMetricEventInfoPushType = @"push_type";
-static NSString *const kICMMetricEventInfoMessageType = @"message_type";
-static NSString *const kICMMetricEventInfoBadgeValue = @"badge_value";
-static NSString *const kICMMetricEventInfoArticleId = @"article_id";
-static NSString *const kICMMetricEventInfoIsGIF = @"is_gif";
-static NSString *const kICMMetricEventInfoGIFSearchQuery = @"search_query";
-static NSString *const kICMMetricEventInfoTeamMateStatus = @"teammate_status";
-static NSString *const kICMMetricEventInfoTimeSinceLastActive = @"time_since_last_active";
-static NSString *const kICMMetricEventInfoWithinOfficeHours = @"within_office_hours";
-static NSString *const kICMMetricEventInfoURL = @"url";
-static NSString *const kICMMetricEventInfoQuickReplyId = @"quick_reply_id";
-static NSString *const kICMMetricEventInfoScreensInMessage = @"screens_in_message";
-static NSString *const kICMMetricEventInfoScreensShown = @"screens_shown";
-static NSString *const kICMMetricEventInfoScreensSeen = @"screens_seen";
-static NSString *const kICMMetricEventInfoPermissionGranted = @"permission_granted";
-static NSString *const kICMMetricEventInfoCarouselInstanceId = @"instance_id";
-static NSString *const kICMMetricEventInfoRequestedContentId = @"requested_content_id";
-static NSString *const kICMMetricEventInfoSource = @"source";
-static NSString *const kICMMetricEventInfoErrorCode = @"error_code";
-static NSString *const kICMMetricEventInfoConversationShown = @"conversation_shown";
-static NSString *const kICMMetricEventInfoFiltered = @"filtered";
-static NSString *const kICMMetricEventInfoHomeScreenIndex = @"home_screen_index";
-
-#pragma mark - Info Values
-static NSString *const kICMMetricEventInfoLauncherStateEmpty = @"empty";
-static NSString *const kICMMetricEventInfoLauncherStateBadge = @"badge";
-static NSString *const kICMMetricEventInfoLauncherStateSnippet = @"snippet";
-static NSString *const kICMMetricEventInfoLauncherStateFull = @"full";
-static NSString *const kICMMetricEventInfoLauncherStateMultipleSnippets = @"multiple snippets";
-static NSString *const kICMMetricEventInfoPushTypeMessage = @"message";
-static NSString *const kICMMetricEventInfoPushTypeNotification = @"notification";
-static NSString *const kICMMetricEventInfoMessageTypeNote = @"note";
-static NSString *const kICMMetricEventInfoMessageTypePost = @"post";
-static NSString *const kICMMetricEventInfoMessageTypeChat = @"chat";
-static NSString *const kICMMetricEventInfoTeamMateActive = @"active";
-static NSString *const kICMMetricEventInfoTeamMateAway = @"away";
-static NSString *const kICMMetricEventInfoProgrammatic = @"programmatic";
-static NSString *const kICMMetricEventInfoAutomatic = @"automatic";
-
-
-@interface ICMMetricEvent : NSObject
-
-+ (instancetype)eventWithAction:(NSString *)action
- object:(NSString *)object
- place:(nullable NSString *)place
- context:(nullable NSString *)context;
-
-+ (instancetype)eventWithAction:(NSString *)action
- object:(NSString *)object
- place:(nullable NSString *)place
- context:(nullable NSString *)context
- additionalInfo:(nullable NSDictionary *)info;
-
-- (NSDictionary *)eventDictionary;
-
-@property (nonatomic, assign) ICMMetricEventType eventType;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMNavigationBarCloseButton.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMNavigationBarCloseButton.h
deleted file mode 100644
index 91b934f3..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMNavigationBarCloseButton.h
+++ /dev/null
@@ -1,26 +0,0 @@
-//
-// ICMCloseBarButtonItem.h
-// IntercomSDK
-//
-// Created by Michael Isaakidis on 28/06/2018.
-// Copyright © 2018 Intercom. All rights reserved.
-//
-
-#import
-
-typedef NS_ENUM(NSInteger, ICMNavigationBarCloseButtonStyle) {
- ICMNavigationBarCloseButtonStyleDefault,
- ICMNavigationBarCloseButtonStyleLight,
- ICMNavigationBarCloseButtonStyleDark,
- ICMNavigationBarCloseButtonStyleText
-};
-
-extern const CGFloat kICMContentHolderDismissButtonBackgroundAlpha;
-
-@interface ICMNavigationBarCloseButton : UIButton
-
-@property (nonatomic, assign) CGFloat backgroundViewAlpha;
-@property (nonatomic) ICMNavigationBarCloseButtonStyle style;
-- (instancetype)initWithFrame:(CGRect)frame style:(ICMNavigationBarCloseButtonStyle)style;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMNavigationController.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMNavigationController.h
deleted file mode 100644
index 73b3d04b..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMNavigationController.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#import
-#import
-
-typedef enum : NSUInteger {
- Messenger,
- HelpCenter,
- ContentModal,
- Sheet
-} IntercomPresentationContext;
-
-@class ICMHostAppState;
-@class ICMNavigationBarCloseButton;
-
-@protocol ICMCloseIntercomModalDelegate
-- (void)closeIntercomModal;
-@end
-
-@interface ICMNavigationController : UINavigationController
-
-- (instancetype)initWithHostAppState:(ICMHostAppState *)hostAppState
- closeIntercomModalDelegate:(id)closeIntercomModalDelegate
- presentationContext:(IntercomPresentationContext)presentationContext;
-
-- (void)setWallpaperHeight:(CGFloat)height;
-- (void)displayCloseButton;
-- (void)removeCloseButton;
-- (void)addBackButton;
-- (void)closeIntercomModal;
-
-@property (nonatomic, strong) ICMNavigationBarCloseButton *closeButton;
-@property (nonatomic, assign) IntercomPresentationContext presentationContext;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMPresentationManager.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMPresentationManager.h
deleted file mode 100644
index 7a910712..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMPresentationManager.h
+++ /dev/null
@@ -1,53 +0,0 @@
-//
-// Created by Ignacio Delgado on 17/04/2014.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@class ICMConversation;
-@class ICMCarousel;
-@class ICMMessengerSheetViewController;
-
-@interface ICMPresentationManager : NSObject
-
-@property (nonatomic, assign) CGFloat inAppBottomPadding;
-@property (nonatomic, assign) BOOL launcherVisible;
-@property (nonatomic, assign) BOOL inAppMessagesVisible;
-@property (nonatomic, assign) BOOL manualInAppBottomPaddingSet;
-
-+ (instancetype) sharedInstance;
-+ (void)observeSceneWillEnterForeground;
-
-- (void)setUnreadConversations:(NSArray *)conversations completion:(void (^ __nullable)(void))completion;
-- (void)presentCarousel:(ICMCarousel *)carousel;
-- (void)presentMessenger;
-- (void)presentMessageComposerWithInitialMessage:(nullable NSString *)message;
-- (void)presentHomescreen;
-- (void)presentSheet:(ICMMessengerSheetViewController *)sheetVC;
-
-#pragma mark - Help Center Presentation
-- (void)presentHelpCenter;
-- (void)presentHelpCenterFromSearchBrowse;
-- (void)presentHelpCenterCollections:(NSArray *)collectionIds;
-- (void)presentHelpCenterCollection:(NSString *)collectionId;
-- (void)presentArticle:(NSString *)articleId;
-
-- (void)showLauncherOrInAppsIfNeeded;
-- (void)hideIntercomUI;
-- (void)userChanged;
-
-- (void)presentConversation:(ICMConversation *)conversation;
-
-- (void)setNeedsHostAppStatusBarAppearanceUpdate;
-- (BOOL)isMessengerPresented;
-- (void)dismissAllIntercomViews;
-- (void)sceneWillEnterForeground:(NSNotification *)notification;
-- (BOOL)isContentCurrentlyPresented;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMSafeNetworkModel.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMSafeNetworkModel.h
deleted file mode 100644
index eeaa4e01..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMSafeNetworkModel.h
+++ /dev/null
@@ -1,13 +0,0 @@
-//
-// ICMSafeNetworkModel.h
-// Pods
-//
-// Created by James Treanor on 23/02/2015.
-//
-//
-
-#import
-
-@interface ICMSafeNetworkModel : NSObject
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMStartConversationButton.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMStartConversationButton.h
deleted file mode 100644
index d7a8f064..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMStartConversationButton.h
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// ICMStartConversationButton.h
-// IntercomSDK
-//
-// Created by Michael Isaakidis on 29/05/2018.
-// Copyright © 2018 Intercom. All rights reserved.
-//
-
-typedef NS_ENUM(NSUInteger, ICMStartConversationButtonStyle) {
- ICMStartConversationButtonStyleFilled,
- ICMStartConversationButtonStyleBordered,
-};
-
-static const CGFloat kStartConversationButtonHeight = 40.f;
-
-@interface ICMStartConversationButton : UIButton
-
-- (void)configureWithStyle:(ICMStartConversationButtonStyle)style;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMTranslationKeys.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMTranslationKeys.h
deleted file mode 100644
index e4fde9cf..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMTranslationKeys.h
+++ /dev/null
@@ -1,149 +0,0 @@
-//
-// ICMTranslationKeys.h
-// IntercomSDK
-//
-// Created by Ignacio Delgado on 21/08/2014.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#ifndef IntercomSDK_ICMTranslationKeys_h
-#define IntercomSDK_ICMTranslationKeys_h
-
-#pragma mark - Strings
-static NSString *const kICMTKNavBarTitleConversations = @"conversations_with_app_two_lines";
-static NSString *const kICMTKNavBarTitleConversationsNoAppName = @"conversations";
-static NSString *const kICMTKActionSheetMessageFailDelivery = @"failed_delivery";
-static NSString *const kICMTKActionSheetCancel = @"cancel";
-static NSString *const kICMTKActionSheetDelete = @"delete";
-static NSString *const kICMTKMessageStateSending = @"message_state_sending";
-static NSString *const kICMTKFacebookLikeUs = @"facebook_like";
-static NSString *const kICMTKTwitterFollowUs = @"twitter_follow";
-static NSString *const kICMTKSendUsAMessage = @"send_us_a_message";
-static NSString *const kICMTKNavBarTitleNewConversation = @"new_conversation";
-static NSString *const kICMTKConversationHasEnded = @"conversation_has_ended";
-static NSString *const kICMTKErrorLoadingConversation = @"error_loading_conversation";
-static NSString *const kICMTKErrorNoConversationsTitle = @"no_conversations";
-static NSString *const kICMTKErrorNoConversationsMessage = @"empty_conversations";
-static NSString *const kICMTKErrorNoConversationsMessageNoAppName = @"error_no_conversations_message_no_app_name";
-static NSString *const kICMTKErrorTitle = @"inbox_error_state_title";
-static NSString *const kICMTKErrorLoadingConversationsFallback = @"failed_to_load_conversation_with_admin";
-static NSString *const kICMTKErrorLoadingConversationsFallbackNoAppName = @"failed_to_load_conversation";
-static NSString *const kICMTKErrorStartingConversationFallback = @"start_conversation_error";
-static NSString *const kICMTKErrorTapToRetry = @"retry";
-static NSString *const kICMTKMessageViewPlaceholderWriteAReply = @"reply_to_conversation";
-static NSString *const kICMTKMessageViewPlaceholderStartAConversation = @"start_conversation";
-static NSString *const kICMTKMessageViewSend = @"send";
-static NSString *const kICMTKWeRunOnIntercom = @"we_run_on_intercom";
-static NSString *const kICMTKTimeDifferenceJustNow = @"time_just_now";
-static NSString *const kICMTKAlertNewSDKUserTitle = @"congratulations";
-static NSString *const kICMTKAlertNewSDKUserMessage = @"alert_new_sdk_user_message";
-static NSString *const kICMTKThankYou = @"thank_you";
-static NSString *const kICMTKLastActiveLast15Minutes = @"active_15m_ago";
-static NSString *const kICMTKLastActiveLastXMinutes = @"active_minute_ago";
-static NSString *const kICMTKLastActiveOver1WeekAgo = @"active_week_ago";
-static NSString *const kICMTKAdminActive = @"active_state";
-static NSString *const kICMTKAdminAway = @"away_state";
-static NSString *const kICMTKBack = @"navigation_back";
-static NSString *const kICMTKClose = @"close";
-static NSString *const kICMTKTryAgain = @"try_again";
-static NSString *const kICMTKTimeLocationFormat = @"profile_location";
-static NSString *const kICMTKDelivered = @"delivered";
-static NSString *const kICMTKMessageSeen = @"message_seen";
-static NSString *const kICMTKMessageNotSeen = @"message_unseen";
-static NSString *const kICMTKInboxYou = @"you";
-static NSString *const kICMTKCameraRoll = @"camera_roll";
-static NSString *const kICMTKPlustMore = @"plus_x_more";
-static NSString *const kICMTKNameAnd1Other = @"name_and_1_other";
-static NSString *const kICMTKNameAndXOthers = @"name_and_x_others";
-static NSString *const kICMTKAlsoInThisConversation = @"also_in_this_conversation";
-static NSString *const kICMTKRateYourConversation = @"rate_your_conversation";
-static NSString *const kICMTKTellUsMore = @"tell_us_more";
-static NSString *const kICMTKYouRatedTheConversation = @"you_rated_the_conversation";
-static NSString *const kICMTKThanksForLettingUsKnow = @"thanks_for_letting_us_know";
-static NSString *const kICMTKOkay = @"ok_description";
-static NSString *const kICMTKCouldntLoadContent = @"couldnt_load_content";
-static NSString *const kICMTKGiveItAnotherTry = @"give_it_another_try";
-static NSString *const kICMTKReload = @"reload";
-static NSString *const lICMCouldntCompleteAction = @"couldnt_complete_action";
-static NSString *const kICMYourConversations = @"your_conversations";
-static NSString *const kICMStartAConversation = @"start_a_conversation";
-static NSString *const kICMSeePastConversations = @"see_past_conversations";
-static NSString *const kICMSeeAll = @"see_all";
-static NSString *const kICMTKAskAQuestion = @"ask_a_question";
-static NSString *const kICMTKHowCanWeHelp = @"how_can_we_help";
-static NSString *const kICMTKTellUsWhatYouNeed = @"tell_us_what_you_need";
-static NSString *const kICMSeeAllYourConversations = @"see_all_conversations";
-
-
-#pragma mark - Formats
-static NSString *const kICMTKParticipantFromAppFormat = @"teammate_from_company";
-static NSString *const kICMTKReplyFromParticipantFormat = @"reply_from_admin";
-static NSString *const kICMTKTimeDifferenceFormatWeeksAgo = @"time_week_ago";
-static NSString *const kICMTKTimeDifferenceFormatDaysAgo = @"time_day_ago";
-static NSString *const kICMTKTimeDifferenceFormatHoursAgo = @"time_hour_ago";
-static NSString *const kICMTKTimeDifferenceFormatMinutesAgo = @"time_minute_ago";
-static NSString *const kICMTKLastActiveFormatHoursAgo = @"active_hour_ago";
-static NSString *const kICMTKLastActiveFormatDaysAgo = @"active_day_ago";
-
-static NSString *const kICMTKArticleQuestion = @"article_question";
-static NSString *const kICMTKArticleReaction = @"article_response";
-static NSString *const kICMTKAskedAbout = @"asked_about";
-static NSString *const kICMTKErrorLoadingArticle = @"article_load_error";
-
-static NSString *const kICMTKHelpCenter = @"help_center";
-static NSString *const kICMTTeamCanHelp = @"the_team_can_help_if_needed";
-static NSString *const kICMTKBotExpectation = @"bot_expectation_text";
-static NSString *const kICMTKLoading = @"loading";
-static NSString *const kICMTKSearchHelpArticles = @"search_help_articles";
-static NSString *const kICMTKSearchBrowseEmptyState = @"search_browse_empty_state_text";
-static NSString *const kICMTKGetHelp = @"get_help";
-static NSString *const kICMTKGrinningFaceBigEyesEmoji = @"grinning_face_with_big_eyes_emoji";
-static NSString *const kICMTKNeutralFaceEmoji = @"neutral_face_emoji";
-static NSString *const kICMTKDisappointedFaceEmoji = @"disappointed_face_emoji";
-static NSString *const kICMTKBrowseAllHelpTopics = @"browse_all_help_topics";
-static NSString *const kICMTKSearchForHelp = @"search_for_help";
-
-#pragma mark - Photos
-static NSString *const kICMTKNoPhotos = @"no_photos";
-static NSString *const kICMTKNoPhotosOnDevice = @"no_photos_on_device";
-static NSString *const kICMTKAccessPhotos = @"access_photos";
-static NSString *const kICMTKPermissionSettings = @"access_device_settings";
-static NSString *const kICMTKEnablePermissions = @"go_to_settings";
-
-#pragma mark - GIFs
-static NSString *const kICMTKSearchGIFs = @"search_gif";
-static NSString *const kICMTKNoGIFsFoundTitle = @"no_gifs_found";
-static NSString *const kICMTKNoGIFsFoundMessage = @"no_gifs_matching_query";
-static NSString *const kICMTKImageAttribution = @"gif_attribution";
-static NSString *const kICMTKGIFErrorTitle = @"gifs_load_error";
-static NSString *const kICMTKGIFErrorDescription = @"try_again_minute";
-
-#pragma mark - Attribute Collector Picker submit
-static NSString *const kICMAttributeColelctorSubmitButton = @"submit";
-
-#pragma mark - Input placeholders
-static NSString *const kICMTKListPlaceholder = @"choose_one";
-static NSString *const kICMTKDatePlaceholder = @"choose_the_date";
-
-#pragma mark - Input Validation
-static NSString *const kICMTKInvalidEmail = @"that_email_address_doesnt_look_quite_right";
-static NSString *const kICMTKInvalidNumber = @"that_number_doesnt_look_quite_right";
-static NSString *const kICMTKInvalidString = @"string_is_incorrect";
-static NSString *const kICMTKSomethingWentWrongTryAgain = @"something_went_wrong_try_again";
-
-static NSString *const kICMTKInvalidCountryCode = @"that_country_code_doesnt_look_quite_right";
-static NSString *const kICMTKInvalidNumberTooManyDigits = @"that_number_has_too_many_digits";
-static NSString *const kICMTKInvalidNumberMissingDigits = @"that_number_is_missing_a_few_digits";
-static NSString *const kICMTKInvalidMissingPrefix = @"that_number_needs_a_prefix";
-
-#pragma mark - Attribute Collector
-static NSString *const kICMTKYes = @"attribute_collector_positive";
-static NSString *const kICMTKNo = @"attribute_collector_negative";
-
-#pragma mark - In Apps Quick Replies
-static NSString *const kICMTKReply = @"reply";
-
-#pragma mark - Carousels/Articles On Buttons
-static NSString *const kICMTKPageNotFound = @"page_not_found";
-
-#endif
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMTranslationManager.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMTranslationManager.h
deleted file mode 100644
index 789c4ef4..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMTranslationManager.h
+++ /dev/null
@@ -1,16 +0,0 @@
-//
-// Created by Ignacio Delgado on 22/08/2014.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#import
-#import "ICMTranslationKeys.h"
-
-@interface ICMTranslationManager : NSObject
-
-+ (NSLocale *)translationLocale;
-+ (NSString *)translationForKey:(NSString *)key;
-+ (NSString *)translationForKey:(NSString *)key params:(NSDictionary *)params;
-+ (NSArray *)supportedLocales;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMUtils.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMUtils.h
deleted file mode 100644
index 54b3674b..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMUtils.h
+++ /dev/null
@@ -1,107 +0,0 @@
-//
-// ICMUtils.h
-// IntercomSDK
-//
-// Created by Gavin Rooney on 24/04/2014.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#import
-#import
-
-@class ICMConversationPart;
-
-#ifdef DEBUG
-# define InterLog(fmt, ...) NSLog((@"[Intercom] " fmt), ##__VA_ARGS__);
-# define InterLogDebug(fmt, ...) ([ICMUtils debugLoggingEnabled] ? NSLog((@"[Intercom] " fmt), ##__VA_ARGS__) : YES);
-# define InterLogPrivate(fmt, ...) NSLog((@"[Intercom] %s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
-#else
-# define InterLog(fmt, ...) NSLog((@"[Intercom] " fmt), ##__VA_ARGS__);
-# define InterLogDebug(fmt, ...) ([ICMUtils debugLoggingEnabled] ? NSLog((@"[Intercom] " fmt), ##__VA_ARGS__) : YES);
-# define InterLogPrivate(...)
-#endif
-
-#define run_or_dispatch_main(block) if ([NSThread isMainThread]) { block(); } else { dispatch_async(dispatch_get_main_queue(), block); }
-
-#define WEAK_TYPE(x) __weak __typeof(x)
-#define STRONG_TYPE(x) __strong __typeof(x)
-
-UIKIT_EXTERN NSString *const IntercomSDKErrorDomain;
-
-//------------------------------------------------------------------------------------------------------------------------------
-// result: X-INTERCOM-AGENT: intercom-ios-sdk/x.x.x
-#define ICMSDKHeaderValue @"intercom-ios-sdk"
-#define ICMSDKDefaultHeader @"X-INTERCOM-AGENT"
-#define ICMSDKWrapperHeader @"X-INTERCOM-AGENT-WRAPPER"
-#define ICMSDKCordovaHeaderValue @"intercom-sdk-cordova"
-#define ICMSDKReactNativeHeaderValue @"intercom-sdk-react-native"
-
-static const NSInteger kICMConversationAvatarWidth = 28;
-
-static NSString *const kIntercomSDKVersionIdentifier = @"intercom-sdk-version";
-static NSString *const kIntercomSDKComposerPersistedString = @"intercom-sdk-composer-persisted-string";
-static NSString *const kIntercomSDKComposerPersistedNewKey = @"NewConversation"; // when we want to persist the string in the message composer but don't have a conversationId (i.e. user composes new message)
-
-static NSString *const kIntercomSDKInboxUpdated = @"intercom-sdk-inbox-updated";
-static NSString *const kICMIntercomDeepLinkNotification = @"kICMIntercomDeepLinkNotification";
-static NSString *const kICMIntercomDidTypeInComposer = @"kICMIntercomDidTypeInComposer";
-static NSString *const kICMIntercomDidChangeComposerInput = @"kICMIntercomDidChangeComposerInput";
-
-typedef NS_ENUM(NSUInteger, ICMFontWeight){
- ICMFontWeightRegular = 0,
- ICMFontWeightBold = 1,
- ICMFontWeightMedium = 2,
- ICMFontWeightLight = 3,
- ICMFontWeightThin = 4,
- ICMFontWeightSemibold = 5
-};
-
-typedef NS_ENUM(NSInteger, ICMUserIdentityType) {
- ICMUserIdentityEmail,
- ICMUserIdentityUserId,
- ICMUserIdentityIntercomId
-};
-
-@interface ICMUtils : NSObject
-
-+ (NSString *)intercomAgent;
-
-+ (NSString *)intercomVersion;
-
-+ (NSString *)appVersion;
-
-+ (NSString *)applicationName;
-
-+ (NSString *)bundleIdentifier;
-
-+ (NSString *)minimumOSVersion;
-
-+ (BOOL)debugLoggingEnabled;
-
-+ (void)setDebugLoggingEnabled:(BOOL)loggingEnabled;
-
-+ (void)checkIntegration;
-
-+ (BOOL)photoUsageDescriptionPresent;
-
-+ (BOOL)autoIntegratePushNotifications;
-
-+ (NSBundle *)intercomBundle;
-+ (NSBundle *)translationsBundle;
-
-+ (NSString *)intercomDocumentsDirectory;
-
-+ (NSString *)intercomCachesDirectory;
-
-+ (UIFont *)fontOfSize:(CGFloat)fontSize weight:(ICMFontWeight)weight;
-
-+ (NSArray *)jsonArrayFromLocalFile:(NSString *)path error:(NSError * __autoreleasing *)error;
-
-+ (BOOL)sceneManifestPresent;
-
-+ (BOOL)shouldShowPhotoUsagePListError;
-
-+ (NSString *)extractArticleIdFromSheetParams:(NSDictionary *)params;
-
-+ (BOOL)usingLargeFontSize;
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/UIImage+ICMImageUtils.h b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/UIImage+ICMImageUtils.h
deleted file mode 100644
index 12cb994c..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/UIImage+ICMImageUtils.h
+++ /dev/null
@@ -1,15 +0,0 @@
-//
-// UIImage+ICMGrayscale.h
-// Pods
-//
-// Created by Brian Boyle on 19/01/2017.
-//
-//
-
-#import
-
-@interface UIImage (ICMImageUtils)
-
-- (UIImage *)icm_grayscale;
-- (UIImage *)icm_resizeImageToSize:(CGSize)newSize;
-@end
diff --git a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/strip-frameworks.sh b/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/strip-frameworks.sh
deleted file mode 100644
index 80814abb..00000000
--- a/Intercom.xcframework/ios-arm64_armv7/Intercom.framework/strip-frameworks.sh
+++ /dev/null
@@ -1,72 +0,0 @@
-################################################################################
-#
-# Copyright 2015 Realm Inc.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-################################################################################
-
-# This script strips all non-valid architectures from dynamic libraries in
-# the application's `Frameworks` directory.
-#
-# The following environment variables are required:
-#
-# BUILT_PRODUCTS_DIR
-# FRAMEWORKS_FOLDER_PATH
-# VALID_ARCHS
-# EXPANDED_CODE_SIGN_IDENTITY
-
-
-# Signs a framework with the provided identity
-code_sign() {
- # Use the current code_sign_identitiy
- echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}"
- echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements $1"
- /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1"
-}
-
-# Set working directory to product’s embedded frameworks
-cd "${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}"
-
-if [ "$ACTION" = "install" ]; then
- echo "Copy .bcsymbolmap files to .xcarchive"
- find . -name '*.bcsymbolmap' -type f -exec mv {} "${CONFIGURATION_BUILD_DIR}" \;
-else
- # Delete *.bcsymbolmap files from framework bundle unless archiving
- find . -name '*.bcsymbolmap' -type f -exec rm -rf "{}" +\;
-fi
-
-echo "Stripping frameworks"
-
-for file in $(find . -type f -perm +111); do
- # Skip non-dynamic libraries
- if ! [[ "$(file "$file")" == *"dynamically linked shared library"* ]]; then
- continue
- fi
- # Get architectures for current file
- archs="$(lipo -info "${file}" | rev | cut -d ':' -f1 | rev)"
- stripped=""
- for arch in $archs; do
- if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then
- # Strip non-valid architectures in-place
- lipo -remove "$arch" -output "$file" "$file" || exit 1
- stripped="$stripped $arch"
- fi
- done
- if [[ "$stripped" != "" ]]; then
- echo "Stripped $file of architectures:$stripped"
- if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then
- code_sign "${file}"
- fi
- fi
-done
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Assets.car b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Assets.car
deleted file mode 100644
index a9b9a8ea..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Assets.car and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMCompany.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMCompany.h
deleted file mode 100644
index 02bcf0c3..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMCompany.h
+++ /dev/null
@@ -1,87 +0,0 @@
-//
-// ICMCompany.h
-//
-// Created by Intercom on 17/01/2017.
-// Copyright (c) 2017 Intercom. All rights reserved.
-//
-
-#import
-
-/**
- * The ICMCompany object is used for adding companies to users in Intercom.
- * All of the default attributes you can modify are available as properties on ICMCompany.
- * This is an example of how to create an ICMCompany object to update default attributes.
- *
- * ICMCompany *company = [ICMCompany new];
- * company.companyId = @"12345";
- * company.name = @"TestCorp";
- *
- * You can also add custom attributes to your company.
- *
- * ICMCompany *company = [ICMCompany new];
- * company.companyId = @"12345";
- * company.name = @"TestCorp";
- * company.customAttributes = @{@"employee_count" : @200};
- *
- */
-@interface ICMCompany : NSObject
-
-/**
- The ID of the company.
- @note This property is required
- */
-@property (nonatomic, copy, nullable) NSString *companyId;
-
-/**
- The name of the company.
- */
-@property (nonatomic, copy, nullable) NSString *name;
-
-/**
- The created at date for this company.
- */
-@property (nonatomic, strong, nullable) NSDate *createdAt;
-
-/**
- The monthly spend of the company.
- */
-@property (nonatomic, strong, nullable) NSNumber *monthlySpend;
-
-/**
- The plan of the company.
- */
-@property (nonatomic, copy, nullable) NSString *plan;
-
-/**
- Custom attributes for this user.
- @note Each key must be an NSString and each value must be of type NSString, NSNumber or NSNull.
- */
-@property (nonatomic, strong, nullable) NSDictionary *customAttributes;
-
-/**
- Gives you a null value to apply to string attributes.
-
- @return the value to set on string attributes which you wish to be null
- */
-+ (nonnull NSString *)nullStringAttribute;
-
-/**
- Gives you a null value to apply to number attributes.
-
- @return the value to set on number attributes which you wish to be null
- */
-+ (nonnull NSNumber *)nullNumberAttribute;
-
-/**
- Gives you a null value to apply to date attributes.
-
- @return the value to set on date attributes which you wish to be null
- */
-+ (nonnull NSDate *)nullDateAttribute;
-
-/**
- A dictionary representation for the company.
- */
-- (nonnull NSDictionary *)attributes;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterArticle.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterArticle.h
deleted file mode 100644
index 08ec8808..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterArticle.h
+++ /dev/null
@@ -1,34 +0,0 @@
-//
-// ICMHelpCenterArticle.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael McNamara on 03/06/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- ICMHelpCenterArticle represents a Help Center article.
-*/
-NS_SWIFT_NAME(HelpCenterArticle)
-@interface ICMHelpCenterArticle : NSObject
-
-/**
- The id of this article.
- */
-@property (nonatomic, copy) NSString *articleId;
-
-/**
- The title of this article.
- */
-@property (nonatomic, copy) NSString *title;
-
-- (instancetype)initWithArticleId:(NSString *)articleId
- title:(NSString *)title;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterArticleSearchResult.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterArticleSearchResult.h
deleted file mode 100644
index 6b0a0827..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterArticleSearchResult.h
+++ /dev/null
@@ -1,46 +0,0 @@
-//
-// ICMHelpCenterArticleSearchResult.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael McNamara on 04/06/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- ICMHelpCenterArticleSearchResult represents the result of a Help Center search.
-*/
-NS_SWIFT_NAME(HelpCenterArticleSearchResult)
-@interface ICMHelpCenterArticleSearchResult : NSObject
-
-/**
- The id of this article.
- */
-@property (nonatomic, copy) NSString *articleId;
-
-/**
- The title of this article.
- */
-@property (nonatomic, copy) NSString *title;
-
-/**
- The summary of this article.
- */
-@property (nonatomic, copy) NSString *summary;
-
-/**
- A snippet of this article that matches the search term.
- */
-@property (nonatomic, copy) NSString *matchingSnippet;
-
-- (instancetype)initWithArticleId:(NSString *)articleId
- title:(NSString *)title
- summary:(nullable NSString *)summary
- matchingSnippet:(nullable NSString *)matchingSnippet;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterCollection.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterCollection.h
deleted file mode 100644
index ea42d089..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterCollection.h
+++ /dev/null
@@ -1,40 +0,0 @@
-//
-// ICMHelpCenterCollection.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael McNamara on 26/05/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- ICMHelpCenterCollection represents a Help Center collection.
-*/
-NS_SWIFT_NAME(HelpCenterCollection)
-@interface ICMHelpCenterCollection : NSObject
-
-/**
- The id of this collection.
- */
-@property (nonatomic, copy) NSString *collectionId;
-
-/**
- The title of this collection.
- */
-@property (nonatomic, copy) NSString *title;
-
-/**
- A summary of this collection.
- */
-@property (nonatomic, copy, nullable) NSString *summary;
-
-- (instancetype)initWithCollectionId:(NSString *)collectionId
- title:(NSString *)title
- summary:(nullable NSString *)summary;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterCollectionContent.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterCollectionContent.h
deleted file mode 100644
index bcb3e45f..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterCollectionContent.h
+++ /dev/null
@@ -1,55 +0,0 @@
-//
-// ICMHelpCenterCollectionContent.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael McNamara on 03/06/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-@class ICMHelpCenterArticle;
-@class ICMHelpCenterSection;
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- ICMHelpCenterCollection represents a Help Center collection and its contents.
-*/
-NS_SWIFT_NAME(HelpCenterCollectionContent)
-@interface ICMHelpCenterCollectionContent : NSObject
-
-/**
- The id of this collection.
- */
-@property (nonatomic, copy) NSString *collectionId;
-
-/**
- The title of this collection.
- */
-@property (nonatomic, copy) NSString *title;
-
-/**
- A summary of this collection.
- */
-@property (nonatomic, copy, nullable) NSString *summary;
-
-/**
- The articles contained in this collection.
- */
-@property (nonatomic, strong) NSArray *articles;
-
-/**
- The sections contained in this collection.
- */
-@property (nonatomic, strong) NSArray *sections;
-
-- (instancetype)initWithCollectionId:(NSString *)collectionId
- title:(NSString *)title
- summary:(nullable NSString *)summary
- articles:(NSArray *)articles
- sections:(NSArray *)sections;
-
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterDataError.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterDataError.h
deleted file mode 100644
index acb225d8..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterDataError.h
+++ /dev/null
@@ -1,23 +0,0 @@
-//
-// ICMHelpCenterDataError.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael McNamara on 08/06/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-extern NSErrorDomain const ICMHelpCenterDataErrorDomain;
-
-typedef NS_ERROR_ENUM(ICMHelpCenterDataErrorDomain, ICMHelpCenterDataError) {
- contentNotAvailable = 1,
- networkError,
- somethingWentWrong,
- noUserRegistered,
- noAppRegistered
-};
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterSection.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterSection.h
deleted file mode 100644
index df4960f2..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMHelpCenterSection.h
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-// ICMHelpCenterSection.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael McNamara on 03/06/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-@class ICMHelpCenterArticle;
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- ICMHelpCenterSection represents a Help Center section.
-*/
-NS_SWIFT_NAME(HelpCenterSection)
-@interface ICMHelpCenterSection : NSObject
-
-/**
- The title of this section.
- */
-@property (nonatomic, copy) NSString *title;
-
-/**
- The articles contained in this section.
- */
-@property (nonatomic, strong) NSArray *articles;
-
-- (instancetype)initWithTitle:(NSString *)title
- articles:(NSArray *)articles;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMUserAttributes.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMUserAttributes.h
deleted file mode 100644
index 23fed07e..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/ICMUserAttributes.h
+++ /dev/null
@@ -1,104 +0,0 @@
-//
-// ICMUserAttributes.h
-//
-// Created by Intercom on 17/01/2017.
-// Copyright (c) 2017 Intercom. All rights reserved.
-//
-
-#import
-#import
-
-/**
- The ICMUserAttributes object is used for updating a user in Intercom.
- All of the default attributes you can modify are available as properties on ICMUserAttributes.
- This is an example of how to create an ICMUserAttributes object to update default attributes
-
- ICMUserAttributes *userAttributes = [ICMUserAttributes new];
- userAttributes.userId = @"12345";
- userAttributes.email = @"test@email.com";
- userAttributes.name = @"Andy";
-
- You can also add custom attributes to your user:
-
- ICMUserAttributes *userAttributes = [ICMUserAttributes new];
- userAttributes.userId = @"12345";
- userAttributes.email = @"test@email.com";
- userAttributes.customAttributes = @{@"items_in_cart" : @8};
-*/
-@interface ICMUserAttributes : NSObject
-
-/**
- The email for this user.
- */
-@property (nonatomic, copy, nullable) NSString *email;
-
-/**
- The user ID for this user.
- */
-@property (nonatomic, copy, nullable) NSString *userId;
-
-/**
- The name of this user.
- */
-@property (nonatomic, copy, nullable) NSString *name;
-
-/**
- The phone number of this user.
- */
-@property (nonatomic, copy, nullable) NSString *phone;
-
-/**
- The language override code for this user.
-
- @note languageOverride must be a valid language code. For more information see [here](https://docs.intercom.com/configure-intercom-for-your-product-or-site/customize-the-intercom-messenger/localize-intercom-to-work-with-multiple-languages ).
- */
-@property (nonatomic, copy, nullable) NSString *languageOverride;
-
-/**
- The signed up date for this user.
- */
-@property (nonatomic, strong, nullable) NSDate *signedUpAt;
-
-/**
- A boolean indicating if the user has unsubscribed from emails.
- */
-@property (nonatomic, assign) BOOL unsubscribedFromEmails;
-
-/**
- The companies for this user.
- */
-@property (nonatomic, strong, nullable) NSArray *companies;
-
-/**
- Custom attributes for this user.
- @note Each key must be an NSString and each value must be of type NSString, NSNumber or NSNull.
- */
-@property (nonatomic, strong, nullable) NSDictionary *customAttributes;
-
-/**
- Gives you a null value to apply to string attributes.
-
- @return the value to set on string attributes which you wish to be null
- */
-+ (nonnull NSString *)nullStringAttribute;
-
-/**
- Gives you a null value to apply to number attributes.
-
- @return the value to set on number attributes which you wish to be null
- */
-+ (nonnull NSNumber *)nullNumberAttribute;
-
-/**
- Gives you a null value to apply to date attributes.
-
- @return the value to set on date attributes which you wish to be null
- */
-+ (nonnull NSDate *)nullDateAttribute;
-
-/**
- A dictionary representation for the user attributes.
- */
-- (nonnull NSDictionary *)attributes;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/Intercom.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/Intercom.h
deleted file mode 100644
index fba61d94..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Headers/Intercom.h
+++ /dev/null
@@ -1,452 +0,0 @@
-//
-// Intercom.h
-// Intercom for iOS
-//
-// Created by Intercom on 8/01/2015.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- Intercom is your direct line of communication to every user, right inside your app. Intercom’s in-app messages
- are up to 10 times more effective than email too! Send the right messages, to the right users, at exactly the right time.
-
- ## How do I track my users?
-
- In order to see your users in Intercom's user list, you must first register them via your iOS application. If you have a
- place in your application where you become aware of the user's identity such as a log in view controller, call one of the
- following depending on the information you have available for that user:
-
- If you have both a unique user identifier and an email for your users::
-
- [Intercom registerUserWithUserId:@"123456" email:@"joe@example.com"];
-
- If you only have a unique identifier for your users:
-
- [Intercom registerUserWithUserId:@"123456"];
-
- Finally, if you only have an email address for your users:
-
- [Intercom registerUserWithEmail:@"joe@example.com"];
-
- ## Can I track unidentified users?
-
- Yes, absolutely. If you have an application that doesn't require users to log in, you can call:
-
- [Intercom registerUnidentifiedUser];
-
- If the user subsequently logs in or you learn additional information about them (e.g. get an email address),
- calling any of the other user registration methods will update that user's identity in Intercom and contain
- all user data tracked previously.
-
- ## How do push notifications work?
-
- Intercom for iOS enables your users to receive push notifications for new messages. Simply call:
-
- - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
- [Intercom setDeviceToken:deviceToken];
- }
-
- in your `didRegisterForRemoteNotificationsWithDeviceToken:` method once you have registered your app for
- push notifications with the `UIApplicationDelegate`.
-
- When your app receives a push notification Intercom for iOS checks to see if it is an Intercom push notification
- and opens the message. You do not need to implement any additional code in order to launch the message window.
-
- To do this we [safely swizzle](http://blog.newrelic.com/2014/04/16/right-way-to-swizzle/) the public methods
- in `UIApplicationDelegate` that handle receiving push notifications. We do not use any private APIs to do this.
-
- ## More information
-
- Full documentation is available [here](https://developers.intercom.com/docs/ios-installation ) and please contact
- us directly via Intercom for any support or questions you may have.
-
- */
-@interface Intercom : NSObject
-
-#pragma mark - Intercom Initialisation
-
-//=========================================================================================================
-/*! @name Getting set up */
-//=========================================================================================================
-/*!
- Initialize Intercom with your iOS API key and App ID. This will allow your app to connect with Intercom.
- This is best done in the application delegate's didFinishLaunchingWithOptions: method.
-
- @param apiKey The iOS API key found on the API Key settings page.
- @param appId The App ID of your Intercom app.
- */
-+ (void)setApiKey:(NSString *)apiKey forAppId:(NSString *)appId;
-
-//=========================================================================================================
-/*! @name Using Identity Verification */
-//=========================================================================================================
-/*!
- Identity Verification helps to make sure that conversations between you and your users are kept private, and that one
- user can't impersonate another. If Identity Verification is enabled for your app, Intercom for iOS will sign all requests
- going to the Intercom servers with tokens. It requires your mobile application to have its own server which authenticates the app's users,
- and which can store a secret. More information on Identity Verification can be found [here](https://developers.intercom.com/docs/ios-identity-verification)
-
-
- @note This should be called before any user registration takes place.
- @param userHash A HMAC digest of the user ID or email.
- */
-+ (void)setUserHash:(NSString *)userHash;
-
-#pragma mark - User Registration
-
-//=========================================================================================================
-/*! @name Working with anonymous users */
-//=========================================================================================================
-/*!
- If you call registerUnidentifiedUser, all activity will be tracked anonymously. If you choose to subsequently
- identify that user, all that anonymous activity will be merged into the identified user. This means that you
- will no longer see the anonymous user in Intercom, but rather the identified one.
-
- We recommend this is called from within the application delegate's didFinishLaunchingWithOptions: method.
-
- @note You must call one of the user registration methods in order to start communicating with Intercom.
- */
-+ (void)registerUnidentifiedUser;
-
-//=========================================================================================================
-/*! @name Working with identified users */
-//=========================================================================================================
-/*!
- In order to keep track of a specific user, you must identify it with a unique user identifier, an email
- address, or both. By supplying information like this Intercom provides richer user profiles for your users.
- This is a userId, supplied by you (e.g. from an existing web service for your product) to represent your
- user in Intercom, once set it cannot be changed.
-
- If you are putting Intercom for iOS into an app that has persisted an authentication token or equivalent
- so your users don't have to log in repeatedly (like most apps) then we advise putting the user registration
- call in the `didBecomeActive:` method in your application delegate. This won't have any negative impact if
- you also add it to your authentication success method elsewhere in your app.
-
- @param userId A unique identifier for your user.
- @param email Your user's email address.
- @note You must call one of the user registration methods in order to start communicating with Intercom.
- */
-+ (void)registerUserWithUserId:(NSString *)userId email:(NSString *)email;
-
-/*!
- Register a user just with their userId.
-
- @param userId A unique identifier for your user.
- @note You must call one of the user registration methods in order to start communicating with Intercom.
- */
-+ (void)registerUserWithUserId:(NSString *)userId;
-
-/*!
- Register a user with just their email address.
-
- @param email Your user's email address.
- @note You must call one of the user registration methods in order to start communicating with Intercom.
- */
-+ (void)registerUserWithEmail:(NSString *)email;
-
-//=========================================================================================================
-/*! @name Logging the user out */
-//=========================================================================================================
-/*!
- logout is used to clear all local caches and user data Intercom has created. Logout will also close any active
- UI that is on screen. Use this at a time when you wish to log a user out of your app or change a user.
- Once called, Intercom for iOS will no longer communicate with Intercom until a further registration is made.
- */
-+ (void)logout;
-
-/*!
- @deprecated +[Intercom reset] is deprecated. Use +[Intercom logout] instead.
- */
-+ (void)reset __attribute((deprecated("'+[Intercom reset]' is deprecated. 'Use +[Intercom logout]' instead.")));
-
-//=========================================================================================================
-/** @name Updating the user */
-//=========================================================================================================
-/*!
- You can send any data you like to Intercom. Typically our customers see a lot of value in sending data that
- relates to customer development, such as price plan, value of purchases, etc. Once these have been sent to
- Intercom you can then apply filters based on these attributes.
-
- Details on attributes available to update can be found in ICMUserAttributes.
-
- @param userAttributes The attributes to update the user with.
- */
-+ (void)updateUser:(ICMUserAttributes *)userAttributes;
-
-#pragma mark - Log Event
-
-/*!
- Log an event with a given name.
-
- You can log events in Intercom based on user actions in your app. Events are different
- to custom user attributes in that events are information on what Users did and when they
- did it, whereas custom user attributes represent the User's current state as seen in their
- profile. See details about Events [here](https://developers.intercom.com/reference/#events )
-
- @param name The name of the event that it is going to be logged.
- */
-+ (void)logEventWithName:(NSString *)name;
-
-/*!
- Metadata Objects support a few simple types that Intercom can present on your behalf, see the
- [Intercom API docs](https://developers.intercom.com/reference/#event-metadata-types )
-
- [Intercom logEventWithName:@"ordered_item" metaData:@{
- @"order_date": @1392036272,
- @"stripe_invoice": @"inv_3434343434",
- @"order_number": @{
- @"value": @"3434-3434",
- @"url": @"https://example.org/orders/3434-3434"
- }];
-
- @param name The name of the event you wish to track.
- @param metaData contains simple types to present to Intercom
- */
-+ (void)logEventWithName:(NSString *)name metaData:(NSDictionary *)metaData;
-
-//=========================================================================================================
-/*! @name Show Intercom messages and message composers */
-//=========================================================================================================
-
-#pragma mark - Present Messenger
-
-/*!
- Present the Intercom Messenger
-
- Opens the Intercom messenger automatically to the best place for your users.
- */
-+ (void)presentMessenger;
-
-/*!
- Present the message composer.
- @param initialMessage An optional message that is used to pre-populate the composer with some text.
- */
-+ (void)presentMessageComposer:(nullable NSString *)initialMessage;
-
-/*!
- Present the message composer.
- */
-+ (void)presentMessageComposer __attribute((deprecated("'+[Intercom presentMessageComposer]' is deprecated. 'Use +[Intercom presentMessageComposer:initialMessage]' instead.")));
-
-/*!
- Present the message composer with a message to pre-populate the composer.
- */
-+ (void)presentMessageComposerWithInitialMessage:(NSString *)message __attribute((deprecated("'+[Intercom presentMessageComposerWithInitialMessage]' is deprecated. 'Use +[Intercom presentMessageComposer:initialMessage]' instead.")));
-
-/*!
- Present the conversation list.
- */
-+ (void)presentConversationList __attribute((deprecated("'+[Intercom presentConversationList]' is deprecated. 'Use +[Intercom presentMessenger]' instead.")));;
-
-#pragma mark - Help Center UI
-
-/*!
- Present the Help Center.
- */
-+ (void)presentHelpCenter;
-
-/*!
- Present the Help Center with specific collections only.
- - Note: If the requested collections cannot be found, the full Help Center will be shown instead.
- @param collectionIds The ID of the collections to be presented.
- */
-+ (void)presentHelpCenterCollections:(nonnull NSArray *)collectionIds;
-
-/*!
- Present an article.
- @param articleId The ID of the article to be presented.
- */
-+ (void)presentArticle:(nonnull NSString *)articleId;
-
-#pragma mark - Help Center Data API
-
-/*!
- Fetch all Help Center collections.
- @param completion A completion callback with two parameters: an array of collections or an error.
- */
-+ (void)fetchHelpCenterCollectionsWithCompletion:(void (^)(NSArray *_Nullable collections, NSError *_Nullable error))completion NS_REFINED_FOR_SWIFT;
-
-/*!
- Fetch the contents of a Help Center collection.
- @param collectionId The ID of the Help Center collection.
- @param completion A completion callback with two parameters: a collection content object or an error.
- */
-+ (void)fetchHelpCenterCollection:(nonnull NSString *)collectionId
- withCompletion:(void (^)(ICMHelpCenterCollectionContent *_Nullable collectionContent, NSError *_Nullable error))completion NS_REFINED_FOR_SWIFT;
-
-/*!
- Search the Help Center.
- @param searchTerm The search string.
- @param completion A completion callback with two parameters: an array of search results or an error.
- */
-+ (void)searchHelpCenter:(nonnull NSString *)searchTerm
- withCompletion:(void (^)(NSArray *_Nullable articleSearchResults, NSError *_Nullable error))completion NS_REFINED_FOR_SWIFT;
-
-#pragma mark - Mobile Carousels
-
-/*!
- Present a Mobile Carousel.
- @param carouselId The ID of the Mobile Carousel to be presented.
- */
-+ (void)presentCarousel:(nonnull NSString *)carouselId;
-
-#pragma mark - Push Notifications
-
-//=========================================================================================================
-/*! @name Working with push notifications */
-//=========================================================================================================
-/*!
- Set the device token for push notifications. Once the device token is set, the methods for receiving push
- notifications are safely swizzled so ones sent from Intercom can be intercepted. When a push notification from
- Intercom is received, Intercom for iOS will automatically launch the message from the notification.
-
- @param deviceToken The device token provided in the `didRegisterForRemoteNotificationsWithDeviceToken` method.
- */
-+ (void)setDeviceToken:(NSData *)deviceToken;
-
-/*!
- Use this method to check if a push notification payload was sent by Intercom. Typically you should call
- +[Intercom handleIntercomPushNotification:] after checking this.
-
- @note This is only needed if you have set `IntercomAutoIntegratePushNotifications` to NO in your Info.plist
- @return YES if the payload is an Intercom push notification, NO otherwise.
- */
-+ (BOOL)isIntercomPushNotification:(NSDictionary *)userInfo;
-
-/*!
- Use this method to handle a push notification payload received by Intercom. You should first check if this
- notification was send by Intercom with `+[Intercom isIntercomPushNotification:]`.
-
- @note This is only needed if you have set `IntercomAutoIntegratePushNotifications` to NO in your Info.plist
- */
-+ (void)handleIntercomPushNotification:(NSDictionary *)userInfo;
-
-#pragma mark - Intercom UI Visibility
-
-//=========================================================================================================
-/*! @name Incoming message presentation options */
-//=========================================================================================================
-
-/*!
- This method allows you to set a fixed bottom padding for in app messages and the launcher.
- It is useful if your app has a tab bar or similar UI at the bottom of your window.
-
- @param bottomPadding The size of the bottom padding in points.
- */
-+ (void)setBottomPadding:(CGFloat)bottomPadding;
-
-//=========================================================================================================
-/*! @name Intercom UI Visibility */
-//=========================================================================================================
-
-/*!
- Use this to hide all incoming Intercom messages and message previews in the parts of your app where you do
- not wish to interrupt users, for example Camera views, parts of a game or other scenarios.
-
- By default, all in app messages will be visible.
-
- @param visible A boolean indicating if in app messages should be visible.
- */
-+ (void)setInAppMessagesVisible:(BOOL)visible;
-
-/*!
- Use this to show the Intercom launcher selectively within your app. If you choose to display the launcher,
- you may want to hide it on some screens where screen space is critical (e.g. parts of a game).
-
- By default, the launcher is hidden.
-
- @param visible A boolean indicating if the launcher should be visible.
- */
-+ (void)setLauncherVisible:(BOOL)visible;
-
-/*!
- Hide all Intercom windows that are currently displayed.
- This will hide the Messenger, Help Center, Articles, and in-product messages (eg. Mobile Carousels, chats, and posts).
- */
-+ (void)hideIntercom;
-
-#pragma mark - Unread Conversation Count
-
-//=========================================================================================================
-/*! @name Unread conversations */
-//=========================================================================================================
-
-/*!
- This method provides the current number of unread conversations.
- This is useful if you want to display a badge counter on the button where you launch Intercom.
-
- @return The number of unread conversations.
- */
-+ (NSUInteger)unreadConversationCount;
-
-/*!
- This notification is fired when the number of unread conversations changes.
- */
-UIKIT_EXTERN NSString *const IntercomUnreadConversationCountDidChangeNotification;
-
-#pragma mark - Logging
-
-//=========================================================================================================
-/*! @name Enable logging */
-//=========================================================================================================
-
-/*!
- Enable logging for Intercom for iOS. By calling this method, Intercom will display debug information.
- @note it is recommended to use it only while debugging)
- */
-+ (void)enableLogging;
-
-//=========================================================================================================
-/*! @name Status bar handling */
-//=========================================================================================================
-
-/*!
- If you wish to change your status bar's style or visibility while an Intercom notification may be on
- screen, call this method so that Intercom's window can reflect these changes accordingly.
- */
-+ (void)setNeedsStatusBarAppearanceUpdate;
-
-//=========================================================================================================
-/*! @name Intercom Notifications */
-//=========================================================================================================
-/*!
- These are notifications thrown by Intercom for iOS when the Intercom window is displayed and hidden.
- These notifications are fired only when there is a change in the state
- of Intercom's UI: when a user receives a message for instance, willShow and didShow notifications will be
- fired accordingly when the Intercom Notification (chat head) is presented.
-
- Once the user taps on the chat head, the message is presented in your app. It will be presented covering
- the entire screen, but no notifications will be thrown here as Intercom has already been visible.
-
- In the case of a new conversation the notification `IntercomDidStartNewConversationNotification`, this
- notification is fired when a new conversation is started. This may be used to prompt users to enable push notifications.
-
- The Intercom Help Center notifications are fired when the Help Center is being displayed or hidden.
- These notifications can be used to take certain actions in your app before and after the Help Center is displayed to the user.
- */
-
-UIKIT_EXTERN NSString *const IntercomWindowWillShowNotification;
-UIKIT_EXTERN NSString *const IntercomWindowDidShowNotification;
-UIKIT_EXTERN NSString *const IntercomWindowWillHideNotification;
-UIKIT_EXTERN NSString *const IntercomWindowDidHideNotification;
-UIKIT_EXTERN NSString *const IntercomDidStartNewConversationNotification;
-UIKIT_EXTERN NSString *const IntercomHelpCenterWillShowNotification;
-UIKIT_EXTERN NSString *const IntercomHelpCenterDidShowNotification;
-UIKIT_EXTERN NSString *const IntercomHelpCenterWillHideNotification;
-UIKIT_EXTERN NSString *const IntercomHelpCenterDidHideNotification;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Info.plist b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Info.plist
deleted file mode 100644
index 7c900c98..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Info.plist and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/Assets.car b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/Assets.car
deleted file mode 100644
index 1d754380..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/Assets.car and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/Info.plist b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/Info.plist
deleted file mode 100644
index 6cc094c3..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/Info.plist and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/_CodeSignature/CodeDirectory b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/_CodeSignature/CodeDirectory
deleted file mode 100644
index a1e35f54..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/_CodeSignature/CodeDirectory and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/_CodeSignature/CodeRequirements b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/_CodeSignature/CodeRequirements
deleted file mode 100644
index dbf9d614..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/_CodeSignature/CodeRequirements and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/_CodeSignature/CodeRequirements-1 b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/_CodeSignature/CodeRequirements-1
deleted file mode 100644
index 49e3306e..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/_CodeSignature/CodeRequirements-1 and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/_CodeSignature/CodeResources b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/_CodeSignature/CodeResources
deleted file mode 100644
index a62db0a5..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/_CodeSignature/CodeResources
+++ /dev/null
@@ -1,113 +0,0 @@
-
-
-
-
- files
-
- Assets.car
-
- DOFi6+95lhPCuP0NXl7HUoNKe+E=
-
-
- files2
-
- Assets.car
-
- hash
-
- DOFi6+95lhPCuP0NXl7HUoNKe+E=
-
- hash2
-
- rm6ueJT1/x0qknkgh7SPCzjAVFIcjrvXYvzb7IqqMts=
-
-
-
- rules
-
- ^.*
-
- ^.*\.lproj/
-
- optional
-
- weight
- 1000
-
- ^.*\.lproj/locversion.plist$
-
- omit
-
- weight
- 1100
-
- ^Base\.lproj/
-
- weight
- 1010
-
- ^version.plist$
-
-
- rules2
-
- .*\.dSYM($|/)
-
- weight
- 11
-
- ^(.*/)?\.DS_Store$
-
- omit
-
- weight
- 2000
-
- ^.*
-
- ^.*\.lproj/
-
- optional
-
- weight
- 1000
-
- ^.*\.lproj/locversion.plist$
-
- omit
-
- weight
- 1100
-
- ^Base\.lproj/
-
- weight
- 1010
-
- ^Info\.plist$
-
- omit
-
- weight
- 20
-
- ^PkgInfo$
-
- omit
-
- weight
- 20
-
- ^embedded\.provisionprofile$
-
- weight
- 20
-
- ^version\.plist$
-
- weight
- 20
-
-
-
-
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/_CodeSignature/CodeSignature b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/InterBlocksAssets.bundle/_CodeSignature/CodeSignature
deleted file mode 100644
index e69de29b..00000000
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom
deleted file mode 100755
index 776b70ea..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/data/intercom_area_codes.json b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/data/intercom_area_codes.json
deleted file mode 100644
index 7604ab2d..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/data/intercom_area_codes.json
+++ /dev/null
@@ -1 +0,0 @@
-[{"code":"AD","emoji":"🇦🇩","dialCode":"376","priority":"0"},{"code":"AE","emoji":"🇦🇪","dialCode":"971","priority":"0"},{"code":"AF","emoji":"🇦🇫","dialCode":"93","priority":"0"},{"code":"AG","emoji":"🇦🇬","dialCode":"1268","priority":"0"},{"code":"AI","emoji":"🇦🇮","dialCode":"1264","priority":"0"},{"code":"AL","emoji":"🇦🇱","dialCode":"355","priority":"0"},{"code":"AM","emoji":"🇦🇲","dialCode":"374","priority":"0"},{"code":"AO","emoji":"🇦🇴","dialCode":"244","priority":"0"},{"code":"AQ","emoji":"🇦🇶","dialCode":"672","priority":"0"},{"code":"AR","emoji":"🇦🇷","dialCode":"54","priority":"0"},{"code":"AS","emoji":"🇦🇸","dialCode":"1684","priority":"0"},{"code":"AT","emoji":"🇦🇹","dialCode":"43","priority":"0"},{"code":"AU","emoji":"🇦🇺","dialCode":"61","priority":"0"},{"code":"AW","emoji":"🇦🇼","dialCode":"297","priority":"0"},{"code":"AX","emoji":"🇦🇽","dialCode":"358","priority":"0"},{"code":"AZ","emoji":"🇦🇿","dialCode":"994","priority":"0"},{"code":"BA","emoji":"🇧🇦","dialCode":"387","priority":"0"},{"code":"BB","emoji":"🇧🇧","dialCode":"1246","priority":"0"},{"code":"BD","emoji":"🇧🇩","dialCode":"880","priority":"0"},{"code":"BE","emoji":"🇧🇪","dialCode":"32","priority":"0"},{"code":"BF","emoji":"🇧🇫","dialCode":"226","priority":"0"},{"code":"BG","emoji":"🇧🇬","dialCode":"359","priority":"0"},{"code":"BH","emoji":"🇧🇭","dialCode":"973","priority":"0"},{"code":"BI","emoji":"🇧🇮","dialCode":"257","priority":"0"},{"code":"BJ","emoji":"🇧🇯","dialCode":"229","priority":"0"},{"code":"BL","emoji":"🇧🇱","dialCode":"590","priority":"0"},{"code":"BM","emoji":"🇧🇲","dialCode":"1441","priority":"0"},{"code":"BN","emoji":"🇧🇳","dialCode":"673","priority":"0"},{"code":"BO","emoji":"🇧🇴","dialCode":"591","priority":"0"},{"code":"BQ","emoji":"🇧🇶","dialCode":"599","priority":"0"},{"code":"BR","emoji":"🇧🇷","dialCode":"55","priority":"0"},{"code":"BS","emoji":"🇧🇸","dialCode":"1242","priority":"0"},{"code":"BT","emoji":"🇧🇹","dialCode":"975","priority":"0"},{"code":"BW","emoji":"🇧🇼","dialCode":"267","priority":"0"},{"code":"BY","emoji":"🇧🇾","dialCode":"375","priority":"0"},{"code":"BZ","emoji":"🇧🇿","dialCode":"501","priority":"0"},{"code":"CA","emoji":"🇨🇦","dialCode":"1","areaCodes":["204","226","236","249","250","289","306","343","365","387","403","416","418","431","437","438","450","506","514","519","548","579","581","587","604","613","639","647","672","705","709","742","778","780","782","807","819","825","867","873","902","905"],"priority":"2"},{"code":"CC","emoji":"🇨🇨","dialCode":"61","priority":"0"},{"code":"CD","emoji":"🇨🇩","dialCode":"243","priority":"0"},{"code":"CF","emoji":"🇨🇫","dialCode":"236","priority":"0"},{"code":"CG","emoji":"🇨🇬","dialCode":"242","priority":"0"},{"code":"CH","emoji":"🇨🇭","dialCode":"41","priority":"0"},{"code":"CI","emoji":"🇨🇮","dialCode":"225","priority":"0"},{"code":"CK","emoji":"🇨🇰","dialCode":"682","priority":"0"},{"code":"CL","emoji":"🇨🇱","dialCode":"56","priority":"0"},{"code":"CM","emoji":"🇨🇲","dialCode":"237","priority":"0"},{"code":"CN","emoji":"🇨🇳","dialCode":"86","priority":"0"},{"code":"CO","emoji":"🇨🇴","dialCode":"57","priority":"0"},{"code":"CR","emoji":"🇨🇷","dialCode":"506","priority":"0"},{"code":"CU","emoji":"🇨🇺","dialCode":"53","priority":"0"},{"code":"CV","emoji":"🇨🇻","dialCode":"238","priority":"0"},{"code":"CW","emoji":"🇨🇼","dialCode":"599","priority":"0"},{"code":"CX","emoji":"🇨🇽","dialCode":"61","priority":"0"},{"code":"CY","emoji":"🇨🇾","dialCode":"357","priority":"0"},{"code":"CZ","emoji":"🇨🇿","dialCode":"420","priority":"0"},{"code":"DE","emoji":"🇩🇪","dialCode":"49","priority":"0"},{"code":"DJ","emoji":"🇩🇯","dialCode":"253","priority":"0"},{"code":"DK","emoji":"🇩🇰","dialCode":"45","priority":"0"},{"code":"DM","emoji":"🇩🇲","dialCode":"1767","priority":"0"},{"code":"DO","emoji":"🇩🇴","dialCode":"1","areaCodes":["809","829","849"],"priority":"2"},{"code":"DZ","emoji":"🇩🇿","dialCode":"213","priority":"0"},{"code":"EC","emoji":"🇪🇨","dialCode":"593","priority":"0"},{"code":"EE","emoji":"🇪🇪","dialCode":"372","priority":"0"},{"code":"EG","emoji":"🇪🇬","dialCode":"20","priority":"0"},{"code":"EH","emoji":"🇪🇭","dialCode":"212","priority":"0"},{"code":"ER","emoji":"🇪🇷","dialCode":"291","priority":"0"},{"code":"ES","emoji":"🇪🇸","dialCode":"34","priority":"0"},{"code":"ET","emoji":"🇪🇹","dialCode":"251","priority":"0"},{"code":"FI","emoji":"🇫🇮","dialCode":"358","priority":"0"},{"code":"FJ","emoji":"🇫🇯","dialCode":"679","priority":"0"},{"code":"FK","emoji":"🇫🇰","dialCode":"500","priority":"0"},{"code":"FM","emoji":"🇫🇲","dialCode":"691","priority":"0"},{"code":"FO","emoji":"🇫🇴","dialCode":"298","priority":"0"},{"code":"FR","emoji":"🇫🇷","dialCode":"33","priority":"0"},{"code":"GA","emoji":"🇬🇦","dialCode":"241","priority":"0"},{"code":"GB","emoji":"🇬🇧","dialCode":"44","priority":"1"},{"code":"GD","emoji":"🇬🇩","dialCode":"1473","priority":"0"},{"code":"GE","emoji":"🇬🇪","dialCode":"995","priority":"0"},{"code":"GF","emoji":"🇬🇫","dialCode":"594","priority":"0"},{"code":"GG","emoji":"🇬🇬","dialCode":"44","areaCodes":["1481"],"priority":"2"},{"code":"GH","emoji":"🇬🇭","dialCode":"233","priority":"0"},{"code":"GI","emoji":"🇬🇮","dialCode":"350","priority":"0"},{"code":"GL","emoji":"🇬🇱","dialCode":"299","priority":"0"},{"code":"GM","emoji":"🇬🇲","dialCode":"220","priority":"0"},{"code":"GN","emoji":"🇬🇳","dialCode":"224","priority":"0"},{"code":"GP","emoji":"🇬🇵","dialCode":"590","priority":"0"},{"code":"GQ","emoji":"🇬🇶","dialCode":"240","priority":"0"},{"code":"GR","emoji":"🇬🇷","dialCode":"30","priority":"0"},{"code":"GT","emoji":"🇬🇹","dialCode":"502","priority":"0"},{"code":"GU","emoji":"🇬🇺","dialCode":"1671","priority":"0"},{"code":"GW","emoji":"🇬🇼","dialCode":"245","priority":"0"},{"code":"GY","emoji":"🇬🇾","dialCode":"592","priority":"0"},{"code":"HK","emoji":"🇭🇰","dialCode":"852","priority":"0"},{"code":"HN","emoji":"🇭🇳","dialCode":"504","priority":"0"},{"code":"HR","emoji":"🇭🇷","dialCode":"385","priority":"0"},{"code":"HT","emoji":"🇭🇹","dialCode":"509","priority":"0"},{"code":"HU","emoji":"🇭🇺","dialCode":"36","priority":"0"},{"code":"ID","emoji":"🇮🇩","dialCode":"62","priority":"0"},{"code":"IE","emoji":"🇮🇪","dialCode":"353","priority":"0"},{"code":"IL","emoji":"🇮🇱","dialCode":"972","priority":"0"},{"code":"IM","emoji":"🇮🇲","dialCode":"44","areaCodes":["1624"],"priority":"2"},{"code":"IN","emoji":"🇮🇳","dialCode":"91","priority":"0"},{"code":"IO","emoji":"🇮🇴","dialCode":"246","priority":"0"},{"code":"IQ","emoji":"🇮🇶","dialCode":"964","priority":"0"},{"code":"IR","emoji":"🇮🇷","dialCode":"98","priority":"0"},{"code":"IS","emoji":"🇮🇸","dialCode":"354","priority":"0"},{"code":"IT","emoji":"🇮🇹","dialCode":"39","priority":"0"},{"code":"JE","emoji":"🇯🇪","dialCode":"44","areaCodes":["1534"],"priority":"2"},{"code":"JM","emoji":"🇯🇲","dialCode":"1876","priority":"0"},{"code":"JO","emoji":"🇯🇴","dialCode":"962","priority":"0"},{"code":"JP","emoji":"🇯🇵","dialCode":"81","priority":"0"},{"code":"KE","emoji":"🇰🇪","dialCode":"254","priority":"0"},{"code":"KG","emoji":"🇰🇬","dialCode":"996","priority":"0"},{"code":"KH","emoji":"🇰🇭","dialCode":"855","priority":"0"},{"code":"KI","emoji":"🇰🇮","dialCode":"686","priority":"0"},{"code":"KM","emoji":"🇰🇲","dialCode":"269","priority":"0"},{"code":"KN","emoji":"🇰🇳","dialCode":"1869","priority":"0"},{"code":"KP","emoji":"🇰🇵","dialCode":"850","priority":"0"},{"code":"KR","emoji":"🇰🇷","dialCode":"82","priority":"0"},{"code":"KW","emoji":"🇰🇼","dialCode":"965","priority":"0"},{"code":"KY","emoji":"🇰🇾","dialCode":"1345","priority":"0"},{"code":"KZ","emoji":"🇰🇿","dialCode":"7","priority":"0"},{"code":"LA","emoji":"🇱🇦","dialCode":"856","priority":"0"},{"code":"LB","emoji":"🇱🇧","dialCode":"961","priority":"0"},{"code":"LC","emoji":"🇱🇨","dialCode":"1758","priority":"0"},{"code":"LI","emoji":"🇱🇮","dialCode":"423","priority":"0"},{"code":"LK","emoji":"🇱🇰","dialCode":"94","priority":"0"},{"code":"LR","emoji":"🇱🇷","dialCode":"231","priority":"0"},{"code":"LS","emoji":"🇱🇸","dialCode":"266","priority":"0"},{"code":"LT","emoji":"🇱🇹","dialCode":"370","priority":"0"},{"code":"LU","emoji":"🇱🇺","dialCode":"352","priority":"0"},{"code":"LV","emoji":"🇱🇻","dialCode":"371","priority":"0"},{"code":"LY","emoji":"🇱🇾","dialCode":"218","priority":"0"},{"code":"MA","emoji":"🇲🇦","dialCode":"212","priority":"0"},{"code":"MC","emoji":"🇲🇨","dialCode":"377","priority":"0"},{"code":"MD","emoji":"🇲🇩","dialCode":"373","priority":"0"},{"code":"ME","emoji":"🇲🇪","dialCode":"382","priority":"0"},{"code":"MF","emoji":"🇲🇫","dialCode":"590","priority":"0"},{"code":"MG","emoji":"🇲🇬","dialCode":"261","priority":"0"},{"code":"MH","emoji":"🇲🇭","dialCode":"692","priority":"0"},{"code":"MK","emoji":"🇲🇰","dialCode":"389","priority":"0"},{"code":"ML","emoji":"🇲🇱","dialCode":"223","priority":"0"},{"code":"MM","emoji":"🇲🇲","dialCode":"95","priority":"0"},{"code":"MN","emoji":"🇲🇳","dialCode":"976","priority":"0"},{"code":"MO","emoji":"🇲🇴","dialCode":"853","priority":"0"},{"code":"MP","emoji":"🇲🇵","dialCode":"1670","priority":"0"},{"code":"MQ","emoji":"🇲🇶","dialCode":"596","priority":"0"},{"code":"MR","emoji":"🇲🇷","dialCode":"222","priority":"0"},{"code":"MS","emoji":"🇲🇸","dialCode":"1664","priority":"0"},{"code":"MT","emoji":"🇲🇹","dialCode":"356","priority":"0"},{"code":"MU","emoji":"🇲🇺","dialCode":"230","priority":"0"},{"code":"MV","emoji":"🇲🇻","dialCode":"960","priority":"0"},{"code":"MW","emoji":"🇲🇼","dialCode":"265","priority":"0"},{"code":"MX","emoji":"🇲🇽","dialCode":"52","priority":"0"},{"code":"MY","emoji":"🇲🇾","dialCode":"60","priority":"0"},{"code":"MZ","emoji":"🇲🇿","dialCode":"258","priority":"0"},{"code":"NA","emoji":"🇳🇦","dialCode":"264","priority":"0"},{"code":"NC","emoji":"🇳🇨","dialCode":"687","priority":"0"},{"code":"NE","emoji":"🇳🇪","dialCode":"227","priority":"0"},{"code":"NF","emoji":"🇳🇫","dialCode":"672","priority":"0"},{"code":"NG","emoji":"🇳🇬","dialCode":"234","priority":"0"},{"code":"NI","emoji":"🇳🇮","dialCode":"505","priority":"0"},{"code":"NL","emoji":"🇳🇱","dialCode":"31","priority":"0"},{"code":"NO","emoji":"🇳🇴","dialCode":"47","priority":"0"},{"code":"NP","emoji":"🇳🇵","dialCode":"977","priority":"0"},{"code":"NR","emoji":"🇳🇷","dialCode":"674","priority":"0"},{"code":"NU","emoji":"🇳🇺","dialCode":"683","priority":"0"},{"code":"NZ","emoji":"🇳🇿","dialCode":"64","priority":"0"},{"code":"OM","emoji":"🇴🇲","dialCode":"968","priority":"0"},{"code":"PA","emoji":"🇵🇦","dialCode":"507","priority":"0"},{"code":"PE","emoji":"🇵🇪","dialCode":"51","priority":"0"},{"code":"PF","emoji":"🇵🇫","dialCode":"689","priority":"0"},{"code":"PG","emoji":"🇵🇬","dialCode":"675","priority":"0"},{"code":"PH","emoji":"🇵🇭","dialCode":"63","priority":"0"},{"code":"PK","emoji":"🇵🇰","dialCode":"92","priority":"0"},{"code":"PL","emoji":"🇵🇱","dialCode":"48","priority":"0"},{"code":"PM","emoji":"🇵🇲","dialCode":"508","priority":"0"},{"code":"PR","emoji":"🇵🇷","dialCode":"1","areaCodes":["787","939"],"priority":"2"},{"code":"PS","emoji":"🇵🇸","dialCode":"970","priority":"0"},{"code":"PT","emoji":"🇵🇹","dialCode":"351","priority":"0"},{"code":"PW","emoji":"🇵🇼","dialCode":"680","priority":"0"},{"code":"PY","emoji":"🇵🇾","dialCode":"595","priority":"0"},{"code":"QA","emoji":"🇶🇦","dialCode":"974","priority":"0"},{"code":"RE","emoji":"🇷🇪","dialCode":"262","priority":"0"},{"code":"RO","emoji":"🇷🇴","dialCode":"40","priority":"0"},{"code":"RS","emoji":"🇷🇸","dialCode":"381","priority":"0"},{"code":"RU","emoji":"🇷🇺","dialCode":"7","priority":"0"},{"code":"RW","emoji":"🇷🇼","dialCode":"250","priority":"0"},{"code":"SA","emoji":"🇸🇦","dialCode":"966","priority":"0"},{"code":"SB","emoji":"🇸🇧","dialCode":"677","priority":"0"},{"code":"SC","emoji":"🇸🇨","dialCode":"248","priority":"0"},{"code":"SD","emoji":"🇸🇩","dialCode":"249","priority":"0"},{"code":"SE","emoji":"🇸🇪","dialCode":"46","priority":"0"},{"code":"SG","emoji":"🇸🇬","dialCode":"65","priority":"0"},{"code":"SH","emoji":"🇸🇭","dialCode":"290","priority":"0"},{"code":"SI","emoji":"🇸🇮","dialCode":"386","priority":"0"},{"code":"SJ","emoji":"🇸🇯","dialCode":"47","priority":"0"},{"code":"SK","emoji":"🇸🇰","dialCode":"421","priority":"0"},{"code":"SL","emoji":"🇸🇱","dialCode":"232","priority":"0"},{"code":"SM","emoji":"🇸🇲","dialCode":"378","priority":"0"},{"code":"SN","emoji":"🇸🇳","dialCode":"221","priority":"0"},{"code":"SO","emoji":"🇸🇴","dialCode":"252","priority":"0"},{"code":"SR","emoji":"🇸🇷","dialCode":"597","priority":"0"},{"code":"SS","emoji":"🇸🇸","dialCode":"211","priority":"0"},{"code":"ST","emoji":"🇸🇹","dialCode":"239","priority":"0"},{"code":"SV","emoji":"🇸🇻","dialCode":"503","priority":"0"},{"code":"SX","emoji":"🇸🇽","dialCode":"1721","priority":"0"},{"code":"SY","emoji":"🇸🇾","dialCode":"963","priority":"0"},{"code":"SZ","emoji":"🇸🇿","dialCode":"268","priority":"0"},{"code":"TC","emoji":"🇹🇨","dialCode":"1649","priority":"0"},{"code":"TD","emoji":"🇹🇩","dialCode":"235","priority":"0"},{"code":"TG","emoji":"🇹🇬","dialCode":"228","priority":"0"},{"code":"TH","emoji":"🇹🇭","dialCode":"66","priority":"0"},{"code":"TJ","emoji":"🇹🇯","dialCode":"992","priority":"0"},{"code":"TK","emoji":"🇹🇰","dialCode":"690","priority":"0"},{"code":"TL","emoji":"🇹🇱","dialCode":"670","priority":"0"},{"code":"TM","emoji":"🇹🇲","dialCode":"993","priority":"0"},{"code":"TN","emoji":"🇹🇳","dialCode":"216","priority":"0"},{"code":"TO","emoji":"🇹🇴","dialCode":"676","priority":"0"},{"code":"TR","emoji":"🇹🇷","dialCode":"90","priority":"0"},{"code":"TT","emoji":"🇹🇹","dialCode":"1868","priority":"0"},{"code":"TV","emoji":"🇹🇻","dialCode":"688","priority":"0"},{"code":"TW","emoji":"🇹🇼","dialCode":"886","priority":"0"},{"code":"TZ","emoji":"🇹🇿","dialCode":"255","priority":"0"},{"code":"UA","emoji":"🇺🇦","dialCode":"380","priority":"0"},{"code":"UG","emoji":"🇺🇬","dialCode":"256","priority":"0"},{"code":"US","emoji":"🇺🇸","dialCode":"1","priority":"1"},{"code":"UY","emoji":"🇺🇾","dialCode":"598","priority":"0"},{"code":"UZ","emoji":"🇺🇿","dialCode":"998","priority":"0"},{"code":"VA","emoji":"🇻🇦","dialCode":"39","priority":"0"},{"code":"VC","emoji":"🇻🇨","dialCode":"1784","priority":"0"},{"code":"VE","emoji":"🇻🇪","dialCode":"58","priority":"0"},{"code":"VG","emoji":"🇻🇬","dialCode":"1284","priority":"0"},{"code":"VI","emoji":"🇻🇮","dialCode":"1340","priority":"0"},{"code":"VN","emoji":"🇻🇳","dialCode":"84","priority":"0"},{"code":"VU","emoji":"🇻🇺","dialCode":"678","priority":"0"},{"code":"WF","emoji":"🇼🇫","dialCode":"681","priority":"0"},{"code":"WS","emoji":"🇼🇸","dialCode":"685","priority":"0"},{"code":"XK","emoji":"🇽🇰","dialCode":"383","priority":"0"},{"code":"YE","emoji":"🇾🇪","dialCode":"967","priority":"0"},{"code":"YT","emoji":"🇾🇹","dialCode":"262","priority":"0"},{"code":"ZA","emoji":"🇿🇦","dialCode":"27","priority":"0"},{"code":"ZM","emoji":"🇿🇲","dialCode":"260","priority":"0"},{"code":"ZW","emoji":"🇿🇼","dialCode":"263","priority":"0"}]
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF.png
deleted file mode 100644
index 2f04dce2..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF@2x.png
deleted file mode 100644
index 18f81d97..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF@3x.png
deleted file mode 100644
index 2dbae4e6..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/GIF/icon_GIF@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos.png
deleted file mode 100644
index 38c183f5..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos@2x.png
deleted file mode 100644
index 7c1360b4..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos@3x.png
deleted file mode 100644
index 3a18d746..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_expand_photos@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input.png
deleted file mode 100644
index 4a3a2bc2..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input@2x.png
deleted file mode 100644
index c25b83f6..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input@3x.png
deleted file mode 100644
index 39c8b33b..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Photo/icon_photo_input@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input.png
deleted file mode 100644
index 76320c2b..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input@2x.png
deleted file mode 100644
index 1dbfceb6..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input@3x.png
deleted file mode 100644
index 7f02e864..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/Inputs/Text/icon_text_input@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/article_loading_state.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/article_loading_state.png
deleted file mode 100644
index 59cfc950..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/article_loading_state.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/article_loading_state@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/article_loading_state@2x.png
deleted file mode 100644
index 4659bf60..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/article_loading_state@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/article_loading_state@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/article_loading_state@3x.png
deleted file mode 100644
index 1e5057e9..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/article_loading_state@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/ask_a_question.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/ask_a_question.png
deleted file mode 100644
index c755edce..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/ask_a_question.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/ask_a_question@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/ask_a_question@2x.png
deleted file mode 100644
index 8367c4bc..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/ask_a_question@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/ask_a_question@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/ask_a_question@3x.png
deleted file mode 100644
index 11b43041..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/ask_a_question@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/back.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/back.png
deleted file mode 100644
index ad084e0e..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/back.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/back@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/back@2x.png
deleted file mode 100644
index 32a3c89b..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/back@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/back@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/back@3x.png
deleted file mode 100644
index 0c41b655..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/back@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left.png
deleted file mode 100644
index 07a9ffa5..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left@2x.png
deleted file mode 100644
index 4afb3d9e..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left@3x.png
deleted file mode 100644
index 6117c069..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected.png
deleted file mode 100644
index 9f8e7c7e..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected@2x.png
deleted file mode 100644
index 2fbd09e1..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected@3x.png
deleted file mode 100644
index fa3a5c17..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_left_selected@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right.png
deleted file mode 100644
index 6909cb02..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right@2x.png
deleted file mode 100644
index 0a631693..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right@3x.png
deleted file mode 100644
index 44263464..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected.png
deleted file mode 100644
index ef73a016..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected@2x.png
deleted file mode 100644
index 5fcede73..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected@3x.png
deleted file mode 100644
index 0687efd2..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/boolean_button_right_selected@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/carousel_loading_state.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/carousel_loading_state.png
deleted file mode 100644
index a6fd57c0..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/carousel_loading_state.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/carousel_loading_state@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/carousel_loading_state@2x.png
deleted file mode 100644
index ea3151d0..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/carousel_loading_state@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/carousel_loading_state@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/carousel_loading_state@3x.png
deleted file mode 100644
index fe463fae..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/carousel_loading_state@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/chat_bubble.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/chat_bubble.png
deleted file mode 100644
index a465a305..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/chat_bubble.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/chat_bubble@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/chat_bubble@2x.png
deleted file mode 100644
index cd15cce1..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/chat_bubble@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/chat_bubble@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/chat_bubble@3x.png
deleted file mode 100644
index 53dc2e61..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/chat_bubble@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close.png
deleted file mode 100644
index 73da4357..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close@2x.png
deleted file mode 100644
index ee3bb182..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close@3x.png
deleted file mode 100644
index 2408bc90..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_annotation.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_annotation.png
deleted file mode 100644
index bfbf6e26..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_annotation.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_annotation@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_annotation@2x.png
deleted file mode 100644
index be5b5f3f..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_annotation@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_annotation@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_annotation@3x.png
deleted file mode 100644
index eb72b5b2..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_annotation@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_intercom.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_intercom.png
deleted file mode 100644
index b3c5e5be..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_intercom.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_intercom@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_intercom@2x.png
deleted file mode 100644
index f870b3f1..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_intercom@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_intercom@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_intercom@3x.png
deleted file mode 100644
index 57014792..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_intercom@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_note.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_note.png
deleted file mode 100644
index 932cfd94..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_note.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_note@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_note@2x.png
deleted file mode 100644
index e6039e90..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_note@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_note@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_note@3x.png
deleted file mode 100644
index 3affe506..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_note@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_post.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_post.png
deleted file mode 100644
index bc230d2a..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_post.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_post@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_post@2x.png
deleted file mode 100644
index 2d9321eb..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_post@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_post@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_post@3x.png
deleted file mode 100644
index 3630585c..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/close_post@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/date_selector.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/date_selector.png
deleted file mode 100755
index 016fd4a6..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/date_selector.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/date_selector@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/date_selector@2x.png
deleted file mode 100755
index 67896bc7..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/date_selector@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/date_selector@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/date_selector@3x.png
deleted file mode 100755
index c6450fce..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/date_selector@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/footer_link_icon.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/footer_link_icon.png
deleted file mode 100644
index 4974a55b..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/footer_link_icon.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/footer_link_icon@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/footer_link_icon@2x.png
deleted file mode 100644
index d686a72c..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/footer_link_icon@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/footer_link_icon@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/footer_link_icon@3x.png
deleted file mode 100644
index a0f3b94e..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/footer_link_icon@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon.png
deleted file mode 100644
index 0adabbda..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon@2x.png
deleted file mode 100644
index 717c95d5..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon@3x.png
deleted file mode 100644
index 366ae8c6..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/helpCenterSearchIcon@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_chevron.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_chevron.png
deleted file mode 100644
index be6aa3ad..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_chevron.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_chevron@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_chevron@2x.png
deleted file mode 100644
index bfe67dc3..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_chevron@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_chevron@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_chevron@3x.png
deleted file mode 100644
index 44bd5e03..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_chevron@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_loading_state.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_loading_state.png
deleted file mode 100644
index 51bb810a..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_loading_state.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_loading_state@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_loading_state@2x.png
deleted file mode 100644
index 19a60f50..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_loading_state@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_loading_state@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_loading_state@3x.png
deleted file mode 100644
index 1a2c2579..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/help_center_loading_state@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/homescreenFailed.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/homescreenFailed.png
deleted file mode 100644
index f96aabcd..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/homescreenFailed.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/homescreenFailed@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/homescreenFailed@2x.png
deleted file mode 100644
index f4ff5fc8..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/homescreenFailed@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/homescreenFailed@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/homescreenFailed@3x.png
deleted file mode 100644
index a6381327..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/homescreenFailed@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_green_check.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_green_check.png
deleted file mode 100644
index 5c9a9f57..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_green_check.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_green_check@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_green_check@2x.png
deleted file mode 100644
index 20617aa6..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_green_check@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_green_check@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_green_check@3x.png
deleted file mode 100644
index 8d21d97c..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_green_check@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_loading.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_loading.png
deleted file mode 100644
index 1b893082..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_loading.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_loading@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_loading@2x.png
deleted file mode 100644
index 6f5e334c..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_loading@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_loading@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_loading@3x.png
deleted file mode 100644
index 9a0a231d..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_loading@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_submit.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_submit.png
deleted file mode 100644
index 6990ba87..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_submit.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_submit@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_submit@2x.png
deleted file mode 100644
index 36dc88a7..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_submit@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_submit@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_submit@3x.png
deleted file mode 100644
index e07fdf09..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/icon_submit@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/intercom_logo.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/intercom_logo.png
deleted file mode 100644
index b66f40ce..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/intercom_logo.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/intercom_logo@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/intercom_logo@2x.png
deleted file mode 100644
index 94f18ce7..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/intercom_logo@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/intercom_logo@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/intercom_logo@3x.png
deleted file mode 100644
index f76167c7..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/intercom_logo@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/launcher.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/launcher.png
deleted file mode 100644
index 2e85ff07..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/launcher.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/launcher@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/launcher@2x.png
deleted file mode 100644
index 37b789af..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/launcher@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/launcher@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/launcher@3x.png
deleted file mode 100644
index 35319beb..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/launcher@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/linkedin.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/linkedin.png
deleted file mode 100644
index 9f2cfc5b..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/linkedin.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/linkedin@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/linkedin@2x.png
deleted file mode 100644
index fa5bf507..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/linkedin@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/linkedin@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/linkedin@3x.png
deleted file mode 100644
index dc7cae77..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/linkedin@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/logoa.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/logoa.png
deleted file mode 100644
index 054d72fd..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/logoa.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/message_failed.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/message_failed.png
deleted file mode 100644
index 4bf6321d..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/message_failed.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/message_failed@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/message_failed@2x.png
deleted file mode 100644
index f3c5d71d..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/message_failed@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/message_failed@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/message_failed@3x.png
deleted file mode 100644
index 46b8ed26..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/message_failed@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/open_post_from_card.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/open_post_from_card.png
deleted file mode 100644
index 87cba8f0..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/open_post_from_card.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/open_post_from_card@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/open_post_from_card@2x.png
deleted file mode 100644
index 2be5ed39..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/open_post_from_card@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/open_post_from_card@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/open_post_from_card@3x.png
deleted file mode 100644
index 09dbcb4b..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/open_post_from_card@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/picker_selector.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/picker_selector.png
deleted file mode 100755
index e12e51f8..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/picker_selector.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/picker_selector@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/picker_selector@2x.png
deleted file mode 100755
index 9e05ded2..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/picker_selector@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/picker_selector@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/picker_selector@3x.png
deleted file mode 100755
index 03f0c370..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/picker_selector@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/screen_action_checkmark.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/screen_action_checkmark.png
deleted file mode 100644
index a023d269..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/screen_action_checkmark.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/screen_action_checkmark@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/screen_action_checkmark@2x.png
deleted file mode 100644
index aae11474..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/screen_action_checkmark@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/screen_action_checkmark@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/screen_action_checkmark@3x.png
deleted file mode 100644
index 77cc9cbd..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/screen_action_checkmark@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/search_icon.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/search_icon.png
deleted file mode 100644
index 1affa8ca..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/search_icon.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/search_icon@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/search_icon@2x.png
deleted file mode 100644
index 0f658763..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/search_icon@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/search_icon@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/search_icon@3x.png
deleted file mode 100644
index 8979a065..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/search_icon@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/send_annotation.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/send_annotation.png
deleted file mode 100644
index b9826520..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/send_annotation.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/send_annotation@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/send_annotation@2x.png
deleted file mode 100644
index ae610fb0..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/send_annotation@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/send_annotation@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/send_annotation@3x.png
deleted file mode 100644
index f6dc6043..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/send_annotation@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/snooze_icon.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/snooze_icon.png
deleted file mode 100755
index 6d556a5e..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/snooze_icon.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/snooze_icon@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/snooze_icon@2x.png
deleted file mode 100755
index 21a969dd..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/snooze_icon@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/snooze_icon@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/snooze_icon@3x.png
deleted file mode 100755
index 44525e93..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/snooze_icon@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/spinner.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/spinner.png
deleted file mode 100644
index 5e66ff10..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/spinner.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/spinner@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/spinner@2x.png
deleted file mode 100644
index 2aa41e0f..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/spinner@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/spinner@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/spinner@3x.png
deleted file mode 100644
index 4aa56591..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/spinner@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/startConversationIcon.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/startConversationIcon.png
deleted file mode 100644
index 4fd8a25e..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/startConversationIcon.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/startConversationIcon@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/startConversationIcon@2x.png
deleted file mode 100644
index 2e296812..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/startConversationIcon@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/startConversationIcon@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/startConversationIcon@3x.png
deleted file mode 100644
index 5e6bf4ea..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/startConversationIcon@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background.png
deleted file mode 100644
index e92df967..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background@2x.png
deleted file mode 100644
index 8ed7d5c1..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background@3x.png
deleted file mode 100644
index e2ee69cb..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background_clear.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background_clear.png
deleted file mode 100644
index f49d58a7..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background_clear.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background_clear@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background_clear@2x.png
deleted file mode 100644
index 75757ced..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background_clear@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background_clear@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background_clear@3x.png
deleted file mode 100644
index 59dd7658..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/submit_button_background_clear@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_bio.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_bio.png
deleted file mode 100644
index 4752441b..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_bio.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_bio@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_bio@2x.png
deleted file mode 100644
index dcc65852..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_bio@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_bio@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_bio@3x.png
deleted file mode 100644
index 78957e98..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_bio@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_location.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_location.png
deleted file mode 100644
index 21bfc411..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_location.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_location@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_location@2x.png
deleted file mode 100644
index 4872d6a8..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_location@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_location@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_location@3x.png
deleted file mode 100644
index 518ba119..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_location@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_role.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_role.png
deleted file mode 100644
index 552c9f76..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_role.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_role@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_role@2x.png
deleted file mode 100644
index 698ae5c4..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_role@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_role@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_role@3x.png
deleted file mode 100644
index 25c27147..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/teammate_role@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background.png
deleted file mode 100644
index 4135dbfc..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background@2x.png
deleted file mode 100644
index 6c865fb7..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background@3x.png
deleted file mode 100644
index 901abfc0..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background_error.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background_error.png
deleted file mode 100644
index 6b5a4538..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background_error.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background_error@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background_error@2x.png
deleted file mode 100644
index 3357232f..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background_error@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background_error@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background_error@3x.png
deleted file mode 100644
index 94cd0701..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/textfield_background_error@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/twitter.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/twitter.png
deleted file mode 100644
index 3be9ffac..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/twitter.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/twitter@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/twitter@2x.png
deleted file mode 100644
index ac545e5b..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/twitter@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/twitter@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/twitter@3x.png
deleted file mode 100644
index 7d7cc135..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/twitter@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/undo.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/undo.png
deleted file mode 100755
index 9f73bd14..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/undo.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/undo@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/undo@2x.png
deleted file mode 100755
index 24f2ca0a..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/undo@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/undo@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/undo@3x.png
deleted file mode 100755
index 7f03b806..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/undo@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/upload_icon.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/upload_icon.png
deleted file mode 100644
index f6f4bee6..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/upload_icon.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/upload_icon@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/upload_icon@2x.png
deleted file mode 100644
index 0c016f51..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/upload_icon@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/upload_icon@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/upload_icon@3x.png
deleted file mode 100644
index 3f873747..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/upload_icon@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/warning.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/warning.png
deleted file mode 100644
index 967b8363..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/warning.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/warning@2x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/warning@2x.png
deleted file mode 100644
index e79123ee..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/warning@2x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/warning@3x.png b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/warning@3x.png
deleted file mode 100644
index 6548c064..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/images/warning@3x.png and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/sound/admin_reply_delivered.caf b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/sound/admin_reply_delivered.caf
deleted file mode 100644
index f2f358ef..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/sound/admin_reply_delivered.caf and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/sound/message_failed.caf b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/sound/message_failed.caf
deleted file mode 100644
index 6d0be6ba..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/sound/message_failed.caf and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/sound/message_operator.caf b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/sound/message_operator.caf
deleted file mode 100644
index 55454150..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/sound/message_operator.caf and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/sound/message_sending.caf b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/sound/message_sending.caf
deleted file mode 100644
index c2d9a87a..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Intercom.bundle/sound/message_sending.caf and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/Info.plist b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/Info.plist
deleted file mode 100644
index 5df20c18..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/Info.plist and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/_CodeSignature/CodeDirectory b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/_CodeSignature/CodeDirectory
deleted file mode 100644
index 7d2753ca..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/_CodeSignature/CodeDirectory and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/_CodeSignature/CodeRequirements b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/_CodeSignature/CodeRequirements
deleted file mode 100644
index dbf9d614..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/_CodeSignature/CodeRequirements and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/_CodeSignature/CodeRequirements-1 b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/_CodeSignature/CodeRequirements-1
deleted file mode 100644
index b93cc9f9..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/_CodeSignature/CodeRequirements-1 and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/_CodeSignature/CodeResources b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/_CodeSignature/CodeResources
deleted file mode 100644
index a9a59ecf..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/_CodeSignature/CodeResources
+++ /dev/null
@@ -1,668 +0,0 @@
-
-
-
-
- files
-
- ar.strings
-
- Gmt3QDdrh4AwciXbQjRAb6ZsUFs=
-
- bg.strings
-
- g49JghHHBhtEUuTr3rDdAE2OGX0=
-
- bs.strings
-
- ylhLQtfv30zWupCz48JAxLi4Yqg=
-
- ca.strings
-
- GC6gLsjMm3pC10ImL1NTvuvA9yk=
-
- cs.strings
-
- EmIMhD3omvIJciBUhOaHDCxkPd4=
-
- da.strings
-
- a6OOW3MXQRADpxJ56hDV0xp6FXU=
-
- de-form.strings
-
- y7HIgC4LAzwsLUihNTD8AVF15VI=
-
- de.strings
-
- +Nlux3Xc8WlqMh6z0gwL5B33jrU=
-
- el.strings
-
- AC2Yt7HxklYRZ+W0xpwTfbRLxoE=
-
- en.strings
-
- Ty43ehubiPxhKlvBoepfhCwA9y8=
-
- es.strings
-
- kuwZPa6vvXFvuJjIVygtkO5uQXI=
-
- et.strings
-
- AjGumyW5cCO4cx/r6M/JJHbiOpY=
-
- fi.strings
-
- /RDSIhM7unQh7m7nqwnypJKOKKg=
-
- fr.strings
-
- N3/7ftOfE21blyMH+Wi04uOc24Q=
-
- he.strings
-
- EMNqMk6M1+32rzr1M4as7AUH7rI=
-
- hr.strings
-
- 8bugbIUCrTpIRBmiFNrdB843ve4=
-
- hu.strings
-
- Tdr4YoKyVdZA2DSp70u0gTSl8Sc=
-
- id.strings
-
- pFkwgbLOwVLv6WgzgzEtcVTAmoY=
-
- it.strings
-
- 4wej08fDi6+CgK9sLIIPaw55KQs=
-
- ja.strings
-
- NcL7aw2/kEhFTzaM6Ue0UK0r6DY=
-
- ko.strings
-
- KHRJMXwjfq2LDj+StRiU3MY6MKs=
-
- lt.strings
-
- DyUHOfLMBRPeaugT5WC65pMFGSI=
-
- lv.strings
-
- X+RQ71/wlXFndKklkbY5JsRo4WY=
-
- mn.strings
-
- bOys42j6YfZh4pAnNmRmxAp+ctU=
-
- nb.strings
-
- IxN08/nLE9WXuZLgZ7rkRuMwhg4=
-
- nl.strings
-
- l1v4ek4TknzhIm4Da/Be/RvlBgc=
-
- pl.strings
-
- LWNB7fQNXJA01T2NL4DfcfSYW9A=
-
- pt-br.strings
-
- fY2umGFlSL/kbIY88sALbkm6UIw=
-
- pt-pt.strings
-
- q2PHBM/aCSalD5idxoovgCPR9TY=
-
- ro.strings
-
- /JCGWyw1CESBsgvfLpPUcFWE2Fw=
-
- ru.strings
-
- 9HgUuW09Bo8Rip2+5xQJRlXslQQ=
-
- sl.strings
-
- MbUPV2oNBz7E4Q9OlKMK8FPxNlY=
-
- sr.strings
-
- t4Lu6KMwFfmeqQX1PQTLoZqv4BA=
-
- sv.strings
-
- QxZMF4wPZNl5OHnGzSssvdKqzQg=
-
- tr.strings
-
- xRsc2yo2v0gO2BmCiQuLb3vMWOw=
-
- vi.strings
-
- /e12wYv+SfnlJZMSm9mSTWp61zo=
-
- zh-hans.strings
-
- QoF0N6GvvST7E/DldPVxeVzrA3o=
-
- zh-hant.strings
-
- jUFBV5Z8aUEShh3LvLNa/BrH0IM=
-
-
- files2
-
- ar.strings
-
- hash
-
- Gmt3QDdrh4AwciXbQjRAb6ZsUFs=
-
- hash2
-
- GMBnRfh7HoSAZl/IHU5FdAJr26TUS5WjmPxdaLd3y5I=
-
-
- bg.strings
-
- hash
-
- g49JghHHBhtEUuTr3rDdAE2OGX0=
-
- hash2
-
- cSVRDwSu0vvR34/rtKKnKsAcyh8hSgWgpvP86eshb+8=
-
-
- bs.strings
-
- hash
-
- ylhLQtfv30zWupCz48JAxLi4Yqg=
-
- hash2
-
- xIF3XhyDeXDR0Js5dVf+xz+oDOZJCvrEwkYfMGj7u7I=
-
-
- ca.strings
-
- hash
-
- GC6gLsjMm3pC10ImL1NTvuvA9yk=
-
- hash2
-
- m/ICm981Jro8QnWthqv+wAT38qMvZeig2nFgajcloN0=
-
-
- cs.strings
-
- hash
-
- EmIMhD3omvIJciBUhOaHDCxkPd4=
-
- hash2
-
- zeM4Ss7nO8EZAknzw9yj5Z+OKoR/EHhCY1xusc7wGF0=
-
-
- da.strings
-
- hash
-
- a6OOW3MXQRADpxJ56hDV0xp6FXU=
-
- hash2
-
- 4Hzppt2UAJ2me/1AErbHqfaqOXoMFyfwmkP9WTaJ6m8=
-
-
- de-form.strings
-
- hash
-
- y7HIgC4LAzwsLUihNTD8AVF15VI=
-
- hash2
-
- MHHF1u98kQyBDeAvSvvy4IMVyFZaFnlilpSYbrrcFr8=
-
-
- de.strings
-
- hash
-
- +Nlux3Xc8WlqMh6z0gwL5B33jrU=
-
- hash2
-
- yo+F9x4YO9KN563w3YBPZIPQwm4PRjWUn9LVdDoEaGw=
-
-
- el.strings
-
- hash
-
- AC2Yt7HxklYRZ+W0xpwTfbRLxoE=
-
- hash2
-
- DIWaFzrUg2Kn7EgdwCD1af2hhpdjUtATy3SM/uViXcI=
-
-
- en.strings
-
- hash
-
- Ty43ehubiPxhKlvBoepfhCwA9y8=
-
- hash2
-
- RG0aqYGe/PO6lOwm0Qe1mWaiIj1eKf0c5T4Jy9Sb9h8=
-
-
- es.strings
-
- hash
-
- kuwZPa6vvXFvuJjIVygtkO5uQXI=
-
- hash2
-
- LQ+6IUABq6zY8FaaU3QOnCbgb8v7N9bIbnC9wdC22Os=
-
-
- et.strings
-
- hash
-
- AjGumyW5cCO4cx/r6M/JJHbiOpY=
-
- hash2
-
- emLxRk0jlg63kh3uf5FMcjt9+n04wsFJeUgtDSeANrI=
-
-
- fi.strings
-
- hash
-
- /RDSIhM7unQh7m7nqwnypJKOKKg=
-
- hash2
-
- LcktXD9rT6ynRsxgLG6oAGEXVhiEi7V1K+OqZMbC+uA=
-
-
- fr.strings
-
- hash
-
- N3/7ftOfE21blyMH+Wi04uOc24Q=
-
- hash2
-
- 7M/wIeUkP9xJxRP/jE5KfpIoitvtVLo8aDknMd7ZC0w=
-
-
- he.strings
-
- hash
-
- EMNqMk6M1+32rzr1M4as7AUH7rI=
-
- hash2
-
- ptzss+CtO/RlAcTZhipzvj+IxO9fWWJDGkXw5BuTcso=
-
-
- hr.strings
-
- hash
-
- 8bugbIUCrTpIRBmiFNrdB843ve4=
-
- hash2
-
- MiT9zMLfbLJ+MMuIhl6uD6iJY1xPpqDcTgBXuZjGZAw=
-
-
- hu.strings
-
- hash
-
- Tdr4YoKyVdZA2DSp70u0gTSl8Sc=
-
- hash2
-
- PkUlei6BQqFFjVn47Rnk7eiOcRR8Q4E09MiIq8gZ4QU=
-
-
- id.strings
-
- hash
-
- pFkwgbLOwVLv6WgzgzEtcVTAmoY=
-
- hash2
-
- Q7TNmCX45Q0uZX6TPUsrAMqWGcCBnswGxEire83OSoI=
-
-
- it.strings
-
- hash
-
- 4wej08fDi6+CgK9sLIIPaw55KQs=
-
- hash2
-
- JcML/i1i3KXeuB+vVMSYj1UfC96LcnikkVhGwC2scQw=
-
-
- ja.strings
-
- hash
-
- NcL7aw2/kEhFTzaM6Ue0UK0r6DY=
-
- hash2
-
- YZcPg0r15nS3SpdTlMLDvCL4cyvc1bGFEz+QmczVhmI=
-
-
- ko.strings
-
- hash
-
- KHRJMXwjfq2LDj+StRiU3MY6MKs=
-
- hash2
-
- TuSJY5YdCqBIWyZuKQ+i5xHf3eC+CJGWSdlZ9ambhZo=
-
-
- lt.strings
-
- hash
-
- DyUHOfLMBRPeaugT5WC65pMFGSI=
-
- hash2
-
- l4SMry3OvHh0wyJeAadqv6N1JPP/WBhKppDqgvXPTnw=
-
-
- lv.strings
-
- hash
-
- X+RQ71/wlXFndKklkbY5JsRo4WY=
-
- hash2
-
- aSt9gViOTrF49ZjYq6Oy7EZ/bBVfW6at4h8xIIKf2ig=
-
-
- mn.strings
-
- hash
-
- bOys42j6YfZh4pAnNmRmxAp+ctU=
-
- hash2
-
- 2ovvZouAEPUpG9bYx85DwUM4W4ctfMfRay7FjMj33gk=
-
-
- nb.strings
-
- hash
-
- IxN08/nLE9WXuZLgZ7rkRuMwhg4=
-
- hash2
-
- 3OFn0s/rjxdFrFEFlAKyAH0uj2QpLAa4V9SKTCW5dfQ=
-
-
- nl.strings
-
- hash
-
- l1v4ek4TknzhIm4Da/Be/RvlBgc=
-
- hash2
-
- Gi31fWCJqe6vlrCE8mdFkCjfHXeaQzkmxRnr2oDgOeE=
-
-
- pl.strings
-
- hash
-
- LWNB7fQNXJA01T2NL4DfcfSYW9A=
-
- hash2
-
- yVqtg7dptzIuEG3yI0hav6dpKYCv+NNgcwcQaZ14omU=
-
-
- pt-br.strings
-
- hash
-
- fY2umGFlSL/kbIY88sALbkm6UIw=
-
- hash2
-
- 5hpJTyAvXclHKu950HVPnpnzQ+WqDbIWn9sYMcem1co=
-
-
- pt-pt.strings
-
- hash
-
- q2PHBM/aCSalD5idxoovgCPR9TY=
-
- hash2
-
- n+BMWKfslIe6skkQqPExdoBL9U+M6/q2LPRcfobPxDE=
-
-
- ro.strings
-
- hash
-
- /JCGWyw1CESBsgvfLpPUcFWE2Fw=
-
- hash2
-
- CCsdo7XIwuJwn+y0jlidjJ/cqfHFDYVJJ2mWst7gJcw=
-
-
- ru.strings
-
- hash
-
- 9HgUuW09Bo8Rip2+5xQJRlXslQQ=
-
- hash2
-
- bNDu6SRxQAScHkNA847Va22YhjmsRoAvYA7Tze2TF28=
-
-
- sl.strings
-
- hash
-
- MbUPV2oNBz7E4Q9OlKMK8FPxNlY=
-
- hash2
-
- 4W0Zkr74C0+H+QaVexmJ2FCa003cZKnKRlbCep/ybRI=
-
-
- sr.strings
-
- hash
-
- t4Lu6KMwFfmeqQX1PQTLoZqv4BA=
-
- hash2
-
- uMYwEv7fmbn6ywJI3KW1ox1lHbt7a26WEtttUo8FL2g=
-
-
- sv.strings
-
- hash
-
- QxZMF4wPZNl5OHnGzSssvdKqzQg=
-
- hash2
-
- hOAK3yRz/OUjZgLpIDXvX19eWsZYOUpHUk2IfmjSHaA=
-
-
- tr.strings
-
- hash
-
- xRsc2yo2v0gO2BmCiQuLb3vMWOw=
-
- hash2
-
- 0aWjRajvW7t04Vs6PXsVTAlF8pa2C9ciSdAT2YC5M8A=
-
-
- vi.strings
-
- hash
-
- /e12wYv+SfnlJZMSm9mSTWp61zo=
-
- hash2
-
- ud+nDne1B1b2YCL1WPc7XbPThWB9o/x1/1TpDqcMIvg=
-
-
- zh-hans.strings
-
- hash
-
- QoF0N6GvvST7E/DldPVxeVzrA3o=
-
- hash2
-
- GYnGm6TWNfdgv/mgkPPUvjmM+/jquVPvpbyzBcorjCA=
-
-
- zh-hant.strings
-
- hash
-
- jUFBV5Z8aUEShh3LvLNa/BrH0IM=
-
- hash2
-
- YZxu7gaYJrlpGtnvj2gOI38XY8izBAy2KcW5L1niUcg=
-
-
-
- rules
-
- ^.*
-
- ^.*\.lproj/
-
- optional
-
- weight
- 1000
-
- ^.*\.lproj/locversion.plist$
-
- omit
-
- weight
- 1100
-
- ^Base\.lproj/
-
- weight
- 1010
-
- ^version.plist$
-
-
- rules2
-
- .*\.dSYM($|/)
-
- weight
- 11
-
- ^(.*/)?\.DS_Store$
-
- omit
-
- weight
- 2000
-
- ^.*
-
- ^.*\.lproj/
-
- optional
-
- weight
- 1000
-
- ^.*\.lproj/locversion.plist$
-
- omit
-
- weight
- 1100
-
- ^Base\.lproj/
-
- weight
- 1010
-
- ^Info\.plist$
-
- omit
-
- weight
- 20
-
- ^PkgInfo$
-
- omit
-
- weight
- 20
-
- ^embedded\.provisionprofile$
-
- weight
- 20
-
- ^version\.plist$
-
- weight
- 20
-
-
-
-
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/_CodeSignature/CodeSignature b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/_CodeSignature/CodeSignature
deleted file mode 100644
index e69de29b..00000000
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ar.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ar.strings
deleted file mode 100644
index 0bc164d2..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ar.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/bg.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/bg.strings
deleted file mode 100644
index 67753520..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/bg.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/bs.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/bs.strings
deleted file mode 100644
index 6534b31d..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/bs.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ca.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ca.strings
deleted file mode 100644
index 2bbaa680..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ca.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/cs.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/cs.strings
deleted file mode 100644
index 9c5f467f..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/cs.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/da.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/da.strings
deleted file mode 100644
index 9886ad4d..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/da.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/de-form.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/de-form.strings
deleted file mode 100644
index cb3188e0..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/de-form.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/de.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/de.strings
deleted file mode 100644
index 87d5b7a7..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/de.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/el.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/el.strings
deleted file mode 100644
index 8deecc43..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/el.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/en.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/en.strings
deleted file mode 100644
index d1f4e500..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/en.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/es.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/es.strings
deleted file mode 100644
index 18698852..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/es.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/et.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/et.strings
deleted file mode 100644
index 6bdd6fed..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/et.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/fi.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/fi.strings
deleted file mode 100644
index 33c5f1ba..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/fi.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/fr.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/fr.strings
deleted file mode 100644
index 5cf31973..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/fr.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/he.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/he.strings
deleted file mode 100644
index e55f992e..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/he.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/hr.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/hr.strings
deleted file mode 100644
index a7822130..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/hr.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/hu.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/hu.strings
deleted file mode 100644
index 96a9331c..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/hu.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/id.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/id.strings
deleted file mode 100644
index c7e38b16..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/id.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/it.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/it.strings
deleted file mode 100644
index 12351833..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/it.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ja.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ja.strings
deleted file mode 100644
index b0c1728d..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ja.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ko.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ko.strings
deleted file mode 100644
index 32636bf7..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ko.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/lt.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/lt.strings
deleted file mode 100644
index ecd7cc18..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/lt.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/lv.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/lv.strings
deleted file mode 100644
index f3329a85..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/lv.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/mn.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/mn.strings
deleted file mode 100644
index 09fcad08..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/mn.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/nb.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/nb.strings
deleted file mode 100644
index 58320d88..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/nb.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/nl.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/nl.strings
deleted file mode 100644
index b8a3abe8..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/nl.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/pl.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/pl.strings
deleted file mode 100644
index d00931de..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/pl.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/pt-br.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/pt-br.strings
deleted file mode 100644
index a3567193..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/pt-br.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/pt-pt.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/pt-pt.strings
deleted file mode 100644
index e6b1248b..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/pt-pt.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ro.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ro.strings
deleted file mode 100644
index 1cb13a0d..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ro.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ru.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ru.strings
deleted file mode 100644
index c725d3eb..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/ru.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/sl.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/sl.strings
deleted file mode 100644
index 6810af57..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/sl.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/sr.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/sr.strings
deleted file mode 100644
index b0e0f5dc..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/sr.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/sv.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/sv.strings
deleted file mode 100644
index 2937a54f..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/sv.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/tr.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/tr.strings
deleted file mode 100644
index e19fce0e..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/tr.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/vi.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/vi.strings
deleted file mode 100644
index d5bb302e..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/vi.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/zh-hans.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/zh-hans.strings
deleted file mode 100644
index 3d41d427..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/zh-hans.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/zh-hant.strings b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/zh-hant.strings
deleted file mode 100644
index 407fded0..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/IntercomTranslations.bundle/zh-hant.strings and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/arm64-apple-ios-simulator.swiftdoc
deleted file mode 100644
index 3ad2f552..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/arm64-apple-ios-simulator.swiftdoc and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/arm64-apple-ios-simulator.swiftinterface
deleted file mode 100644
index 9ae09a77..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/arm64-apple-ios-simulator.swiftinterface
+++ /dev/null
@@ -1,91 +0,0 @@
-// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28)
-// swift-module-flags: -target arm64-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Intercom
-import Foundation
-@_exported import Intercom
-import Intercom_Private
-import Swift
-import UIKit
-import os.log
-import os
-@objc public protocol HelpCenterStartConversationViewDelegate {
- @objc func didSelectStartConversation()
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterStartConversationView : UIKit.UIView {
- @objc weak public var startConversationDelegate: HelpCenterStartConversationViewDelegate?
- @objc deinit
-}
-@_hasMissingDesignatedInitializers @objc public class AvailableTeammatesView : UIKit.UIStackView {
- @objc override dynamic public init(frame: CoreGraphics.CGRect)
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(ICMSearchBrowseView) public class SearchBrowseView : UIKit.UIView {
- @objc override dynamic public convenience init(frame: CoreGraphics.CGRect)
- public init(_ frame: CoreGraphics.CGRect, _ config: Intercom_Private.ICMConfigProtocol = ICMConfig.shared())
- @objc public func searchHelpArticlesAction()
- @objc public func heightForCard(width: CoreGraphics.CGFloat) -> CoreGraphics.CGFloat
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterDataService : ObjectiveC.NSObject {
- @objc override dynamic public init()
- @objc public func fetchCollections(completion: @escaping ([HelpCenterCollection]?, Swift.Error?) -> Swift.Void)
- @objc public func fetchCollection(collectionId: Swift.String, completion: @escaping (HelpCenterCollectionContent?, Swift.Error?) -> Swift.Void)
- @objc public func searchResults(for searchTerm: Swift.String, completion: @escaping ([HelpCenterArticleSearchResult]?, Swift.Error?) -> Swift.Void)
- @objc deinit
-}
-@objc @objcMembers public class ArticleMetaData : ObjectiveC.NSObject {
- @objc public static var searchBrowseSource: Swift.String
- @objc public var articleId: Swift.String?
- @objc public var articleSource: Swift.String?
- @objc public init(id: Swift.String?, source: Swift.String?)
- @objc deinit
- @objc override dynamic public init()
-}
-@_inheritsConvenienceInitializers @objc public class HelpCenterMetricService : ObjectiveC.NSObject {
- @objc public var contextIsSearchBrowse: Swift.Bool
- @objc public static func addSearchBrowseViewedEvent(homeScreenIndex: Swift.Int)
- @objc public static func addOpenedFromAPIEvent()
- @objc public static func addOpenedArticleFromAPIEvent()
- @objc public static func addOpenedFromConversationEvent()
- @objc public static func addOpenedFromInAppEvent()
- @objc public static func addOpenedFromLegacySearchAppEvent()
- @objc public static func addOpenedFromMessengerHomeAppEvent()
- @objc public static func addOpenedFromCarousel()
- @objc public static func addOpenedFromPushNotification()
- @objc public func addArticleViewedEvent()
- @objc public func addArticleFailedEvent(errorCode: Foundation.NSNumber)
- @objc public func addHappyReactionEvent()
- @objc public func addNeutralReactionEvent()
- @objc public func addSadReactionEvent(conversationOptionShown: Swift.Bool)
- @objc public func addNewConversationFromArticleEvent(accessToTeammate: Swift.Bool)
- @objc deinit
- @objc override dynamic public init()
-}
-@objc public protocol NativeArticleReactionsViewDelegate {
- @objc func selectedReactionIndex(_ reactionIdex: Swift.Int)
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NativeArticleReactionsView : UIKit.UIView {
- @objc public static var sadReactionIndex: Swift.Int
- @objc public static var neutralReactionIndex: Swift.Int
- @objc public static var happyReactionIndex: Swift.Int
- @objc weak public var articleDelegate: NativeArticleReactionsViewDelegate?
- @objc deinit
-}
-extension Intercom {
- public class func fetchHelpCenterCollections(completion: @escaping (Swift.Result<[HelpCenterCollection], ICMHelpCenterDataError>) -> Swift.Void)
- public class func fetchHelpCenterCollection(_ collectionId: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void)
- public class func searchHelpCenter(_ searchTerm: Swift.String, completion: @escaping (Swift.Result<[HelpCenterArticleSearchResult], ICMHelpCenterDataError>) -> Swift.Void)
-}
-@_hasMissingDesignatedInitializers @objc public class HelpCenterContainerViewController : UIKit.UIViewController {
- @objc public convenience init(withCollections collectionIds: [Swift.String])
- @objc public convenience init(withCollection collectionId: Swift.String)
- @objc dynamic public init()
- @objc public convenience init(fromSearchBrowse: Swift.Bool)
- @objc override dynamic public func viewDidLoad()
- @objc override dynamic public func viewDidLayoutSubviews()
- @objc deinit
- @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
-}
-extension HelpCenterContainerViewController : Intercom_Private.ICMErrorViewDelegate {
- @objc dynamic public func didSelectErrorAction()
-}
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/arm64.swiftdoc b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/arm64.swiftdoc
deleted file mode 100644
index 3ad2f552..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/arm64.swiftdoc and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/arm64.swiftinterface b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/arm64.swiftinterface
deleted file mode 100644
index 9ae09a77..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/arm64.swiftinterface
+++ /dev/null
@@ -1,91 +0,0 @@
-// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28)
-// swift-module-flags: -target arm64-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Intercom
-import Foundation
-@_exported import Intercom
-import Intercom_Private
-import Swift
-import UIKit
-import os.log
-import os
-@objc public protocol HelpCenterStartConversationViewDelegate {
- @objc func didSelectStartConversation()
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterStartConversationView : UIKit.UIView {
- @objc weak public var startConversationDelegate: HelpCenterStartConversationViewDelegate?
- @objc deinit
-}
-@_hasMissingDesignatedInitializers @objc public class AvailableTeammatesView : UIKit.UIStackView {
- @objc override dynamic public init(frame: CoreGraphics.CGRect)
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(ICMSearchBrowseView) public class SearchBrowseView : UIKit.UIView {
- @objc override dynamic public convenience init(frame: CoreGraphics.CGRect)
- public init(_ frame: CoreGraphics.CGRect, _ config: Intercom_Private.ICMConfigProtocol = ICMConfig.shared())
- @objc public func searchHelpArticlesAction()
- @objc public func heightForCard(width: CoreGraphics.CGFloat) -> CoreGraphics.CGFloat
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterDataService : ObjectiveC.NSObject {
- @objc override dynamic public init()
- @objc public func fetchCollections(completion: @escaping ([HelpCenterCollection]?, Swift.Error?) -> Swift.Void)
- @objc public func fetchCollection(collectionId: Swift.String, completion: @escaping (HelpCenterCollectionContent?, Swift.Error?) -> Swift.Void)
- @objc public func searchResults(for searchTerm: Swift.String, completion: @escaping ([HelpCenterArticleSearchResult]?, Swift.Error?) -> Swift.Void)
- @objc deinit
-}
-@objc @objcMembers public class ArticleMetaData : ObjectiveC.NSObject {
- @objc public static var searchBrowseSource: Swift.String
- @objc public var articleId: Swift.String?
- @objc public var articleSource: Swift.String?
- @objc public init(id: Swift.String?, source: Swift.String?)
- @objc deinit
- @objc override dynamic public init()
-}
-@_inheritsConvenienceInitializers @objc public class HelpCenterMetricService : ObjectiveC.NSObject {
- @objc public var contextIsSearchBrowse: Swift.Bool
- @objc public static func addSearchBrowseViewedEvent(homeScreenIndex: Swift.Int)
- @objc public static func addOpenedFromAPIEvent()
- @objc public static func addOpenedArticleFromAPIEvent()
- @objc public static func addOpenedFromConversationEvent()
- @objc public static func addOpenedFromInAppEvent()
- @objc public static func addOpenedFromLegacySearchAppEvent()
- @objc public static func addOpenedFromMessengerHomeAppEvent()
- @objc public static func addOpenedFromCarousel()
- @objc public static func addOpenedFromPushNotification()
- @objc public func addArticleViewedEvent()
- @objc public func addArticleFailedEvent(errorCode: Foundation.NSNumber)
- @objc public func addHappyReactionEvent()
- @objc public func addNeutralReactionEvent()
- @objc public func addSadReactionEvent(conversationOptionShown: Swift.Bool)
- @objc public func addNewConversationFromArticleEvent(accessToTeammate: Swift.Bool)
- @objc deinit
- @objc override dynamic public init()
-}
-@objc public protocol NativeArticleReactionsViewDelegate {
- @objc func selectedReactionIndex(_ reactionIdex: Swift.Int)
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NativeArticleReactionsView : UIKit.UIView {
- @objc public static var sadReactionIndex: Swift.Int
- @objc public static var neutralReactionIndex: Swift.Int
- @objc public static var happyReactionIndex: Swift.Int
- @objc weak public var articleDelegate: NativeArticleReactionsViewDelegate?
- @objc deinit
-}
-extension Intercom {
- public class func fetchHelpCenterCollections(completion: @escaping (Swift.Result<[HelpCenterCollection], ICMHelpCenterDataError>) -> Swift.Void)
- public class func fetchHelpCenterCollection(_ collectionId: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void)
- public class func searchHelpCenter(_ searchTerm: Swift.String, completion: @escaping (Swift.Result<[HelpCenterArticleSearchResult], ICMHelpCenterDataError>) -> Swift.Void)
-}
-@_hasMissingDesignatedInitializers @objc public class HelpCenterContainerViewController : UIKit.UIViewController {
- @objc public convenience init(withCollections collectionIds: [Swift.String])
- @objc public convenience init(withCollection collectionId: Swift.String)
- @objc dynamic public init()
- @objc public convenience init(fromSearchBrowse: Swift.Bool)
- @objc override dynamic public func viewDidLoad()
- @objc override dynamic public func viewDidLayoutSubviews()
- @objc deinit
- @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
-}
-extension HelpCenterContainerViewController : Intercom_Private.ICMErrorViewDelegate {
- @objc dynamic public func didSelectErrorAction()
-}
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/i386-apple-ios-simulator.swiftdoc b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/i386-apple-ios-simulator.swiftdoc
deleted file mode 100644
index fee2cd47..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/i386-apple-ios-simulator.swiftdoc and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/i386-apple-ios-simulator.swiftinterface b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/i386-apple-ios-simulator.swiftinterface
deleted file mode 100644
index 3f063711..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/i386-apple-ios-simulator.swiftinterface
+++ /dev/null
@@ -1,91 +0,0 @@
-// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28)
-// swift-module-flags: -target i386-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Intercom
-import Foundation
-@_exported import Intercom
-import Intercom_Private
-import Swift
-import UIKit
-import os.log
-import os
-@objc public protocol HelpCenterStartConversationViewDelegate {
- @objc func didSelectStartConversation()
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterStartConversationView : UIKit.UIView {
- @objc weak public var startConversationDelegate: HelpCenterStartConversationViewDelegate?
- @objc deinit
-}
-@_hasMissingDesignatedInitializers @objc public class AvailableTeammatesView : UIKit.UIStackView {
- @objc override dynamic public init(frame: CoreGraphics.CGRect)
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(ICMSearchBrowseView) public class SearchBrowseView : UIKit.UIView {
- @objc override dynamic public convenience init(frame: CoreGraphics.CGRect)
- public init(_ frame: CoreGraphics.CGRect, _ config: Intercom_Private.ICMConfigProtocol = ICMConfig.shared())
- @objc public func searchHelpArticlesAction()
- @objc public func heightForCard(width: CoreGraphics.CGFloat) -> CoreGraphics.CGFloat
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterDataService : ObjectiveC.NSObject {
- @objc override dynamic public init()
- @objc public func fetchCollections(completion: @escaping ([HelpCenterCollection]?, Swift.Error?) -> Swift.Void)
- @objc public func fetchCollection(collectionId: Swift.String, completion: @escaping (HelpCenterCollectionContent?, Swift.Error?) -> Swift.Void)
- @objc public func searchResults(for searchTerm: Swift.String, completion: @escaping ([HelpCenterArticleSearchResult]?, Swift.Error?) -> Swift.Void)
- @objc deinit
-}
-@objc @objcMembers public class ArticleMetaData : ObjectiveC.NSObject {
- @objc public static var searchBrowseSource: Swift.String
- @objc public var articleId: Swift.String?
- @objc public var articleSource: Swift.String?
- @objc public init(id: Swift.String?, source: Swift.String?)
- @objc deinit
- @objc override dynamic public init()
-}
-@_inheritsConvenienceInitializers @objc public class HelpCenterMetricService : ObjectiveC.NSObject {
- @objc public var contextIsSearchBrowse: Swift.Bool
- @objc public static func addSearchBrowseViewedEvent(homeScreenIndex: Swift.Int)
- @objc public static func addOpenedFromAPIEvent()
- @objc public static func addOpenedArticleFromAPIEvent()
- @objc public static func addOpenedFromConversationEvent()
- @objc public static func addOpenedFromInAppEvent()
- @objc public static func addOpenedFromLegacySearchAppEvent()
- @objc public static func addOpenedFromMessengerHomeAppEvent()
- @objc public static func addOpenedFromCarousel()
- @objc public static func addOpenedFromPushNotification()
- @objc public func addArticleViewedEvent()
- @objc public func addArticleFailedEvent(errorCode: Foundation.NSNumber)
- @objc public func addHappyReactionEvent()
- @objc public func addNeutralReactionEvent()
- @objc public func addSadReactionEvent(conversationOptionShown: Swift.Bool)
- @objc public func addNewConversationFromArticleEvent(accessToTeammate: Swift.Bool)
- @objc deinit
- @objc override dynamic public init()
-}
-@objc public protocol NativeArticleReactionsViewDelegate {
- @objc func selectedReactionIndex(_ reactionIdex: Swift.Int)
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NativeArticleReactionsView : UIKit.UIView {
- @objc public static var sadReactionIndex: Swift.Int
- @objc public static var neutralReactionIndex: Swift.Int
- @objc public static var happyReactionIndex: Swift.Int
- @objc weak public var articleDelegate: NativeArticleReactionsViewDelegate?
- @objc deinit
-}
-extension Intercom {
- public class func fetchHelpCenterCollections(completion: @escaping (Swift.Result<[HelpCenterCollection], ICMHelpCenterDataError>) -> Swift.Void)
- public class func fetchHelpCenterCollection(_ collectionId: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void)
- public class func searchHelpCenter(_ searchTerm: Swift.String, completion: @escaping (Swift.Result<[HelpCenterArticleSearchResult], ICMHelpCenterDataError>) -> Swift.Void)
-}
-@_hasMissingDesignatedInitializers @objc public class HelpCenterContainerViewController : UIKit.UIViewController {
- @objc public convenience init(withCollections collectionIds: [Swift.String])
- @objc public convenience init(withCollection collectionId: Swift.String)
- @objc dynamic public init()
- @objc public convenience init(fromSearchBrowse: Swift.Bool)
- @objc override dynamic public func viewDidLoad()
- @objc override dynamic public func viewDidLayoutSubviews()
- @objc deinit
- @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
-}
-extension HelpCenterContainerViewController : Intercom_Private.ICMErrorViewDelegate {
- @objc dynamic public func didSelectErrorAction()
-}
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/i386.swiftdoc b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/i386.swiftdoc
deleted file mode 100644
index fee2cd47..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/i386.swiftdoc and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/i386.swiftinterface b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/i386.swiftinterface
deleted file mode 100644
index 3f063711..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/i386.swiftinterface
+++ /dev/null
@@ -1,91 +0,0 @@
-// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28)
-// swift-module-flags: -target i386-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Intercom
-import Foundation
-@_exported import Intercom
-import Intercom_Private
-import Swift
-import UIKit
-import os.log
-import os
-@objc public protocol HelpCenterStartConversationViewDelegate {
- @objc func didSelectStartConversation()
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterStartConversationView : UIKit.UIView {
- @objc weak public var startConversationDelegate: HelpCenterStartConversationViewDelegate?
- @objc deinit
-}
-@_hasMissingDesignatedInitializers @objc public class AvailableTeammatesView : UIKit.UIStackView {
- @objc override dynamic public init(frame: CoreGraphics.CGRect)
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(ICMSearchBrowseView) public class SearchBrowseView : UIKit.UIView {
- @objc override dynamic public convenience init(frame: CoreGraphics.CGRect)
- public init(_ frame: CoreGraphics.CGRect, _ config: Intercom_Private.ICMConfigProtocol = ICMConfig.shared())
- @objc public func searchHelpArticlesAction()
- @objc public func heightForCard(width: CoreGraphics.CGFloat) -> CoreGraphics.CGFloat
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterDataService : ObjectiveC.NSObject {
- @objc override dynamic public init()
- @objc public func fetchCollections(completion: @escaping ([HelpCenterCollection]?, Swift.Error?) -> Swift.Void)
- @objc public func fetchCollection(collectionId: Swift.String, completion: @escaping (HelpCenterCollectionContent?, Swift.Error?) -> Swift.Void)
- @objc public func searchResults(for searchTerm: Swift.String, completion: @escaping ([HelpCenterArticleSearchResult]?, Swift.Error?) -> Swift.Void)
- @objc deinit
-}
-@objc @objcMembers public class ArticleMetaData : ObjectiveC.NSObject {
- @objc public static var searchBrowseSource: Swift.String
- @objc public var articleId: Swift.String?
- @objc public var articleSource: Swift.String?
- @objc public init(id: Swift.String?, source: Swift.String?)
- @objc deinit
- @objc override dynamic public init()
-}
-@_inheritsConvenienceInitializers @objc public class HelpCenterMetricService : ObjectiveC.NSObject {
- @objc public var contextIsSearchBrowse: Swift.Bool
- @objc public static func addSearchBrowseViewedEvent(homeScreenIndex: Swift.Int)
- @objc public static func addOpenedFromAPIEvent()
- @objc public static func addOpenedArticleFromAPIEvent()
- @objc public static func addOpenedFromConversationEvent()
- @objc public static func addOpenedFromInAppEvent()
- @objc public static func addOpenedFromLegacySearchAppEvent()
- @objc public static func addOpenedFromMessengerHomeAppEvent()
- @objc public static func addOpenedFromCarousel()
- @objc public static func addOpenedFromPushNotification()
- @objc public func addArticleViewedEvent()
- @objc public func addArticleFailedEvent(errorCode: Foundation.NSNumber)
- @objc public func addHappyReactionEvent()
- @objc public func addNeutralReactionEvent()
- @objc public func addSadReactionEvent(conversationOptionShown: Swift.Bool)
- @objc public func addNewConversationFromArticleEvent(accessToTeammate: Swift.Bool)
- @objc deinit
- @objc override dynamic public init()
-}
-@objc public protocol NativeArticleReactionsViewDelegate {
- @objc func selectedReactionIndex(_ reactionIdex: Swift.Int)
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NativeArticleReactionsView : UIKit.UIView {
- @objc public static var sadReactionIndex: Swift.Int
- @objc public static var neutralReactionIndex: Swift.Int
- @objc public static var happyReactionIndex: Swift.Int
- @objc weak public var articleDelegate: NativeArticleReactionsViewDelegate?
- @objc deinit
-}
-extension Intercom {
- public class func fetchHelpCenterCollections(completion: @escaping (Swift.Result<[HelpCenterCollection], ICMHelpCenterDataError>) -> Swift.Void)
- public class func fetchHelpCenterCollection(_ collectionId: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void)
- public class func searchHelpCenter(_ searchTerm: Swift.String, completion: @escaping (Swift.Result<[HelpCenterArticleSearchResult], ICMHelpCenterDataError>) -> Swift.Void)
-}
-@_hasMissingDesignatedInitializers @objc public class HelpCenterContainerViewController : UIKit.UIViewController {
- @objc public convenience init(withCollections collectionIds: [Swift.String])
- @objc public convenience init(withCollection collectionId: Swift.String)
- @objc dynamic public init()
- @objc public convenience init(fromSearchBrowse: Swift.Bool)
- @objc override dynamic public func viewDidLoad()
- @objc override dynamic public func viewDidLayoutSubviews()
- @objc deinit
- @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
-}
-extension HelpCenterContainerViewController : Intercom_Private.ICMErrorViewDelegate {
- @objc dynamic public func didSelectErrorAction()
-}
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/x86_64-apple-ios-simulator.swiftdoc
deleted file mode 100644
index 0070080c..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
deleted file mode 100644
index ae339285..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
+++ /dev/null
@@ -1,91 +0,0 @@
-// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28)
-// swift-module-flags: -target x86_64-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Intercom
-import Foundation
-@_exported import Intercom
-import Intercom_Private
-import Swift
-import UIKit
-import os.log
-import os
-@objc public protocol HelpCenterStartConversationViewDelegate {
- @objc func didSelectStartConversation()
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterStartConversationView : UIKit.UIView {
- @objc weak public var startConversationDelegate: HelpCenterStartConversationViewDelegate?
- @objc deinit
-}
-@_hasMissingDesignatedInitializers @objc public class AvailableTeammatesView : UIKit.UIStackView {
- @objc override dynamic public init(frame: CoreGraphics.CGRect)
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(ICMSearchBrowseView) public class SearchBrowseView : UIKit.UIView {
- @objc override dynamic public convenience init(frame: CoreGraphics.CGRect)
- public init(_ frame: CoreGraphics.CGRect, _ config: Intercom_Private.ICMConfigProtocol = ICMConfig.shared())
- @objc public func searchHelpArticlesAction()
- @objc public func heightForCard(width: CoreGraphics.CGFloat) -> CoreGraphics.CGFloat
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterDataService : ObjectiveC.NSObject {
- @objc override dynamic public init()
- @objc public func fetchCollections(completion: @escaping ([HelpCenterCollection]?, Swift.Error?) -> Swift.Void)
- @objc public func fetchCollection(collectionId: Swift.String, completion: @escaping (HelpCenterCollectionContent?, Swift.Error?) -> Swift.Void)
- @objc public func searchResults(for searchTerm: Swift.String, completion: @escaping ([HelpCenterArticleSearchResult]?, Swift.Error?) -> Swift.Void)
- @objc deinit
-}
-@objc @objcMembers public class ArticleMetaData : ObjectiveC.NSObject {
- @objc public static var searchBrowseSource: Swift.String
- @objc public var articleId: Swift.String?
- @objc public var articleSource: Swift.String?
- @objc public init(id: Swift.String?, source: Swift.String?)
- @objc deinit
- @objc override dynamic public init()
-}
-@_inheritsConvenienceInitializers @objc public class HelpCenterMetricService : ObjectiveC.NSObject {
- @objc public var contextIsSearchBrowse: Swift.Bool
- @objc public static func addSearchBrowseViewedEvent(homeScreenIndex: Swift.Int)
- @objc public static func addOpenedFromAPIEvent()
- @objc public static func addOpenedArticleFromAPIEvent()
- @objc public static func addOpenedFromConversationEvent()
- @objc public static func addOpenedFromInAppEvent()
- @objc public static func addOpenedFromLegacySearchAppEvent()
- @objc public static func addOpenedFromMessengerHomeAppEvent()
- @objc public static func addOpenedFromCarousel()
- @objc public static func addOpenedFromPushNotification()
- @objc public func addArticleViewedEvent()
- @objc public func addArticleFailedEvent(errorCode: Foundation.NSNumber)
- @objc public func addHappyReactionEvent()
- @objc public func addNeutralReactionEvent()
- @objc public func addSadReactionEvent(conversationOptionShown: Swift.Bool)
- @objc public func addNewConversationFromArticleEvent(accessToTeammate: Swift.Bool)
- @objc deinit
- @objc override dynamic public init()
-}
-@objc public protocol NativeArticleReactionsViewDelegate {
- @objc func selectedReactionIndex(_ reactionIdex: Swift.Int)
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NativeArticleReactionsView : UIKit.UIView {
- @objc public static var sadReactionIndex: Swift.Int
- @objc public static var neutralReactionIndex: Swift.Int
- @objc public static var happyReactionIndex: Swift.Int
- @objc weak public var articleDelegate: NativeArticleReactionsViewDelegate?
- @objc deinit
-}
-extension Intercom {
- public class func fetchHelpCenterCollections(completion: @escaping (Swift.Result<[HelpCenterCollection], ICMHelpCenterDataError>) -> Swift.Void)
- public class func fetchHelpCenterCollection(_ collectionId: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void)
- public class func searchHelpCenter(_ searchTerm: Swift.String, completion: @escaping (Swift.Result<[HelpCenterArticleSearchResult], ICMHelpCenterDataError>) -> Swift.Void)
-}
-@_hasMissingDesignatedInitializers @objc public class HelpCenterContainerViewController : UIKit.UIViewController {
- @objc public convenience init(withCollections collectionIds: [Swift.String])
- @objc public convenience init(withCollection collectionId: Swift.String)
- @objc dynamic public init()
- @objc public convenience init(fromSearchBrowse: Swift.Bool)
- @objc override dynamic public func viewDidLoad()
- @objc override dynamic public func viewDidLayoutSubviews()
- @objc deinit
- @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
-}
-extension HelpCenterContainerViewController : Intercom_Private.ICMErrorViewDelegate {
- @objc dynamic public func didSelectErrorAction()
-}
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/x86_64.swiftdoc b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/x86_64.swiftdoc
deleted file mode 100644
index 0070080c..00000000
Binary files a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/x86_64.swiftdoc and /dev/null differ
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/x86_64.swiftinterface b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/x86_64.swiftinterface
deleted file mode 100644
index ae339285..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/Intercom.swiftmodule/x86_64.swiftinterface
+++ /dev/null
@@ -1,91 +0,0 @@
-// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28)
-// swift-module-flags: -target x86_64-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Intercom
-import Foundation
-@_exported import Intercom
-import Intercom_Private
-import Swift
-import UIKit
-import os.log
-import os
-@objc public protocol HelpCenterStartConversationViewDelegate {
- @objc func didSelectStartConversation()
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterStartConversationView : UIKit.UIView {
- @objc weak public var startConversationDelegate: HelpCenterStartConversationViewDelegate?
- @objc deinit
-}
-@_hasMissingDesignatedInitializers @objc public class AvailableTeammatesView : UIKit.UIStackView {
- @objc override dynamic public init(frame: CoreGraphics.CGRect)
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(ICMSearchBrowseView) public class SearchBrowseView : UIKit.UIView {
- @objc override dynamic public convenience init(frame: CoreGraphics.CGRect)
- public init(_ frame: CoreGraphics.CGRect, _ config: Intercom_Private.ICMConfigProtocol = ICMConfig.shared())
- @objc public func searchHelpArticlesAction()
- @objc public func heightForCard(width: CoreGraphics.CGFloat) -> CoreGraphics.CGFloat
- @objc deinit
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class HelpCenterDataService : ObjectiveC.NSObject {
- @objc override dynamic public init()
- @objc public func fetchCollections(completion: @escaping ([HelpCenterCollection]?, Swift.Error?) -> Swift.Void)
- @objc public func fetchCollection(collectionId: Swift.String, completion: @escaping (HelpCenterCollectionContent?, Swift.Error?) -> Swift.Void)
- @objc public func searchResults(for searchTerm: Swift.String, completion: @escaping ([HelpCenterArticleSearchResult]?, Swift.Error?) -> Swift.Void)
- @objc deinit
-}
-@objc @objcMembers public class ArticleMetaData : ObjectiveC.NSObject {
- @objc public static var searchBrowseSource: Swift.String
- @objc public var articleId: Swift.String?
- @objc public var articleSource: Swift.String?
- @objc public init(id: Swift.String?, source: Swift.String?)
- @objc deinit
- @objc override dynamic public init()
-}
-@_inheritsConvenienceInitializers @objc public class HelpCenterMetricService : ObjectiveC.NSObject {
- @objc public var contextIsSearchBrowse: Swift.Bool
- @objc public static func addSearchBrowseViewedEvent(homeScreenIndex: Swift.Int)
- @objc public static func addOpenedFromAPIEvent()
- @objc public static func addOpenedArticleFromAPIEvent()
- @objc public static func addOpenedFromConversationEvent()
- @objc public static func addOpenedFromInAppEvent()
- @objc public static func addOpenedFromLegacySearchAppEvent()
- @objc public static func addOpenedFromMessengerHomeAppEvent()
- @objc public static func addOpenedFromCarousel()
- @objc public static func addOpenedFromPushNotification()
- @objc public func addArticleViewedEvent()
- @objc public func addArticleFailedEvent(errorCode: Foundation.NSNumber)
- @objc public func addHappyReactionEvent()
- @objc public func addNeutralReactionEvent()
- @objc public func addSadReactionEvent(conversationOptionShown: Swift.Bool)
- @objc public func addNewConversationFromArticleEvent(accessToTeammate: Swift.Bool)
- @objc deinit
- @objc override dynamic public init()
-}
-@objc public protocol NativeArticleReactionsViewDelegate {
- @objc func selectedReactionIndex(_ reactionIdex: Swift.Int)
-}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NativeArticleReactionsView : UIKit.UIView {
- @objc public static var sadReactionIndex: Swift.Int
- @objc public static var neutralReactionIndex: Swift.Int
- @objc public static var happyReactionIndex: Swift.Int
- @objc weak public var articleDelegate: NativeArticleReactionsViewDelegate?
- @objc deinit
-}
-extension Intercom {
- public class func fetchHelpCenterCollections(completion: @escaping (Swift.Result<[HelpCenterCollection], ICMHelpCenterDataError>) -> Swift.Void)
- public class func fetchHelpCenterCollection(_ collectionId: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void)
- public class func searchHelpCenter(_ searchTerm: Swift.String, completion: @escaping (Swift.Result<[HelpCenterArticleSearchResult], ICMHelpCenterDataError>) -> Swift.Void)
-}
-@_hasMissingDesignatedInitializers @objc public class HelpCenterContainerViewController : UIKit.UIViewController {
- @objc public convenience init(withCollections collectionIds: [Swift.String])
- @objc public convenience init(withCollection collectionId: Swift.String)
- @objc dynamic public init()
- @objc public convenience init(fromSearchBrowse: Swift.Bool)
- @objc override dynamic public func viewDidLoad()
- @objc override dynamic public func viewDidLayoutSubviews()
- @objc deinit
- @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
-}
-extension HelpCenterContainerViewController : Intercom_Private.ICMErrorViewDelegate {
- @objc dynamic public func didSelectErrorAction()
-}
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/module.modulemap b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/module.modulemap
deleted file mode 100644
index 4c58a732..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/module.modulemap
+++ /dev/null
@@ -1,33 +0,0 @@
-// Module map for Intercom.framework. Module map documentation is here: https://clang.llvm.org/docs/Modules.html#module-map-language
-framework module Intercom {
- // The umbrella header acts as the default header for the module. It should import all other required headers.
- // This defines what is imported with `import Intercom`, `@import Intercom;` or `#import `
- // Any header not imported by the umbrella header must have an explicit header declaration (see the Experimental submodule below)
- umbrella header "Intercom.h"
-
- // This exports all modules imported by the umbrella header
- export *
-
- // `module *` defines that all headers imported in the umbrella are themselves submodules
- // `{ export * }` here exports any modules imported by these submodules
- module * { export * }
-
- // When a new system library is required, it should be added here
- link "icucore"
- link "xml2"
-
- // When a new system framework is required, it should be added here
- link framework "Foundation"
- link framework "UIKit"
- link framework "Accelerate"
- link framework "Photos"
- link framework "AudioToolbox"
- link framework "CFNetwork"
- link framework "CoreGraphics"
- link framework "ImageIO"
- link framework "MobileCoreServices"
- link framework "QuartzCore"
- link framework "Security"
- link framework "SystemConfiguration"
- link framework "WebKit"
-}
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/module.private.modulemap b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/module.private.modulemap
deleted file mode 100644
index dcfc1d52..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/Modules/module.private.modulemap
+++ /dev/null
@@ -1,30 +0,0 @@
- framework module Intercom_Private {
- header "ICMAssets.h"
- header "ICMHTTPClientProtocol.h"
- header "ICMHTTPClient.h"
- header "ICMTranslationManager.h"
- header "ICMHelpCenterTranslationManager.h"
- header "ICMTranslationKeys.h"
- header "ICMEngine.h"
- header "ICMNavigationController.h"
- header "ICMErrorViewController.h"
- header "ICMLoadingViewController.h"
- header "ICMNavigationBarCloseButton.h"
- header "ICMErrorViewDelegate.h"
- header "ICMColor.h"
- header "ICMArticleWebViewController.h"
- header "ICMContentViewControllerDelegate.h"
- header "ICMContentViewController.h"
- header "ICMUtils.h"
- header "UIImage+ICMImageUtils.h"
- header "ICMFeedbackGenerator.h"
- header "ICMActiveAdminsAvatarView.h"
- header "ICMStartConversationButton.h"
- header "ICMConfig.h"
- header "ICMSafeNetworkModel.h"
- header "ICMPresentationManager.h"
- header "ICMMetric.h"
- header "ICMMetricEvent.h"
- export *
-}
-
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMActiveAdminsAvatarView.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMActiveAdminsAvatarView.h
deleted file mode 100644
index b793f183..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMActiveAdminsAvatarView.h
+++ /dev/null
@@ -1,19 +0,0 @@
-//
-// ICMActiveAdminsAvatarView.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael Isaakidis on 17/05/2018.
-// Copyright © 2018 Intercom. All rights reserved.
-//
-
-#import
-
-@interface ICMActiveAdminsAvatarView : UIView
-
-- (instancetype)initWithHeight:(CGFloat)avatarHeight
- overlap:(CGFloat) avatarOverlap
- maxCount:(NSInteger) maxAvatarCount;
-- (NSUInteger)numberOfAvatarsDisplayed;
-- (void)updateVisibleAvatars;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMArticleWebViewController.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMArticleWebViewController.h
deleted file mode 100644
index f403b383..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMArticleWebViewController.h
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// ICMArticleWebViewController.m
-// IntercomSDK-Dynamic
-//
-// Created by Katherine Brennan on 02/10/2020.
-// Copyright © 2020 Intercom. All rights reserved.
-//
-
-#import
-#import "ICMContentViewController.h"
-@class HelpCenterMetricService;
-
-@protocol ICMContentViewControllerDelegate;
-
-@interface ICMArticleWebViewController : UIViewController
-
-@property (nonatomic, weak) id contentDelegate;
-- (instancetype)initWithId:(NSString *)articleId metricService:(id)metricService;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMAssets.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMAssets.h
deleted file mode 100644
index e6811553..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMAssets.h
+++ /dev/null
@@ -1,98 +0,0 @@
-//
-// Created by Ignacio Delgado on 17/04/2014.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#import
-#import
-
-@interface ICMAssets : NSObject
-
-+ (UIImage *)intercomLogoImage;
-
-+ (UIImage *)openPostFromCardImage;
-
-+ (UIImage *)spinnerImage;
-
-+ (UIImage *)defaultAvatarImageWithInitials:(NSString *)userInitials diameter:(CGFloat)diameter; // if there are initials, show them; if not, fall back to image
-+ (UIImage *)warningImage;
-
-+ (UIImage *)backButtonImage;
-+ (UIImage *)submitButtonBackgroundImage;
-+ (UIImage *)submitButtonBackgroundImageClear;
-+ (UIImage *)submitImage;
-+ (UIImage *)pickerSelector;
-+ (UIImage *)dateSelector;
-+ (UIImage *)greenCheckImage;
-+ (UIImage *)buttonLoadingImage;
-+ (UIImage *)textFieldBackgroundImage;
-+ (UIImage *)textFieldErrorBackgroundImage;
-+ (UIImage *)booleanButtonLeftImage;
-+ (UIImage *)booleanButtonLeftImageSelected;
-+ (UIImage *)booleanButtonRightImage;
-+ (UIImage *)booleanButtonRightImageSelected;
-
-+ (UIImage *)closePostImage;
-+ (UIImage *)closeNoteImage;
-+ (UIImage *)closeImage;
-
-+ (UIImage *)startConversationImage;
-+ (UIImage *)askAQuestion;
-
-+ (UIImage *)messageFailedImage;
-
-+ (UIImage *)uploadButtonImage;
-+ (UIImage *)chatBubbleImage;
-
-+ (UIImage *)launcherImage;
-
-+ (UIImage *)twitterIcon;
-+ (UIImage *)linkedinIcon;
-
-+ (UIImage *)snoozeIcon;
-
-+ (UIImage *)sendIcon;
-+ (UIImage *)cancelIcon;
-+ (UIImage *)undoIcon;
-
-+ (UIImage *)homescreenFailedImage;
-+ (UIImage *)searchIcon;
-
-// Help Center
-+ (UIImage *)helpCenterLoadingImage;
-+ (UIImage *)helpCenterChevron;
-
-// Carousel
-+ (UIImage *)screenActionCheckmark;
-+ (UIImage *)carouselLoadingImage;
-
-// Articles
-+ (UIImage *)articleLoadingImage;
-
-// Teammate Profile
-+ (UIImage *)teammateTimeIcon;
-+ (UIImage *)teammateRoleIcon;
-+ (UIImage *)teammateIntroIcon;
-
-//Text Input
-+ (UIImage *)textInputIcon;
-+ (UIImage *)textInputSelectedIcon;
-
-//Photo Input
-+ (UIImage *)photoInputIcon;
-+ (UIImage *)photoInputSelectedIcon;
-+ (UIImage *)expandPhotosIcon;
-
-//GIF Input
-+ (UIImage *)gifInputIcon;
-+ (UIImage *)gifInputSelectedIcon;
-
-+ (UIImage *)footerLinkIcon;
-
-// Sounds
-+ (NSURL *)soundForMessageSending;
-+ (NSURL *)soundForMessageSendingFailure;
-+ (NSURL *)soundForIncomingAdminMessage;
-+ (NSURL *)soundForIncomingOperatorMessage;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMAutoLayout.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMAutoLayout.h
deleted file mode 100644
index 9e5669cf..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMAutoLayout.h
+++ /dev/null
@@ -1,193 +0,0 @@
-//
-// ICMAutoLayout.h
-// Pods
-//
-// Created by James Treanor on 16/04/2015.
-//
-//
-
-#import
-
-typedef NS_OPTIONS(NSUInteger, ICM_JRTViewPinEdges)
-{
- /// Pins the top edge of an item.
- ICM_JRTViewPinTopEdge = 1 << 0,
-
- /// Pins the right edge of an item.
- ICM_JRTViewPinRightEdge = 1 << 1,
-
- /// Pins the bottom edge of an item.
- ICM_JRTViewPinBottomEdge = 1 << 2,
-
- /// Pins the left edge of an item.
- ICM_JRTViewPinLeftEdge = 1 << 3,
-
- /// Pins all edges of an item.
- ICM_JRTViewPinAllEdges = ~0UL
-};
-
-@interface ICMAutoLayout : NSObject
-
-/**
- * @name Centering Views
- */
-
-/**
- * Centers the receiver in the superview on a specified axis.
- *
- * @param axis The axis of the superview you wish to center the receiver in. This parameter accepts `NSLayoutAttributeCenterX` or `NSLayoutAttributeCenterY`.
- *
- * @return The `NSLayoutConstraint` generated by this method.
- */
-+(NSLayoutConstraint *)centerView:(UIView *)primaryView inContainerOnAxis:(NSLayoutAttribute)axis;
-
-/**
- * Centers the receiver in the superview on a specified axis.
- *
- * @param axis The axis of the superview you wish to center the receiver in. This parameter accepts `NSLayoutAttributeCenterX` or `NSLayoutAttributeCenterY`.
- * @param constant Constraint constant value.
- *
- * @return The `NSLayoutConstraint` generated by this method.
-*/
-
-+ (NSLayoutConstraint *)centerView:(UIView *)primaryView inContainerOnAxis:(NSLayoutAttribute)axis withConstant:(CGFloat)constant;
-
-/**
- * Centers the receiver in the superview on a specified axis.
- *
- * @param axis The axis of the superview you wish to center the receiver in. This parameter accepts `NSLayoutAttributeCenterX` or `NSLayoutAttributeCenterY`.
- * @param constant Constraint constant value.
- * @param priority Constraint priority value.
- *
- * @return The `NSLayoutConstraint` generated by this method.
-*/
-
-+ (NSLayoutConstraint *)centerView:(UIView *)primaryView inContainerOnAxis:(NSLayoutAttribute)axis withConstant:(CGFloat)constant withPriority:(UILayoutPriority)priority;
-
-/**
- * @name Constraining to a fixed size
- */
-
-/**
- * Constrains the receiver to a fixed size.
- * @warning Setting an axis to 0.0 will result in no constraint being applied to that axis.
- *
- * @param size The size to constrain the receiver to.
- *
- * @return An array of `NSLayoutConstraint` objects generated by this method.
- */
-+(NSArray *)constrainView:(UIView *)primaryView toSize:(CGSize)size;
-
-/**
- * Constrains the receiver to a fixed width.
- *
- * @param width The width to constrain the receiver to
- *
- * @return The `NSLayoutConstraint` generated by this method.
- */
-+(NSLayoutConstraint *)constrainView:(UIView *)primaryView toWidth:(CGFloat)width;
-
-/**
- * Constrains the receiver to a fixed width.
- *
- * @param width The width to constrain the receiver to
- * @param priority The UILayoutPriority of the constraint
- *
- * @return The `NSLayoutConstraint` generated by this method.
-*/
-
-+(NSLayoutConstraint *)constrainView:(UIView *)primaryView toWidth:(CGFloat)width withPriority:(UILayoutPriority)priority;
-
-/**
- * Constrains the receiver to a fixed height.
- *
- * @param height The height to constrain the receiver to
- *
- * @return The `NSLayoutConstraint` generated by this method.
- */
-+(NSLayoutConstraint *)constrainView:(UIView *)primaryView toHeight:(CGFloat)height;
-
-/**
- * Constrains the receiver to a fixed height.
- *
- * @param height The height to constrain the receiver to
- * @param priority The UILayoutPriority of the constraint
- *
- * @return The `NSLayoutConstraint` generated by this method.
-*/
-+ (NSLayoutConstraint *)constrainView:(UIView *)primaryView toHeight:(CGFloat)height withPriority:(UILayoutPriority)priority;
-
-/**
- * @name Pinning to other items
- */
-
-/**
- * Pins an attribute to any valid attribute of the peer item. The item may be the layout guide of a view controller.
- *
- * @param attribute The attribute of the receiver that you want to pin.
- * @param toAttribute The attribute of the `peerView` that you want to pin.
- * @param peerItem The item that you want to pin the receiver to. (either `UIView` or `UILayoutSupport`).
- *
- * @return The `NSLayoutConstraint` generated by this method.
- */
-+(NSLayoutConstraint *)pinView:(UIView *)primaryView attribute:(NSLayoutAttribute)attribute toAttribute:(NSLayoutAttribute)toAttribute ofItem:(id)peerItem;
-
-/**
- * Pins an attribute to any valid attribute of the peer item. The item may be the layout guide of a view controller. Provide a constant for offset/inset.
- *
- * @param attribute The attribute of the receiver that you want to pin.
- * @param toAttribute The attribute of the `peerView` that you want to pin.
- * @param peerItem The item that you want to pin the receiver to. (either `UIView` or `UILayoutSupport`).
- * @param constant The constant that you want to apply to the constraint.
- *
- * @return The `NSLayoutConstraint` generated by this method.
- */
-+(NSLayoutConstraint *)pinView:(UIView *)primaryView attribute:(NSLayoutAttribute)attribute toAttribute:(NSLayoutAttribute)toAttribute ofItem:(id)peerItem withConstant:(CGFloat)constant;
-
-/**
- * Pins an attribute to any valid attribute of the peer item. The item may be the layout guide of a view controller. Provide a constant for offset/inset along with a relation.
- *
- * @param attribute The attribute of the receiver that you want to pin.
- * @param toAttribute The attribute of the `peerView` that you want to pin.
- * @param peerItem The item that you want to pin the receiver to. (either `UIView` or `UILayoutSupport`).
- * @param constant The constant that you want to apply to the constraint.
- * @param relation The relation that you wish to apply to the constraint.
- *
- * @return The `NSLayoutConstraint` generated by this method.
- */
-+(NSLayoutConstraint *)pinView:(UIView *)primaryView attribute:(NSLayoutAttribute)attribute toAttribute:(NSLayoutAttribute)toAttribute ofItem:(id)peerItem withConstant:(CGFloat)constant relation:(NSLayoutRelation)relation;
-
-/**
- * Pins the receivers edge(s) to another views edge(s). Both views must be in the same view hierarchy.
- *
- * @param edges The edges that should be pinned to the peerView's edges.
- * @param peerView The view that the receiver is being pinned to.
- *
- * @return An array of `NSLayoutConstraint` objects generated by this method.
- */
-+(NSArray *)pinView:(UIView *)primaryView edges:(ICM_JRTViewPinEdges)edges toSameEdgesOfView:(UIView *)peerView;
-
-/**
- * Pins the receivers edge(s) to another views edge(s). Both views must be in the same view hierarchy.
- *
- * @param edges The edges that should be pinned to the peerView's edges.
- * @param peerView The view that the receiver is being pinned to.
- * @param inset The inset that is applied to the attributes.
- *
- * @return An array of `NSLayoutConstraint` objects generated by this method.
- */
-+(NSArray *)pinView:(UIView *)primaryView edges:(ICM_JRTViewPinEdges)edges toSameEdgesOfView:(UIView *)peerView inset:(CGFloat)inset;
-
-/**
- * Pins the receivers edge(s) to another views edge(s). Both views must be in the same view hierarchy.
- *
- * @param edges The edges that should be pinned to the peerView's edges.
- * @param peerView The view that the receiver is being pinned to.
- * @param inset The inset that is applied to the attributes.
- * @param priority The resulting constraints' priorities.
- *
- * @return An array of `NSLayoutConstraint` objects generated by this method.
-*/
-+ (NSArray *)pinView:(UIView *)primaryView edges:(ICM_JRTViewPinEdges)edges toSameEdgesOfView:(UIView *)peerView inset:(CGFloat)inset withPriority:(UILayoutPriority)priority;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMColor.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMColor.h
deleted file mode 100644
index 3e462378..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMColor.h
+++ /dev/null
@@ -1,105 +0,0 @@
-#import
-#import
-
-@interface ICMColor : NSObject
-
-+ (UIColor *)primaryColor;
-
-+ (UIColor *)darkPrimaryColor;
-+ (UIColor *)primaryTextColor;
-+ (UIColor *)primaryColorVariant;
-+ (UIColor *)primaryOrDarkColor;
-+ (UIColor *)whiteOrDarkForPrimaryColor;
-+ (UIColor *)secondaryColor;
-+ (UIColor *)darkSecondaryColor;
-+ (UIColor *)secondaryTextColor;
-+ (UIColor *)secondaryColorVariant;
-+ (UIColor *)helpCenterThemeColor;
-+ (UIColor *)helpCenterTextColor;
-+ (UIColor *)helpCenterSearchPlaceholderColor;
-+ (UIColor *)helpCenterSearchBarBackgroundColor;
-+ (UIColor *)bubbleTextColorUser;
-+ (UIColor *)bubbleFillColorUser;
-+ (UIColor *)launcherImageColor;
-+ (UIColor *)intercomLinkColor;
-+ (UIColor *)conversationAccessoryViewTextColor;
-+ (UIColor *)composerSeparatorColor;
-+ (UIColor *)inAppsTitleColor;
-
-
-#pragma mark - Colour Palette
-
-+ (UIColor *)ghostWhite;
-+ (UIColor *)dark;
-+ (UIColor *)charcoalGrey;
-+ (UIColor *)coolGrey;
-+ (UIColor *)mercuryGrey;
-+ (UIColor *)silver;
-+ (UIColor *)intercomBlue;
-+ (UIColor *)errorColor;
-+ (UIColor *)closeButtonDarkColor;
-+ (UIColor *)closeButtonDarkColorWithAlpha:(CGFloat)alpha;
-+ (UIColor *)closeButtonLightColor;
-+ (UIColor *)closeButtonLightColorWithAlpha:(CGFloat)alpha;
-+ (BOOL)isLightColor:(UIColor *)backgroundColor;
-
-
-#pragma mark - System color backports
-
-/// A backport of `systemGray5` which is available from iOS 13.0+. This should be deleted when dropping iOS 12.
-+ (UIColor *)systemGray5;
-
-
-#pragma mark - Active/Away States
-
-+ (UIColor *)activeColour;
-+ (UIColor *)awayColour;
-
-
-#pragma mark - Button colors
-
-/**
- * Calculates and returns a darker version of the passed in color. This should be used as the text color of an ICMButton.
- *
- * @param color The original color.
- * @return The darker color to be used as the text color of an ICMButton.
-*/
-+ (UIColor *)buttonTextColorVarient:(UIColor *)color;
-
-/**
- * Calculates and returns a lighter version of the passed in color. This should be used as the background of an ICMButton.
- *
- * @param color The original color.
- * @return The lighter color to be used as the background of an ICMButton.
-*/
-+ (UIColor *)buttonBackgroundColorVarient:(UIColor *)color;
-
-/**
- * Calculates and returns a darker version of the passed in colour. This should be used as the background color of an ICMButton while it is being tapped.
- *
- * @param color The original color.
- * @return The darker color to be used as the background of am ICMButton while it is being tapped.
-*/
-+ (UIColor *)buttonHighlightColor:(UIColor *)color;
-
-
-#pragma mark - Colour Utils
-
-+ (UIColor *)colorWithR:(int)r g:(int)g b:(int)b;
-+ (UIColor *)colorWithR:(int)r g:(int)g b:(int)b alpha:(CGFloat)alpha;
-+ (UIColor *)colorWithHexString:(NSString *)hexString;
-
-/**
- * Fades between firstColor and secondColor at the specified ratio:
- *
- * @ ratio 0.0 - fully firstColor
- * @ ratio 0.5 - halfway between firstColor and secondColor
- * @ ratio 1.0 - fully secondColor
- *
- */
-
-+ (UIColor *)colorForFadeBetweenFirstColor:(UIColor *)firstColor
- secondColor:(UIColor *)secondColor
- atRatio:(CGFloat)ratio;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMConfig.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMConfig.h
deleted file mode 100644
index b68707e9..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMConfig.h
+++ /dev/null
@@ -1,78 +0,0 @@
-#import
-#import "ICMSafeNetworkModel.h"
-
-static NSString *const kICMIntercomConfigChangedNotification = @"kICMIntercomConfigChangedNotification";
-static NSString *const kICMMessengerBackgroundImageLoadedNotification = @"kICMMessengerBackgroundImageLoadedNotification";
-static NSString *const kICMMessengerLogoImageLoadedNotification = @"kICMMessengerLogoImageLoadedNotification";
-
-@protocol ICMConfigProtocol
-@property (readonly) BOOL inboundMessages;
-@property (readonly) BOOL accessToTeammateEnabled;
-@property (readonly) BOOL helpCenterRequireSearch;
-@end
-
-@interface ICMConfig : ICMSafeNetworkModel
-
-@property (nonatomic, copy) NSString *primaryColorString;
-@property (nonatomic, copy) NSString *secondaryColorString;
-@property (nonatomic, copy) NSString *appName;
-@property (nonatomic, copy) NSString *teamIntro;
-@property (nonatomic, copy) NSString *messengerBackgroundImageUrlString;
-@property (nonatomic, copy) NSString *messengerLogoUrlString;
-@property (nonatomic, copy) NSString *teamGreeting;
-@property (nonatomic, copy) NSString *launcherAlignment;
-@property (nonatomic, copy) NSString *temporaryExpectationsMessage;
-@property (nonatomic, assign) NSUInteger homescreenCardCount;
-@property (nonatomic, assign) NSInteger launcherBottomPadding;
-
-@property (nonatomic, assign) BOOL inboundMessages;
-@property (nonatomic, assign) BOOL attachmentsEnabled;
-@property (nonatomic, assign) BOOL gifsEnabled;
-@property (nonatomic, assign) BOOL showIntercomLink;
-@property (nonatomic, assign) BOOL audioEnabled;
-@property (nonatomic, assign) BOOL metricsEnabled;
-@property (nonatomic, assign) BOOL backgroundRequestsEnabled;
-@property (nonatomic, assign) BOOL shouldDisplayDarkPrimaryColor;
-@property (nonatomic, assign) BOOL shouldDisplayDarkSecondaryColor;
-@property (nonatomic, assign) BOOL shouldDisplayDarkHelpCenterColor;
-@property (nonatomic, assign) BOOL identityVerificationEnabled;
-@property (nonatomic, assign) BOOL accessToTeammateEnabled;
-@property (nonatomic, assign) BOOL helpCenterRequireSearch;
-
-@property (nonatomic, assign) NSTimeInterval userUpdateDupCacheMaxAge;
-@property (nonatomic, assign) NSTimeInterval newSessionThreshold;
-@property (nonatomic, assign) NSTimeInterval batchUserUpdatePeriod;
-@property (nonatomic, assign) NSTimeInterval softResetTimeout;
-@property (nonatomic, assign) NSTimeInterval pingDelay;
-
-@property (nonatomic, assign) NSTimeInterval rateLimitPeriod;
-@property (nonatomic, assign) NSUInteger rateLimit;
-
-@property (nonatomic, copy) NSString *helpCenterUrlString;
-@property (nonatomic, copy) NSArray *helpCenterUrlStrings;
-@property (nonatomic, copy) NSString *helpCenterBaseColorString;
-
-@property (nonatomic, strong) NSLocale *intercomLocale;
-@property (nonatomic, strong) NSLocale *helpCenterLocale;
-@property (nonatomic, strong) NSSet *features;
-
-+ (instancetype)instanceFromDictionary:(NSDictionary *)aDictionary;
-
-+ (void)updateSharedInstanceFromDictionary:(NSDictionary *)aDictionary;
-
-+ (instancetype)sharedConfig;
-+ (void)deleteSharedConfig;
-
-- (BOOL)isEqualToConfig:(ICMConfig *)other;
-- (void)saveIfNeeded;
-- (void)save;
-- (UIImage *)messengerBackgroundImage;
-- (UIImage *)messengerLogoImage;
-- (UIColor *)primaryColor;
-- (UIColor *)secondaryColor;
-- (UIColor *)helpCenterBaseColor;
-- (BOOL)hasFeature:(NSString *)feature;
-- (BOOL)receivedFromServer;
-- (BOOL)useDefaultLauncherAlignment;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMContentViewController.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMContentViewController.h
deleted file mode 100644
index 1f2f47b1..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMContentViewController.h
+++ /dev/null
@@ -1,27 +0,0 @@
-//
-// ICMContentViewController.h
-// IntercomSDK
-//
-// Created by Michael McNamara on 05/10/2020.
-// Copyright © 2020 Intercom. All rights reserved.
-//
-
-#import
-#import "ICMContentViewControllerDelegate.h"
-
-NS_ASSUME_NONNULL_BEGIN
-
-@protocol ICMContentViewController
-
-@property (nonatomic, weak) id contentDelegate;
-
-@required
-- (void)reload;
-
-@optional
-- (void)closeButtonTapped;
-- (void)viewDidDismissBySwipe;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMContentViewControllerDelegate.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMContentViewControllerDelegate.h
deleted file mode 100644
index 3f896f0b..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMContentViewControllerDelegate.h
+++ /dev/null
@@ -1,26 +0,0 @@
-//
-// ICMContentViewControllerDelegate.h
-// IntercomSDK
-//
-// Created by Michael McNamara on 30/03/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@protocol ICMContentViewControllerDelegate
-
-@required
-- (void)contentDidLoadWithDismissEnabled:(BOOL)dismissEnabled;
-- (void)showLoadingViewWithImage:(UIImage *)image;
-- (void)contentLoadingDidFail:(NSString *)errorMessage
- showActionButton:(BOOL)showActionButton
- actionButtonTitle:(NSString * _Nullable)actionButtonTitle;
-- (void)configureCloseButtonForBackgroundColor:(UIColor *)backgroundColor;
-- (void)closeContentModal;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMEngine.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMEngine.h
deleted file mode 100644
index ff013fe4..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMEngine.h
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// ICMEngine.h
-// Intercom
-//
-// Created by Brian Boyle on 16/08/2016.
-//
-//
-
-@protocol ICMFileUploadConfig;
-
-typedef void (^ICMHTTPEmptySuccess)(void);
-typedef void (^ICMHTTPClientError) (NSError *error);
-typedef void (^ICMHTTPClientProgress) (double progress);
-
-@interface ICMEngine : NSObject
-
-- (void)requestWithoutRedirects:(NSURLRequest *)request success:(ICMHTTPEmptySuccess)success failure:(ICMHTTPClientError)failure;
-- (NSURLSessionUploadTask *)uploadFileWithFileName:(NSString *)filename data:(NSData *)data uploadConfig:(id)uploadConfig success:(ICMHTTPEmptySuccess)success progress:(ICMHTTPClientProgress)progress failure:(ICMHTTPClientError)failure;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMErrorViewController.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMErrorViewController.h
deleted file mode 100644
index fe91efc6..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMErrorViewController.h
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-// ICMErrorViewController.h
-// IntercomSDK
-//
-// Created by Roland Gropmair on 12/11/2014.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@protocol ICMErrorViewDelegate;
-
-@interface ICMErrorViewController : UIViewController
-
-@property (nonatomic, weak) id errorDelegate;
-
-- (instancetype)initWithTitle:(NSString *)title showActionButton:(BOOL)showRetryButton actionButtonTitle:(NSString * _Nullable)retryButtonTitle;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMErrorViewDelegate.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMErrorViewDelegate.h
deleted file mode 100644
index ec703d62..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMErrorViewDelegate.h
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// ICMErrorViewDelegate.h
-// IntercomSDK-Dynamic
-//
-// Created by Brian Boyle on 29/03/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@protocol ICMErrorViewDelegate
-
-@optional
-- (void) didSelectErrorAction;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMFeedbackGenerator.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMFeedbackGenerator.h
deleted file mode 100644
index 3548df4a..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMFeedbackGenerator.h
+++ /dev/null
@@ -1,22 +0,0 @@
-//
-// ICMFeedbackGenerator.h
-// IntercomSDK
-//
-// Created by Michael Isaakidis on 31/08/2018.
-// Copyright © 2018 Intercom. All rights reserved.
-//
-
-#import
-
-typedef NS_ENUM(NSUInteger, ICMFeedbackGeneratorType) {
- ICMFeedbackGeneratorTypeSelection,
- ICMFeedbackGeneratorTypeError,
- ICMFeedbackGeneratorTypeSuccess,
- ICMFeedbackGeneratorTypeWarning,
-};
-
-@interface ICMFeedbackGenerator : NSObject
-
-+ (void)feedbackWithType:(ICMFeedbackGeneratorType)type;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMHTTPClient.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMHTTPClient.h
deleted file mode 100644
index a8285c55..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMHTTPClient.h
+++ /dev/null
@@ -1,173 +0,0 @@
-//
-// Created by Ignacio Delgado on 15/04/2014.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#import
-#import "ICMHTTPClientProtocol.h"
-
-@class ArticleMetaData;
-
-@interface ICMHTTPClient : NSObject
-
-#pragma mark - User Updates
-
-+ (void)updateUserWithUserAttributes:(NSDictionary *)attributes
- newSession:(BOOL)newSession
- sentFromBackground:(BOOL)sentFromBackground
- carouselVisible:(BOOL)carouselCurrentlyPresented
- success:(ICMHTTPBaseSuccess)success
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Push Notification Tokens
-
-+ (void)submitDeviceToken;
-+ (void)deleteDeviceToken:(NSString *)deviceTokenString
- forUserIdentity:(ICMUserIdentity *)userIdentity
- completion:(ICMHTTPEmptyBlock)completion;
-
-
-#pragma mark - Events
-
-+ (void)logEventWithName:(NSString *)name
- metadata:(NSDictionary *)metadata
- sentFromBackground:(BOOL)sentFromBackground
- carouselVisible:(BOOL)carouselCurrentlyPresented
- success:(ICMHTTPBaseSuccess)success
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Conversations
-
-+ (void)markConversationAsRead:(NSString *)conversationId success:(ICMHTTPBaseSuccess)success error:(ICMHTTPClientError)failure;
-+ (void)markConversationAsDismissed:(NSString *)conversationId success:(ICMHTTPEmptySuccess)success error:(ICMHTTPClientError)failure;
-+ (void)recordInteractions:(NSString *)conversationId
- interactions:(NSArray *)interactions;
-+ (void)unreadConversations:(NSInteger)pageSize success:(ICMHTTPBaseSuccess)success error:(ICMHTTPClientError)failure;
-+ (void)conversationsBefore:(NSDate *)beforeTimestamp pageSize:(NSInteger)pageSize success:(ICMHTTPConversationsSuccess)success error:(ICMHTTPClientError)failure;
-
-/// Create a new conversation.
-/// @param blocks The blocks.
-/// @param articleMetaData If a conversation is started from an article, the articleId should be passed through. This allows teammates know what article a conversation was started from. The articleSource will also be included when Help Center when opened from the Search/Browse card
-/// @param success Success completion block.
-/// @param failure Failure completion block.
-+ (void)createConversationWithBlocks:(NSArray *)blocks
- articleMetaData:(ArticleMetaData *)articleMetaData
- success:(ICMHTTPConversationSuccess)success
- error:(ICMHTTPClientError)failure;
-+ (void)replyToConversation:(NSString *)conversationId
- withBlocks:(NSArray *)blocks
- success:(ICMHTTPReplyConversationSuccess)success
- error:(ICMHTTPClientError)failure;
-
-+ (void)reactToConversation:(NSString *)conversationId withReactionIndex:(NSUInteger)index;
-+ (void)conversationDetail:(NSString *)conversationId success:(ICMHTTPConversationSuccess)success error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Conversation Ratings
-
-+ (void)rateConversation:(NSString *)conversationId withRatingIndex:(NSUInteger)ratingIndex;
-+ (void)addConversationRatingRemarkForConversation:(NSString *)conversationId remark:(NSString *)remark;
-
-
-#pragma mark - Articles
-
-+ (void)article:(NSString *)articleId success:(ICMHTTPArticleSuccess)success error:(ICMHTTPClientError)failure;
-+ (void)reactToArticle:(NSString *)articleId articleContentId:(NSString *)articleContentId withReactionIndex:(NSUInteger)index allowAutoResponses:(BOOL)allowAutoResponses articleSource:(NSString *)articleSource;
-
-
-#pragma mark - GIFs
-
-+ (void)loadGIFs:(NSString *)searchQuery
- success:(ICMHTTPGIFSuccess)success
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Metrics
-
-+ (void)submitMetrics:(NSArray *> *)metrics
- opsMetrics:(NSArray *> *)opsMetrics
- success:(ICMHTTPEmptySuccess)success
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Uploads
-
-+ (void)createUploadWithUpload:(ITBUpload *)upload success:(ICMHTTPUploadCreateSuccess)success progress:(ICMHTTPClientProgress)progress error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - URL Tracker
-
-+ (void)trackURL:(NSString *)url;
-
-
-#pragma mark - Operator
-
-+ (void)operatorConditionSatisfied:(NSString *)transitionId
- converstionId:(NSString *)conversationId
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Sheets
-
-+ (void)fetchMessengerSheetData:(NSDictionary *)sheetParams success:(ICMHTTPSheetSuccess)success failure:(ICMHTTPClientError)failure;
-+ (void)submitMessengerSheet:(NSDictionary *)sheetPayload uri:(NSString *)uri success:(ICMHTTPEmptyBlock)success failure:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Homescreen
-
-+ (void)fetchHomescreenWithSuccess:(ICMHTTPHomescreenSuccess)success failure:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Quick Reply
-
-+ (void)quickReplyToConversation:(NSString *)conversationId
- withPartId:(NSString *)quickReplyPartId
- withOptionUUID:(NSString *)uuid
- success:(ICMHTTPReplyConversationSuccess)success
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Attribute Collector
-
-+ (void)submitFormParams:(NSDictionary *)formParams
- forConversation:(NSString *)conversationId
- success:(ICMHTTPSubmitFormSuccess)success
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Inbound Custom Bots
-
-+ (void)triggerInboundBotWithOptionUUID:(NSString *)uuid
- success:(ICMHTTPConversationSuccess)success
- error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Stats System
-
-+ (void)recordStatistic:(NSString *)statToRecord withInstanceId:(NSString *)instanceId statsMetadata:(NSDictionary *)statsMetadata success:(ICMHTTPBaseSuccess)success error:(ICMHTTPClientError)failure;
-
-
-#pragma mark - Carousels
-
-+ (void)getCarouselWithId:(NSString*)carouselId
- success:(ICMHTTPCarouselSuccess)success
- error:(ICMHTTPClientError)failure;
-
-#pragma mark - Help Center
-
-+ (void)getHelpCenterCollections:(ICMHTTPArraySuccess)success
- error:(ICMHTTPClientError)failure;
-
-+ (void)getHelpCenterCollection:(NSString*)collectionId
- success:(ICMHTTPDictionarySuccess)success
- error:(ICMHTTPClientError)failure;
-
-+ (void)getHelpCenterSearchResults:(NSString*)searchText
- source:(NSString*)source
- success:(ICMHTTPArraySuccess)success
- error:(ICMHTTPClientError)failure;
-
-@end
-
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMHTTPClientProtocol.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMHTTPClientProtocol.h
deleted file mode 100644
index 4870426d..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMHTTPClientProtocol.h
+++ /dev/null
@@ -1,63 +0,0 @@
-//
-// ICMHTTPClientProtocol.h
-// IntercomSDK
-//
-// Created by Michael McNamara on 14/04/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#ifndef ICMHTTPClientProtocol_h
-#define ICMHTTPClientProtocol_h
-
-#import "ICMEngine.h"
-
-@class ITBUpload;
-@class ICMConversationsResponse;
-@class ICMConversation;
-@class ICMConversationPart;
-@class ICMArticle;
-@class ICMGIFResponse;
-@class ICMSheet;
-@class ICMHomescreen;
-@class ICMBaseResponse;
-@class ICMCarousel;
-@class ICMUserIdentity;
-
-static const NSInteger kICMHTTPClientDefaultPageSize = 10;
-
-NS_ASSUME_NONNULL_BEGIN
-
-typedef void (^ICMHTTPBaseSuccess)(ICMBaseResponse *response);
-typedef void (^ICMHTTPConversationsSuccess)(ICMConversationsResponse *response);
-typedef void (^ICMHTTPConversationSuccess)(ICMConversation *response);
-typedef void (^ICMHTTPReplyConversationSuccess)(ICMConversationPart *response);
-typedef void (^ICMHTTPUploadCreateSuccess)(NSString * _Nullable publicUrl);
-typedef void (^ICMHTTPArticleSuccess)(ICMArticle *article);
-typedef void (^ICMHTTPGIFSuccess)(ICMGIFResponse *gifResponse);
-typedef void (^ICMHTTPSheetSuccess)(ICMSheet *sheet);
-typedef void (^ICMHTTPHomescreenSuccess)(ICMHomescreen *sheet);
-typedef void (^ICMHTTPEmptyBlock) (void);
-typedef void (^ICMHTTPSubmitFormSuccess)(ICMConversation *response);
-typedef void (^ICMHTTPCarouselSuccess)(ICMCarousel *carousel);
-typedef void (^ICMHTTPArraySuccess)(NSArray *array);
-typedef void (^ICMHTTPDictionarySuccess)(NSDictionary *object);
-
-@protocol ICMHTTPClientProtocol
-+ (void)getHelpCenterCollections:(nullable ICMHTTPArraySuccess)success
- error:(nullable ICMHTTPClientError)failure;
-
-+ (void)getHelpCenterCollection:(nullable NSString*)collectionId
- success:(nullable ICMHTTPDictionarySuccess)success
- error:(nullable ICMHTTPClientError)failure;
-
-+ (void)getHelpCenterSearchResults:(NSString*)searchText
- source:(nullable NSString*)source
- success:(nullable ICMHTTPArraySuccess)success
- error:(nullable ICMHTTPClientError)failure;
-
-@end
-
-NS_ASSUME_NONNULL_END
-
-
-#endif /* ICMHTTPClientProtocol_h */
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMHelpCenterTranslationManager.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMHelpCenterTranslationManager.h
deleted file mode 100644
index 0f28842a..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMHelpCenterTranslationManager.h
+++ /dev/null
@@ -1,19 +0,0 @@
-//
-// ICMHelpCenterTranslationManager.h
-// IntercomSDK-Dynamic
-//
-// Created by Michael McNamara on 16/06/2021.
-// Copyright © 2021 Intercom. All rights reserved.
-//
-
-#import "ICMTranslationManager.h"
-
-NS_ASSUME_NONNULL_BEGIN
-
-/// A `ICMTranslationManager` subclass that uses our `help_center_locale` instead of the standard Intercom locale.
-/// This should be used to translate any strings in our native Help Center.
-@interface ICMHelpCenterTranslationManager : ICMTranslationManager
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMLoadingViewController.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMLoadingViewController.h
deleted file mode 100644
index 002c2730..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMLoadingViewController.h
+++ /dev/null
@@ -1,10 +0,0 @@
-
-#import
-#import
-
-@interface ICMLoadingViewController : UIViewController
-
-- (instancetype)initWithImage:(UIImage *)loadingImage accessibilityText:(NSString *)accessibilityText;
-- (void)hideLoadingSpinner;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMMetric.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMMetric.h
deleted file mode 100644
index fc3665e6..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMMetric.h
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-// ICMMetric.h
-// Pods
-//
-// Created by James Treanor on 07/08/2015.
-//
-//
-
-#import
-#import "ICMMetricEvent.h"
-@class ICMOpsMetricEvent;
-
-@interface ICMMetric : NSObject
-
-+ (instancetype)sharedInstance;
-
-- (void)addEvent:(ICMMetricEvent *)event;
-- (void)addOpsEvent:(ICMOpsMetricEvent *)opsEvent;
-- (NSSet *)events;
-- (NSSet *)opsEvents;
-- (void)clearAllEvents;
-- (void)clearEvents:(NSSet *)events opsEvents:(NSSet *)opsEvents;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMMetricEvent.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMMetricEvent.h
deleted file mode 100644
index e0680ac8..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMMetricEvent.h
+++ /dev/null
@@ -1,204 +0,0 @@
-//
-// ICMMetricEvent.h
-// Pods
-//
-// Created by James Treanor on 15/03/2016.
-//
-//
-
-#import
-
-typedef NS_ENUM(NSUInteger, ICMMetricEventType) {
- ICMMetricEventTypeMessenger = 0,
- ICMMetricEventTypeEducate = 1,
- ICMMetricEventTypeCarousel = 2,
- ICMMetricEventTypeSearchBrowse = 3
-};
-
-NS_ASSUME_NONNULL_BEGIN
-
-#pragma mark - Actions
-static NSString *const ICMMetricEventActionOpened = @"opened";
-static NSString *const ICMMetricEventActionClosed = @"closed";
-static NSString *const ICMMetricEventActionReceived = @"received";
-static NSString *const ICMMetricEventActionDismissed = @"dismissed";
-static NSString *const ICMMetricEventActionViewed = @"viewed";
-static NSString *const ICMMetricEventActionSent = @"sent";
-static NSString *const ICMMetricEventActionTyped = @"typed";
-static NSString *const ICMMetricEventActionClicked = @"clicked";
-static NSString *const ICMMetricEventActionSearched = @"searched";
-static NSString *const ICMMetricEventActionCompleted = @"completed";
-static NSString *const ICMMetricEventActionStarted = @"started";
-static NSString *const ICMMetricEventActionFailed = @"failed";
-static NSString *const ICMMetricEventActionRequested = @"requested";
-
-#pragma mark - Objects
-static NSString *const ICMMetricEventObjectConversation = @"conversation";
-static NSString *const ICMMetricEventObjectNewConversation = @"new_conversation";
-static NSString *const ICMMetricEventObjectMessenger = @"messenger";
-static NSString *const ICMMetricEventObjectMessage = @"message";
-static NSString *const ICMMetricEventObjectReply = @"reply";
-static NSString *const ICMMetricEventObjectQuickReplies = @"quick_replies";
-static NSString *const ICMMetricEventObjectQuickReply = @"quick_reply";
-static NSString *const ICMMetricEventObjectReaction = @"reaction";
-static NSString *const ICMMetricEventObjectBadge = @"badge";
-static NSString *const ICMMetricEventObjectTeamProfile = @"team_profile";
-static NSString *const ICMMetricEventObjectTeammateProfile = @"teammate_profile";
-static NSString *const ICMMetricEventObjectArticle = @"article";
-static NSString *const ICMMetricEventObjectArticlePreload = @"article_preload";
-static NSString *const ICMMetricEventObjectHelpCenter = @"help_center";
-static NSString *const ICMMetricEventObjectGIFInput = @"gif_input";
-static NSString *const ICMMetricEventObjectTextInput = @"text_input";
-static NSString *const ICMMetricEventObjectImageInput = @"image_input";
-static NSString *const ICMMetricEventObjectExpandedImageInput = @"expanded_image_input";
-static NSString *const ICMMetricEventObjectExpandedGIFInput = @"expanded_gif_input";
-static NSString *const ICMMetricEventObjectMessengerSheet = @"messenger_sheet";
-static NSString *const ICMMetricEventObjectHomescreen = @"home_screen";
-static NSString *const ICMMetricEventObjectHelpCenterData = @"help_center_data";
-static NSString *const ICMMetricEventObjectArticleReaction = @"article_reaction";
-static NSString *const ICMMetricEventObjectSearchBrowse = @"search_browse_card";
-static NSString *const ICMMetricEventObjectSearchBrowseInput = @"search_browse_card_input";
-
-#pragma mark Carousel
-static NSString *const ICMMetricEventObjectCarouselMessage = @"carousel_message";
-static NSString *const ICMMetricEventObjectCarouselMessagePreload = @"carousel_message_preload";
-static NSString *const ICMMetricEventObjectCarouselPermissionSkipped = @"carousel_permission_skipped";
-static NSString *const ICMMetricEventObjectCarouselPermissionDialog = @"carousel_permission_dialog";
-static NSString *const ICMMetricEventObjectCarouselPermissionSettings = @"carousel_permission_settings";
-
-
-#pragma mark - Place
-static NSString *const ICMMetricEventPlaceMessenger = @"messenger";
-static NSString *const ICMMetricEventPlaceMessengerHomeApp = @"messenger_home_app";
-static NSString *const ICMMetricEventPlaceConversation = @"conversation";
-static NSString *const ICMMetricEventPlaceInApp = @"in_app";
-static NSString *const ICMMetricEventPlaceCarouselMessage = @"carousel_message";
-static NSString *const ICMMetricEventPlaceWebview = @"webview";
-static NSString *const ICMMetricEventPlaceHelpCenterCollectionList = @"collection_list";
-static NSString *const ICMMetricEventPlaceHelpCenterArticleList = @"article_list";
-static NSString *const ICMMetricEventPlaceHelpCenterSearchResults = @"search_results";
-static NSString *const ICMMetricEventPlaceHelpCenterArticle = @"article";
-static NSString *const ICMMetricEventPlaceHelpCenterAPI = @"api";
-static NSString *const ICMMetricEventPlaceLegacyArticleSearchApp = @"legacy_article_search_app";
-static NSString *const ICMMetricEventPlacePushNotification = @"push";
-static NSString *const ICMMetricEventPlaceHomeScreen = @"home-screen";
-static NSString *const ICMMetricEventPlaceSearchBrowse = @"search_browse";
-
-
-#pragma mark - Context
-static NSString *const ICMMetricEventContextNoContext = @"no_context";
-static NSString *const ICMMetricEventContextFromDefaultLauncher = @"from_launcher";
-static NSString *const ICMMetricEventContextFromCustomLauncher = @"from_custom_launcher";
-static NSString *const ICMMetricEventContextFromCloseButton = @"from_close_button";
-static NSString *const ICMMetricEventContextFromBadge = @"from_badge";
-static NSString *const ICMMetricEventContextFromSnippet = @"from_snippet";
-static NSString *const ICMMetricEventContextFromFull = @"from_full";
-static NSString *const ICMMetricEventContextFromConversationList = @"from_conversation_list";
-static NSString *const ICMMetricEventContextInConversation = @"in_conversation";
-static NSString *const ICMMetricEventContextInNewConversation = @"in_new_conversation";
-static NSString *const ICMMetricEventContextFromConversation = @"from_conversation";
-static NSString *const ICMMetricEventContextFromNewConversation = @"from_new_conversation";
-static NSString *const ICMMetricEventContextFromClosedConversation = @"from_closed_conversation";
-static NSString *const ICMMetricEventContextInFollowUpConversation = @"in_followup_conversation";
-static NSString *const ICMMetricEventContextFromClicking = @"from_clicking";
-static NSString *const ICMMetricEventContextFromScrolling = @"from_scrolling";
-static NSString *const ICMMetricEventContextFromAuto = @"from_auto";
-static NSString *const ICMMetricEventContextFromPush = @"from_push";
-static NSString *const ICMMetricEventContextOnArticle = @"on_article";
-static NSString *const ICMMetricEventContextFromHelpCenterWebView = @"from_help_center_webview";
-static NSString *const ICMMetricEventContextFromArticleOnButton = @"from_article_on_button";
-static NSString *const ICMMetricEventContextHomescreen = @"home_screen";
-static NSString *const ICMMetricEventContextConversation = @"conversation";
-static NSString *const ICMMetricEventContextFromCarousel = @"from_carousel";
-static NSString *const ICMMetricEventContextFromRetry = @"from_retry";
-static NSString *const ICMMetricEventContextFromSwipe = @"from_swipe";
-static NSString *const ICMMetricEventContextFromCTA = @"from_cta";
-static NSString *const ICMMetricEventContextFromPermission = @"from_permission";
-static NSString *const ICMMetricEventContextFromPermissionSkipped = @"from_permission_skipped";
-static NSString *const ICMMetricEventContextReactionHappy = @"reaction_happy";
-static NSString *const ICMMetricEventContextReactionNeutral = @"reaction_neutral";
-static NSString *const ICMMetricEventContextReactionSad = @"reaction_sad";
-static NSString *const ICMMetricEventContextHumanStyle = @"style_human";
-static NSString *const ICMMetricEventContextBotStyle = @"style_bot";
-static NSString *const ICMMetricEventContextArticle = @"article";
-static NSString *const ICMMetricEventContextMessenger = @"messenger";
-
-#pragma mark Carousel Permissions
-static NSString *const ICMMetricEventContextPushNotification = @"push_notifications_permission";
-static NSString *const ICMMetricEventContextLocation = @"location_permission";
-static NSString *const ICMMetricEventContextCamera = @"camera_permission";
-static NSString *const ICMMetricEventContextPhotoGallery = @"photos_permission";
-static NSString *const ICMMetricEventContextMicrophone = @"microphone_permission";
-
-#pragma mark - Info Keys
-static NSString *const kICMMetricEventInfoConversationId = @"conversation_id";
-static NSString *const kICMMetricEventInfoClosedConversationId = @"closed_conversation_id";
-static NSString *const kICMMetricEventInfoConversation = @"conversation";
-static NSString *const kICMMetricEventInfoPushInstanceId = @"instance_id";
-static NSString *const kICMMetricEventInfoConversationPart = @"conversation_part";
-static NSString *const kICMMetricEventInfoMessageText = @"message_text";
-static NSString *const kICMMetricEventInfoIsAttachment = @"is_attachment";
-static NSString *const kICMMetricEventInfoIsAnnotated = @"is_annotated";
-static NSString *const kICMMetricEventInfoIsSticker = @"is_sticker";
-static NSString *const kICMMetricEventInfoHasArticleCard = @"has_article_card";
-static NSString *const kICMMetricEventInfoLauncherState = @"state";
-static NSString *const kICMMetricEventInfoPushType = @"push_type";
-static NSString *const kICMMetricEventInfoMessageType = @"message_type";
-static NSString *const kICMMetricEventInfoBadgeValue = @"badge_value";
-static NSString *const kICMMetricEventInfoArticleId = @"article_id";
-static NSString *const kICMMetricEventInfoIsGIF = @"is_gif";
-static NSString *const kICMMetricEventInfoGIFSearchQuery = @"search_query";
-static NSString *const kICMMetricEventInfoTeamMateStatus = @"teammate_status";
-static NSString *const kICMMetricEventInfoTimeSinceLastActive = @"time_since_last_active";
-static NSString *const kICMMetricEventInfoWithinOfficeHours = @"within_office_hours";
-static NSString *const kICMMetricEventInfoURL = @"url";
-static NSString *const kICMMetricEventInfoQuickReplyId = @"quick_reply_id";
-static NSString *const kICMMetricEventInfoScreensInMessage = @"screens_in_message";
-static NSString *const kICMMetricEventInfoScreensShown = @"screens_shown";
-static NSString *const kICMMetricEventInfoScreensSeen = @"screens_seen";
-static NSString *const kICMMetricEventInfoPermissionGranted = @"permission_granted";
-static NSString *const kICMMetricEventInfoCarouselInstanceId = @"instance_id";
-static NSString *const kICMMetricEventInfoRequestedContentId = @"requested_content_id";
-static NSString *const kICMMetricEventInfoSource = @"source";
-static NSString *const kICMMetricEventInfoErrorCode = @"error_code";
-static NSString *const kICMMetricEventInfoConversationShown = @"conversation_shown";
-static NSString *const kICMMetricEventInfoFiltered = @"filtered";
-static NSString *const kICMMetricEventInfoHomeScreenIndex = @"home_screen_index";
-
-#pragma mark - Info Values
-static NSString *const kICMMetricEventInfoLauncherStateEmpty = @"empty";
-static NSString *const kICMMetricEventInfoLauncherStateBadge = @"badge";
-static NSString *const kICMMetricEventInfoLauncherStateSnippet = @"snippet";
-static NSString *const kICMMetricEventInfoLauncherStateFull = @"full";
-static NSString *const kICMMetricEventInfoLauncherStateMultipleSnippets = @"multiple snippets";
-static NSString *const kICMMetricEventInfoPushTypeMessage = @"message";
-static NSString *const kICMMetricEventInfoPushTypeNotification = @"notification";
-static NSString *const kICMMetricEventInfoMessageTypeNote = @"note";
-static NSString *const kICMMetricEventInfoMessageTypePost = @"post";
-static NSString *const kICMMetricEventInfoMessageTypeChat = @"chat";
-static NSString *const kICMMetricEventInfoTeamMateActive = @"active";
-static NSString *const kICMMetricEventInfoTeamMateAway = @"away";
-static NSString *const kICMMetricEventInfoProgrammatic = @"programmatic";
-static NSString *const kICMMetricEventInfoAutomatic = @"automatic";
-
-
-@interface ICMMetricEvent : NSObject
-
-+ (instancetype)eventWithAction:(NSString *)action
- object:(NSString *)object
- place:(nullable NSString *)place
- context:(nullable NSString *)context;
-
-+ (instancetype)eventWithAction:(NSString *)action
- object:(NSString *)object
- place:(nullable NSString *)place
- context:(nullable NSString *)context
- additionalInfo:(nullable NSDictionary *)info;
-
-- (NSDictionary *)eventDictionary;
-
-@property (nonatomic, assign) ICMMetricEventType eventType;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMNavigationBarCloseButton.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMNavigationBarCloseButton.h
deleted file mode 100644
index 91b934f3..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMNavigationBarCloseButton.h
+++ /dev/null
@@ -1,26 +0,0 @@
-//
-// ICMCloseBarButtonItem.h
-// IntercomSDK
-//
-// Created by Michael Isaakidis on 28/06/2018.
-// Copyright © 2018 Intercom. All rights reserved.
-//
-
-#import
-
-typedef NS_ENUM(NSInteger, ICMNavigationBarCloseButtonStyle) {
- ICMNavigationBarCloseButtonStyleDefault,
- ICMNavigationBarCloseButtonStyleLight,
- ICMNavigationBarCloseButtonStyleDark,
- ICMNavigationBarCloseButtonStyleText
-};
-
-extern const CGFloat kICMContentHolderDismissButtonBackgroundAlpha;
-
-@interface ICMNavigationBarCloseButton : UIButton
-
-@property (nonatomic, assign) CGFloat backgroundViewAlpha;
-@property (nonatomic) ICMNavigationBarCloseButtonStyle style;
-- (instancetype)initWithFrame:(CGRect)frame style:(ICMNavigationBarCloseButtonStyle)style;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMNavigationController.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMNavigationController.h
deleted file mode 100644
index 73b3d04b..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMNavigationController.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#import
-#import
-
-typedef enum : NSUInteger {
- Messenger,
- HelpCenter,
- ContentModal,
- Sheet
-} IntercomPresentationContext;
-
-@class ICMHostAppState;
-@class ICMNavigationBarCloseButton;
-
-@protocol ICMCloseIntercomModalDelegate
-- (void)closeIntercomModal;
-@end
-
-@interface ICMNavigationController : UINavigationController
-
-- (instancetype)initWithHostAppState:(ICMHostAppState *)hostAppState
- closeIntercomModalDelegate:(id)closeIntercomModalDelegate
- presentationContext:(IntercomPresentationContext)presentationContext;
-
-- (void)setWallpaperHeight:(CGFloat)height;
-- (void)displayCloseButton;
-- (void)removeCloseButton;
-- (void)addBackButton;
-- (void)closeIntercomModal;
-
-@property (nonatomic, strong) ICMNavigationBarCloseButton *closeButton;
-@property (nonatomic, assign) IntercomPresentationContext presentationContext;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMPresentationManager.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMPresentationManager.h
deleted file mode 100644
index 7a910712..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMPresentationManager.h
+++ /dev/null
@@ -1,53 +0,0 @@
-//
-// Created by Ignacio Delgado on 17/04/2014.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#import
-#import
-
-NS_ASSUME_NONNULL_BEGIN
-
-@class ICMConversation;
-@class ICMCarousel;
-@class ICMMessengerSheetViewController;
-
-@interface ICMPresentationManager : NSObject
-
-@property (nonatomic, assign) CGFloat inAppBottomPadding;
-@property (nonatomic, assign) BOOL launcherVisible;
-@property (nonatomic, assign) BOOL inAppMessagesVisible;
-@property (nonatomic, assign) BOOL manualInAppBottomPaddingSet;
-
-+ (instancetype) sharedInstance;
-+ (void)observeSceneWillEnterForeground;
-
-- (void)setUnreadConversations:(NSArray *)conversations completion:(void (^ __nullable)(void))completion;
-- (void)presentCarousel:(ICMCarousel *)carousel;
-- (void)presentMessenger;
-- (void)presentMessageComposerWithInitialMessage:(nullable NSString *)message;
-- (void)presentHomescreen;
-- (void)presentSheet:(ICMMessengerSheetViewController *)sheetVC;
-
-#pragma mark - Help Center Presentation
-- (void)presentHelpCenter;
-- (void)presentHelpCenterFromSearchBrowse;
-- (void)presentHelpCenterCollections:(NSArray *)collectionIds;
-- (void)presentHelpCenterCollection:(NSString *)collectionId;
-- (void)presentArticle:(NSString *)articleId;
-
-- (void)showLauncherOrInAppsIfNeeded;
-- (void)hideIntercomUI;
-- (void)userChanged;
-
-- (void)presentConversation:(ICMConversation *)conversation;
-
-- (void)setNeedsHostAppStatusBarAppearanceUpdate;
-- (BOOL)isMessengerPresented;
-- (void)dismissAllIntercomViews;
-- (void)sceneWillEnterForeground:(NSNotification *)notification;
-- (BOOL)isContentCurrentlyPresented;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMSafeNetworkModel.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMSafeNetworkModel.h
deleted file mode 100644
index eeaa4e01..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMSafeNetworkModel.h
+++ /dev/null
@@ -1,13 +0,0 @@
-//
-// ICMSafeNetworkModel.h
-// Pods
-//
-// Created by James Treanor on 23/02/2015.
-//
-//
-
-#import
-
-@interface ICMSafeNetworkModel : NSObject
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMStartConversationButton.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMStartConversationButton.h
deleted file mode 100644
index d7a8f064..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMStartConversationButton.h
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// ICMStartConversationButton.h
-// IntercomSDK
-//
-// Created by Michael Isaakidis on 29/05/2018.
-// Copyright © 2018 Intercom. All rights reserved.
-//
-
-typedef NS_ENUM(NSUInteger, ICMStartConversationButtonStyle) {
- ICMStartConversationButtonStyleFilled,
- ICMStartConversationButtonStyleBordered,
-};
-
-static const CGFloat kStartConversationButtonHeight = 40.f;
-
-@interface ICMStartConversationButton : UIButton
-
-- (void)configureWithStyle:(ICMStartConversationButtonStyle)style;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMTranslationKeys.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMTranslationKeys.h
deleted file mode 100644
index e4fde9cf..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMTranslationKeys.h
+++ /dev/null
@@ -1,149 +0,0 @@
-//
-// ICMTranslationKeys.h
-// IntercomSDK
-//
-// Created by Ignacio Delgado on 21/08/2014.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#ifndef IntercomSDK_ICMTranslationKeys_h
-#define IntercomSDK_ICMTranslationKeys_h
-
-#pragma mark - Strings
-static NSString *const kICMTKNavBarTitleConversations = @"conversations_with_app_two_lines";
-static NSString *const kICMTKNavBarTitleConversationsNoAppName = @"conversations";
-static NSString *const kICMTKActionSheetMessageFailDelivery = @"failed_delivery";
-static NSString *const kICMTKActionSheetCancel = @"cancel";
-static NSString *const kICMTKActionSheetDelete = @"delete";
-static NSString *const kICMTKMessageStateSending = @"message_state_sending";
-static NSString *const kICMTKFacebookLikeUs = @"facebook_like";
-static NSString *const kICMTKTwitterFollowUs = @"twitter_follow";
-static NSString *const kICMTKSendUsAMessage = @"send_us_a_message";
-static NSString *const kICMTKNavBarTitleNewConversation = @"new_conversation";
-static NSString *const kICMTKConversationHasEnded = @"conversation_has_ended";
-static NSString *const kICMTKErrorLoadingConversation = @"error_loading_conversation";
-static NSString *const kICMTKErrorNoConversationsTitle = @"no_conversations";
-static NSString *const kICMTKErrorNoConversationsMessage = @"empty_conversations";
-static NSString *const kICMTKErrorNoConversationsMessageNoAppName = @"error_no_conversations_message_no_app_name";
-static NSString *const kICMTKErrorTitle = @"inbox_error_state_title";
-static NSString *const kICMTKErrorLoadingConversationsFallback = @"failed_to_load_conversation_with_admin";
-static NSString *const kICMTKErrorLoadingConversationsFallbackNoAppName = @"failed_to_load_conversation";
-static NSString *const kICMTKErrorStartingConversationFallback = @"start_conversation_error";
-static NSString *const kICMTKErrorTapToRetry = @"retry";
-static NSString *const kICMTKMessageViewPlaceholderWriteAReply = @"reply_to_conversation";
-static NSString *const kICMTKMessageViewPlaceholderStartAConversation = @"start_conversation";
-static NSString *const kICMTKMessageViewSend = @"send";
-static NSString *const kICMTKWeRunOnIntercom = @"we_run_on_intercom";
-static NSString *const kICMTKTimeDifferenceJustNow = @"time_just_now";
-static NSString *const kICMTKAlertNewSDKUserTitle = @"congratulations";
-static NSString *const kICMTKAlertNewSDKUserMessage = @"alert_new_sdk_user_message";
-static NSString *const kICMTKThankYou = @"thank_you";
-static NSString *const kICMTKLastActiveLast15Minutes = @"active_15m_ago";
-static NSString *const kICMTKLastActiveLastXMinutes = @"active_minute_ago";
-static NSString *const kICMTKLastActiveOver1WeekAgo = @"active_week_ago";
-static NSString *const kICMTKAdminActive = @"active_state";
-static NSString *const kICMTKAdminAway = @"away_state";
-static NSString *const kICMTKBack = @"navigation_back";
-static NSString *const kICMTKClose = @"close";
-static NSString *const kICMTKTryAgain = @"try_again";
-static NSString *const kICMTKTimeLocationFormat = @"profile_location";
-static NSString *const kICMTKDelivered = @"delivered";
-static NSString *const kICMTKMessageSeen = @"message_seen";
-static NSString *const kICMTKMessageNotSeen = @"message_unseen";
-static NSString *const kICMTKInboxYou = @"you";
-static NSString *const kICMTKCameraRoll = @"camera_roll";
-static NSString *const kICMTKPlustMore = @"plus_x_more";
-static NSString *const kICMTKNameAnd1Other = @"name_and_1_other";
-static NSString *const kICMTKNameAndXOthers = @"name_and_x_others";
-static NSString *const kICMTKAlsoInThisConversation = @"also_in_this_conversation";
-static NSString *const kICMTKRateYourConversation = @"rate_your_conversation";
-static NSString *const kICMTKTellUsMore = @"tell_us_more";
-static NSString *const kICMTKYouRatedTheConversation = @"you_rated_the_conversation";
-static NSString *const kICMTKThanksForLettingUsKnow = @"thanks_for_letting_us_know";
-static NSString *const kICMTKOkay = @"ok_description";
-static NSString *const kICMTKCouldntLoadContent = @"couldnt_load_content";
-static NSString *const kICMTKGiveItAnotherTry = @"give_it_another_try";
-static NSString *const kICMTKReload = @"reload";
-static NSString *const lICMCouldntCompleteAction = @"couldnt_complete_action";
-static NSString *const kICMYourConversations = @"your_conversations";
-static NSString *const kICMStartAConversation = @"start_a_conversation";
-static NSString *const kICMSeePastConversations = @"see_past_conversations";
-static NSString *const kICMSeeAll = @"see_all";
-static NSString *const kICMTKAskAQuestion = @"ask_a_question";
-static NSString *const kICMTKHowCanWeHelp = @"how_can_we_help";
-static NSString *const kICMTKTellUsWhatYouNeed = @"tell_us_what_you_need";
-static NSString *const kICMSeeAllYourConversations = @"see_all_conversations";
-
-
-#pragma mark - Formats
-static NSString *const kICMTKParticipantFromAppFormat = @"teammate_from_company";
-static NSString *const kICMTKReplyFromParticipantFormat = @"reply_from_admin";
-static NSString *const kICMTKTimeDifferenceFormatWeeksAgo = @"time_week_ago";
-static NSString *const kICMTKTimeDifferenceFormatDaysAgo = @"time_day_ago";
-static NSString *const kICMTKTimeDifferenceFormatHoursAgo = @"time_hour_ago";
-static NSString *const kICMTKTimeDifferenceFormatMinutesAgo = @"time_minute_ago";
-static NSString *const kICMTKLastActiveFormatHoursAgo = @"active_hour_ago";
-static NSString *const kICMTKLastActiveFormatDaysAgo = @"active_day_ago";
-
-static NSString *const kICMTKArticleQuestion = @"article_question";
-static NSString *const kICMTKArticleReaction = @"article_response";
-static NSString *const kICMTKAskedAbout = @"asked_about";
-static NSString *const kICMTKErrorLoadingArticle = @"article_load_error";
-
-static NSString *const kICMTKHelpCenter = @"help_center";
-static NSString *const kICMTTeamCanHelp = @"the_team_can_help_if_needed";
-static NSString *const kICMTKBotExpectation = @"bot_expectation_text";
-static NSString *const kICMTKLoading = @"loading";
-static NSString *const kICMTKSearchHelpArticles = @"search_help_articles";
-static NSString *const kICMTKSearchBrowseEmptyState = @"search_browse_empty_state_text";
-static NSString *const kICMTKGetHelp = @"get_help";
-static NSString *const kICMTKGrinningFaceBigEyesEmoji = @"grinning_face_with_big_eyes_emoji";
-static NSString *const kICMTKNeutralFaceEmoji = @"neutral_face_emoji";
-static NSString *const kICMTKDisappointedFaceEmoji = @"disappointed_face_emoji";
-static NSString *const kICMTKBrowseAllHelpTopics = @"browse_all_help_topics";
-static NSString *const kICMTKSearchForHelp = @"search_for_help";
-
-#pragma mark - Photos
-static NSString *const kICMTKNoPhotos = @"no_photos";
-static NSString *const kICMTKNoPhotosOnDevice = @"no_photos_on_device";
-static NSString *const kICMTKAccessPhotos = @"access_photos";
-static NSString *const kICMTKPermissionSettings = @"access_device_settings";
-static NSString *const kICMTKEnablePermissions = @"go_to_settings";
-
-#pragma mark - GIFs
-static NSString *const kICMTKSearchGIFs = @"search_gif";
-static NSString *const kICMTKNoGIFsFoundTitle = @"no_gifs_found";
-static NSString *const kICMTKNoGIFsFoundMessage = @"no_gifs_matching_query";
-static NSString *const kICMTKImageAttribution = @"gif_attribution";
-static NSString *const kICMTKGIFErrorTitle = @"gifs_load_error";
-static NSString *const kICMTKGIFErrorDescription = @"try_again_minute";
-
-#pragma mark - Attribute Collector Picker submit
-static NSString *const kICMAttributeColelctorSubmitButton = @"submit";
-
-#pragma mark - Input placeholders
-static NSString *const kICMTKListPlaceholder = @"choose_one";
-static NSString *const kICMTKDatePlaceholder = @"choose_the_date";
-
-#pragma mark - Input Validation
-static NSString *const kICMTKInvalidEmail = @"that_email_address_doesnt_look_quite_right";
-static NSString *const kICMTKInvalidNumber = @"that_number_doesnt_look_quite_right";
-static NSString *const kICMTKInvalidString = @"string_is_incorrect";
-static NSString *const kICMTKSomethingWentWrongTryAgain = @"something_went_wrong_try_again";
-
-static NSString *const kICMTKInvalidCountryCode = @"that_country_code_doesnt_look_quite_right";
-static NSString *const kICMTKInvalidNumberTooManyDigits = @"that_number_has_too_many_digits";
-static NSString *const kICMTKInvalidNumberMissingDigits = @"that_number_is_missing_a_few_digits";
-static NSString *const kICMTKInvalidMissingPrefix = @"that_number_needs_a_prefix";
-
-#pragma mark - Attribute Collector
-static NSString *const kICMTKYes = @"attribute_collector_positive";
-static NSString *const kICMTKNo = @"attribute_collector_negative";
-
-#pragma mark - In Apps Quick Replies
-static NSString *const kICMTKReply = @"reply";
-
-#pragma mark - Carousels/Articles On Buttons
-static NSString *const kICMTKPageNotFound = @"page_not_found";
-
-#endif
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMTranslationManager.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMTranslationManager.h
deleted file mode 100644
index 789c4ef4..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMTranslationManager.h
+++ /dev/null
@@ -1,16 +0,0 @@
-//
-// Created by Ignacio Delgado on 22/08/2014.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#import
-#import "ICMTranslationKeys.h"
-
-@interface ICMTranslationManager : NSObject
-
-+ (NSLocale *)translationLocale;
-+ (NSString *)translationForKey:(NSString *)key;
-+ (NSString *)translationForKey:(NSString *)key params:(NSDictionary *)params;
-+ (NSArray *)supportedLocales;
-
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMUtils.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMUtils.h
deleted file mode 100644
index 54b3674b..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/ICMUtils.h
+++ /dev/null
@@ -1,107 +0,0 @@
-//
-// ICMUtils.h
-// IntercomSDK
-//
-// Created by Gavin Rooney on 24/04/2014.
-// Copyright (c) 2014 Intercom. All rights reserved.
-//
-
-#import
-#import
-
-@class ICMConversationPart;
-
-#ifdef DEBUG
-# define InterLog(fmt, ...) NSLog((@"[Intercom] " fmt), ##__VA_ARGS__);
-# define InterLogDebug(fmt, ...) ([ICMUtils debugLoggingEnabled] ? NSLog((@"[Intercom] " fmt), ##__VA_ARGS__) : YES);
-# define InterLogPrivate(fmt, ...) NSLog((@"[Intercom] %s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
-#else
-# define InterLog(fmt, ...) NSLog((@"[Intercom] " fmt), ##__VA_ARGS__);
-# define InterLogDebug(fmt, ...) ([ICMUtils debugLoggingEnabled] ? NSLog((@"[Intercom] " fmt), ##__VA_ARGS__) : YES);
-# define InterLogPrivate(...)
-#endif
-
-#define run_or_dispatch_main(block) if ([NSThread isMainThread]) { block(); } else { dispatch_async(dispatch_get_main_queue(), block); }
-
-#define WEAK_TYPE(x) __weak __typeof(x)
-#define STRONG_TYPE(x) __strong __typeof(x)
-
-UIKIT_EXTERN NSString *const IntercomSDKErrorDomain;
-
-//------------------------------------------------------------------------------------------------------------------------------
-// result: X-INTERCOM-AGENT: intercom-ios-sdk/x.x.x
-#define ICMSDKHeaderValue @"intercom-ios-sdk"
-#define ICMSDKDefaultHeader @"X-INTERCOM-AGENT"
-#define ICMSDKWrapperHeader @"X-INTERCOM-AGENT-WRAPPER"
-#define ICMSDKCordovaHeaderValue @"intercom-sdk-cordova"
-#define ICMSDKReactNativeHeaderValue @"intercom-sdk-react-native"
-
-static const NSInteger kICMConversationAvatarWidth = 28;
-
-static NSString *const kIntercomSDKVersionIdentifier = @"intercom-sdk-version";
-static NSString *const kIntercomSDKComposerPersistedString = @"intercom-sdk-composer-persisted-string";
-static NSString *const kIntercomSDKComposerPersistedNewKey = @"NewConversation"; // when we want to persist the string in the message composer but don't have a conversationId (i.e. user composes new message)
-
-static NSString *const kIntercomSDKInboxUpdated = @"intercom-sdk-inbox-updated";
-static NSString *const kICMIntercomDeepLinkNotification = @"kICMIntercomDeepLinkNotification";
-static NSString *const kICMIntercomDidTypeInComposer = @"kICMIntercomDidTypeInComposer";
-static NSString *const kICMIntercomDidChangeComposerInput = @"kICMIntercomDidChangeComposerInput";
-
-typedef NS_ENUM(NSUInteger, ICMFontWeight){
- ICMFontWeightRegular = 0,
- ICMFontWeightBold = 1,
- ICMFontWeightMedium = 2,
- ICMFontWeightLight = 3,
- ICMFontWeightThin = 4,
- ICMFontWeightSemibold = 5
-};
-
-typedef NS_ENUM(NSInteger, ICMUserIdentityType) {
- ICMUserIdentityEmail,
- ICMUserIdentityUserId,
- ICMUserIdentityIntercomId
-};
-
-@interface ICMUtils : NSObject
-
-+ (NSString *)intercomAgent;
-
-+ (NSString *)intercomVersion;
-
-+ (NSString *)appVersion;
-
-+ (NSString *)applicationName;
-
-+ (NSString *)bundleIdentifier;
-
-+ (NSString *)minimumOSVersion;
-
-+ (BOOL)debugLoggingEnabled;
-
-+ (void)setDebugLoggingEnabled:(BOOL)loggingEnabled;
-
-+ (void)checkIntegration;
-
-+ (BOOL)photoUsageDescriptionPresent;
-
-+ (BOOL)autoIntegratePushNotifications;
-
-+ (NSBundle *)intercomBundle;
-+ (NSBundle *)translationsBundle;
-
-+ (NSString *)intercomDocumentsDirectory;
-
-+ (NSString *)intercomCachesDirectory;
-
-+ (UIFont *)fontOfSize:(CGFloat)fontSize weight:(ICMFontWeight)weight;
-
-+ (NSArray *)jsonArrayFromLocalFile:(NSString *)path error:(NSError * __autoreleasing *)error;
-
-+ (BOOL)sceneManifestPresent;
-
-+ (BOOL)shouldShowPhotoUsagePListError;
-
-+ (NSString *)extractArticleIdFromSheetParams:(NSDictionary *)params;
-
-+ (BOOL)usingLargeFontSize;
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/UIImage+ICMImageUtils.h b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/UIImage+ICMImageUtils.h
deleted file mode 100644
index 12cb994c..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/PrivateHeaders/UIImage+ICMImageUtils.h
+++ /dev/null
@@ -1,15 +0,0 @@
-//
-// UIImage+ICMGrayscale.h
-// Pods
-//
-// Created by Brian Boyle on 19/01/2017.
-//
-//
-
-#import
-
-@interface UIImage (ICMImageUtils)
-
-- (UIImage *)icm_grayscale;
-- (UIImage *)icm_resizeImageToSize:(CGSize)newSize;
-@end
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/_CodeSignature/CodeResources b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/_CodeSignature/CodeResources
deleted file mode 100644
index 26ca77da..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/_CodeSignature/CodeResources
+++ /dev/null
@@ -1,4017 +0,0 @@
-
-
-
-
- files
-
- Headers/ICMCompany.h
-
- uzxIny+8ehHozzulRDJxGPWhrho=
-
- Headers/ICMHelpCenterArticle.h
-
- QVphTXqzVrrSspmGCoiQBcuEfuc=
-
- Headers/ICMHelpCenterArticleSearchResult.h
-
- 78SP9YlR+AvFvF/D9Jqo06iSQew=
-
- Headers/ICMHelpCenterCollection.h
-
- EviQTXHFK3DVKoU6Azf0Vh5YwsE=
-
- Headers/ICMHelpCenterCollectionContent.h
-
- ELjdgd/YnX/h3CXNns8C0/quNDY=
-
- Headers/ICMHelpCenterDataError.h
-
- 8nSafSPhcIu+9cMBTGGTqWEgKpU=
-
- Headers/ICMHelpCenterSection.h
-
- 1/EbB4BtG4TSFUy3wi5E9AhYjSE=
-
- Headers/ICMUserAttributes.h
-
- ceP4QxLJXTzh1b1pG1CRsi9t9Po=
-
- Headers/Intercom.h
-
- gS0P1t6U1t5AUjERMoPcfrMR6hY=
-
- Info.plist
-
- odApbb9O+4yZrxT3mMH0oy95UtY=
-
- InterBlocksAssets.bundle/Assets.car
-
- DOFi6+95lhPCuP0NXl7HUoNKe+E=
-
- InterBlocksAssets.bundle/Info.plist
-
- R2PVMHS0f3buKqzWcXTKDeovdPY=
-
- InterBlocksAssets.bundle/_CodeSignature/CodeDirectory
-
- Ij7WN+NilcSN8wm92hhFxdzUuvY=
-
- InterBlocksAssets.bundle/_CodeSignature/CodeRequirements
-
- OnX22wWFKRSOFN1+obRynMCeyXM=
-
- InterBlocksAssets.bundle/_CodeSignature/CodeRequirements-1
-
- 1LysRMEJ4fmtg1ixgGHAFFBaUlE=
-
- InterBlocksAssets.bundle/_CodeSignature/CodeResources
-
- xy6o2DP4aKwvdaZOqw0fvQTg8Yk=
-
- InterBlocksAssets.bundle/_CodeSignature/CodeSignature
-
- 2jmj7l5rSw0yVb/vlWAYkK/YBwk=
-
- Intercom.bundle/data/intercom_area_codes.json
-
- 54e9anVjesbex2A5LAp2JmjGyng=
-
- Intercom.bundle/images/Inputs/GIF/icon_GIF.png
-
- +rhLF0Ei/tB1VweKBqJsT82Z+LY=
-
- Intercom.bundle/images/Inputs/GIF/icon_GIF@2x.png
-
- 0nzK2KVldjxxexleHl7w0yu1PUs=
-
- Intercom.bundle/images/Inputs/GIF/icon_GIF@3x.png
-
- snxtV/aLyf1ItsmKgKCpEF2/6hQ=
-
- Intercom.bundle/images/Inputs/Photo/icon_expand_photos.png
-
- xLy6fuzr1Ad9bxIt8BVKJOhITH8=
-
- Intercom.bundle/images/Inputs/Photo/icon_expand_photos@2x.png
-
- Wz3Bg2JOF1y2VuxxSpU3NNKSK7g=
-
- Intercom.bundle/images/Inputs/Photo/icon_expand_photos@3x.png
-
- 7CC3Y7eCGcLkuVkIhg4xxqiwS5o=
-
- Intercom.bundle/images/Inputs/Photo/icon_photo_input.png
-
- cOIgyeJyAbmET3hcWPUQ8N4zrok=
-
- Intercom.bundle/images/Inputs/Photo/icon_photo_input@2x.png
-
- +ZsoXf+x97YVF975Swtd+1tN470=
-
- Intercom.bundle/images/Inputs/Photo/icon_photo_input@3x.png
-
- 8Ncm2JwAPpX7SPTLccAukgBOAfU=
-
- Intercom.bundle/images/Inputs/Text/icon_text_input.png
-
- NODZAfvQ9H5OPP+U3fhIOkC9N/w=
-
- Intercom.bundle/images/Inputs/Text/icon_text_input@2x.png
-
- knbKhHUTIZwCTYthfVE7BSiasec=
-
- Intercom.bundle/images/Inputs/Text/icon_text_input@3x.png
-
- 6N7W1kujrP4fsbo8DCYSO8tuOiY=
-
- Intercom.bundle/images/article_loading_state.png
-
- UtaBAQyyUb7WBTmUdgT7JEUtfRw=
-
- Intercom.bundle/images/article_loading_state@2x.png
-
- RBK42e9f6kHeLkkZQDNJVXOr4Cs=
-
- Intercom.bundle/images/article_loading_state@3x.png
-
- P7FueqYZo9Cit5vsSIsm9JMAcwY=
-
- Intercom.bundle/images/ask_a_question.png
-
- IZTYxmQK6rFA23NNyYguHqyOTRc=
-
- Intercom.bundle/images/ask_a_question@2x.png
-
- RrLlCuN7V8Xd2TBadSU7WyXwznM=
-
- Intercom.bundle/images/ask_a_question@3x.png
-
- WzEayc/hBttF841R8DrpKxhkHpw=
-
- Intercom.bundle/images/back.png
-
- InbyO9LGRmibp4Xsi3CyBtxuuzc=
-
- Intercom.bundle/images/back@2x.png
-
- 8uCKlTis+Fyi7yr1evN7y3ZCZ1o=
-
- Intercom.bundle/images/back@3x.png
-
- nw47jI7QC3zc1BTcxcEl+xH+7mg=
-
- Intercom.bundle/images/boolean_button_left.png
-
- rkXz82LLua9fj3nKCHW2a/Ory+M=
-
- Intercom.bundle/images/boolean_button_left@2x.png
-
- Mk1e04Nkd2k2bwQL/CvgMxyc7oU=
-
- Intercom.bundle/images/boolean_button_left@3x.png
-
- lRO16mCkEFlsvz1x5nzob6iecS0=
-
- Intercom.bundle/images/boolean_button_left_selected.png
-
- IBOCkV3XPF7hwgRjAg//vuwh7lQ=
-
- Intercom.bundle/images/boolean_button_left_selected@2x.png
-
- ESj8lD24TrdNKpDnFdm7MGqYqaQ=
-
- Intercom.bundle/images/boolean_button_left_selected@3x.png
-
- 5HAIrZsdC/Os3zHnXW6Ucr2KvLs=
-
- Intercom.bundle/images/boolean_button_right.png
-
- f5mGsfJHUpt+5f2bg3wdFbdnCzE=
-
- Intercom.bundle/images/boolean_button_right@2x.png
-
- ed3g31hf46u2RNz0YObMOGIVtxI=
-
- Intercom.bundle/images/boolean_button_right@3x.png
-
- ZOx+8Le9RxkDgMyw0ZkJQ4bZp9Q=
-
- Intercom.bundle/images/boolean_button_right_selected.png
-
- s12ZDUbCX7vGsL7PT7zr8o0WqiQ=
-
- Intercom.bundle/images/boolean_button_right_selected@2x.png
-
- nmU7Nq+57ResB/mib3Z7eh5aF4Q=
-
- Intercom.bundle/images/boolean_button_right_selected@3x.png
-
- Q/zhozAk9l0hqSrpbo/HlDLpyZM=
-
- Intercom.bundle/images/carousel_loading_state.png
-
- mr1lCNvzXNMY21USkkcf5HHBJ8E=
-
- Intercom.bundle/images/carousel_loading_state@2x.png
-
- eGkoeSDdj39rv6/jk3k+HjKYgCg=
-
- Intercom.bundle/images/carousel_loading_state@3x.png
-
- eGXB3QAQfhw+L4jMDVhsAEEH67c=
-
- Intercom.bundle/images/chat_bubble.png
-
- cose6R8QZ73NybnulN/9Um5L1LI=
-
- Intercom.bundle/images/chat_bubble@2x.png
-
- YuNKf6t4MpkMPbkzBj8QZlUIvrE=
-
- Intercom.bundle/images/chat_bubble@3x.png
-
- Mrc87VDTTae6cDhQ/dVTZjFEduw=
-
- Intercom.bundle/images/close.png
-
- pE4dim623rsFTcOq3UZ7ImLfqhw=
-
- Intercom.bundle/images/close@2x.png
-
- jhVfGqoeEfCTV9EbUQFZA++yE1s=
-
- Intercom.bundle/images/close@3x.png
-
- aj4/HOhjnSmRngQlMGE9zZj/lb0=
-
- Intercom.bundle/images/close_annotation.png
-
- aua4VX3aBfhDZaYj6fbz8fRXCQg=
-
- Intercom.bundle/images/close_annotation@2x.png
-
- BSUW7cmG2iVRdtBPLSZxMyUZR2k=
-
- Intercom.bundle/images/close_annotation@3x.png
-
- 0/PiFsSYPfjXYvn12SmmfqXLZNg=
-
- Intercom.bundle/images/close_intercom.png
-
- ZDm27/T1D3OEqL0LrxcAtDy7ChI=
-
- Intercom.bundle/images/close_intercom@2x.png
-
- aoZt68sH+MgH4a05MHK5/PMcNuA=
-
- Intercom.bundle/images/close_intercom@3x.png
-
- GfgRbOHkvbeUdVYjRQdOLrjY58E=
-
- Intercom.bundle/images/close_note.png
-
- Bdxmsakts0ybXOCQ9tPyzxnScEQ=
-
- Intercom.bundle/images/close_note@2x.png
-
- oP9/Ukf62HGrwTuSNtkw3RWG4m4=
-
- Intercom.bundle/images/close_note@3x.png
-
- VDsrbwpL0cRBxsPZgRTn4M7eKFU=
-
- Intercom.bundle/images/close_post.png
-
- ogwfk0OFJJfdWNq1h4eq8hzTfrI=
-
- Intercom.bundle/images/close_post@2x.png
-
- MkRTekv1xCZjs6B8MA9kqR4dtmY=
-
- Intercom.bundle/images/close_post@3x.png
-
- 73vicoCGoZ1d6R5ZiEYR1Ldjaf0=
-
- Intercom.bundle/images/date_selector.png
-
- B8EaxsMogNMaghViTqE4OmsOq5Y=
-
- Intercom.bundle/images/date_selector@2x.png
-
- jugcpHinBFdSUAuY9LuHkipzObk=
-
- Intercom.bundle/images/date_selector@3x.png
-
- xSQF8GGOx6bXLdtJmG0VzaEsXmk=
-
- Intercom.bundle/images/footer_link_icon.png
-
- v3GhGS2UMrAxzlcbkkxGESaFdm4=
-
- Intercom.bundle/images/footer_link_icon@2x.png
-
- q0tkzMEM2c+zwwrD4sJRHWqslt8=
-
- Intercom.bundle/images/footer_link_icon@3x.png
-
- ROSC3GDCZrqCRwYag+z8bUrh3MA=
-
- Intercom.bundle/images/help_center_chevron.png
-
- rMYt6+eHADwjPLRBj16Xf6VG7Bc=
-
- Intercom.bundle/images/help_center_chevron@2x.png
-
- OfyxRIKXdJEsLeeYSYcIGzJbX0A=
-
- Intercom.bundle/images/help_center_chevron@3x.png
-
- eyVRzw+WsRAEOQ0G953yrfReMZo=
-
- Intercom.bundle/images/help_center_loading_state.png
-
- 4/J19IR1U2sJFOx4zeOnwcNpUCQ=
-
- Intercom.bundle/images/help_center_loading_state@2x.png
-
- tkuNkjeJb0HgdcGZgAW8aTewXQ4=
-
- Intercom.bundle/images/help_center_loading_state@3x.png
-
- 9fdy/THGQl31afa1PqqvIhCR8zE=
-
- Intercom.bundle/images/homescreenFailed.png
-
- hG7JVQL8lMwcjz/3ZImc4dBovAY=
-
- Intercom.bundle/images/homescreenFailed@2x.png
-
- r1R9++fgRBJHJWF5hBL0H9q9jQQ=
-
- Intercom.bundle/images/homescreenFailed@3x.png
-
- JAJFHCKpI259EzsPab5y7p9TXI4=
-
- Intercom.bundle/images/icon_green_check.png
-
- XTdzzThg18fUs5seYTwtWxFCf1A=
-
- Intercom.bundle/images/icon_green_check@2x.png
-
- 4blQTTuVKg9hURpC33kNk2orN/w=
-
- Intercom.bundle/images/icon_green_check@3x.png
-
- 8zE8e+ovRd1VSYI/Uf89hp2bsB4=
-
- Intercom.bundle/images/icon_loading.png
-
- rUuJzjK9O2TaHYw27FvpKATi5IM=
-
- Intercom.bundle/images/icon_loading@2x.png
-
- 7NCT+Gy9AMmmrhJlp5rzDJrgeXQ=
-
- Intercom.bundle/images/icon_loading@3x.png
-
- tWv1XfMvqTVie7WRB78USU3tYZE=
-
- Intercom.bundle/images/icon_submit.png
-
- /R/11ZktygRZ5Cf7hSxF7fy6Clw=
-
- Intercom.bundle/images/icon_submit@2x.png
-
- lcafLJ744ZKiuxHqnZDFtBgdExk=
-
- Intercom.bundle/images/icon_submit@3x.png
-
- Uu5HgBMvVZCI7mLm/LLgITg7LhM=
-
- Intercom.bundle/images/intercom_logo.png
-
- FEu5bkMSjwHpBIE21wY0S3QH2p8=
-
- Intercom.bundle/images/intercom_logo@2x.png
-
- xnSvasLL9dHle1xCVz85ZPtutiw=
-
- Intercom.bundle/images/intercom_logo@3x.png
-
- gwzO3mSjbiJL0ZoO5aajYhX6ZV4=
-
- Intercom.bundle/images/launcher.png
-
- EpoVXdWVozTg7Mrwa5kQ83dIze8=
-
- Intercom.bundle/images/launcher@2x.png
-
- NcSqlWdjqoDN6s/JriKNEpmWMKk=
-
- Intercom.bundle/images/launcher@3x.png
-
- Q8vSQ2pdp1ITLalZJAXVDSxn60k=
-
- Intercom.bundle/images/linkedin.png
-
- 7n7WlF9baNTmwJ+SKIQISnVJIMY=
-
- Intercom.bundle/images/linkedin@2x.png
-
- BH4u7v8n6uel+KPWrVyog8lMBvc=
-
- Intercom.bundle/images/linkedin@3x.png
-
- 5ZIN33offCEshD+gJ52G5iuCGgE=
-
- Intercom.bundle/images/logoa.png
-
- Qa7eEpxskfLQwF0GOcoy/lB1hZU=
-
- Intercom.bundle/images/message_failed.png
-
- azBt20/t0z1AZmAiwdI0VdRVfJk=
-
- Intercom.bundle/images/message_failed@2x.png
-
- FNLpbRlEelaudW14n5W6a12gNfw=
-
- Intercom.bundle/images/message_failed@3x.png
-
- R4VrYx08/BI4h8JSpe1aay/mi5I=
-
- Intercom.bundle/images/open_post_from_card.png
-
- MXBhUYNnQ2FIlrH33ElX2O0SJwE=
-
- Intercom.bundle/images/open_post_from_card@2x.png
-
- L574wvtGGHqP9lx6YsL5I4+RB2w=
-
- Intercom.bundle/images/open_post_from_card@3x.png
-
- W935cNWR9u9n/iTRaCGqp2XeWnc=
-
- Intercom.bundle/images/picker_selector.png
-
- M9Z7oDuzvTyQlNXXq52rVg5saD8=
-
- Intercom.bundle/images/picker_selector@2x.png
-
- Ws1Wr8yIEQSXXiTdWCuzMNug3D8=
-
- Intercom.bundle/images/picker_selector@3x.png
-
- OtJk2HLEfkD8FidyBtGFsYfGWhU=
-
- Intercom.bundle/images/screen_action_checkmark.png
-
- BwgVHIhUhQ37tq8tC+C/GA68gG8=
-
- Intercom.bundle/images/screen_action_checkmark@2x.png
-
- 4vCdpDzWqPZfMl31ng9mVPf/ZxU=
-
- Intercom.bundle/images/screen_action_checkmark@3x.png
-
- 2PBVUD9jYlA+FjeAuUUUaEquBQk=
-
- Intercom.bundle/images/search_icon.png
-
- c2qnMujXiUOHQ72ba9KwjB3ltus=
-
- Intercom.bundle/images/search_icon@2x.png
-
- ItrgvVYiGgNKXH/CE77kdqlfJrM=
-
- Intercom.bundle/images/search_icon@3x.png
-
- h4uiFa1jtGRoa/wvB862pErP7XE=
-
- Intercom.bundle/images/send_annotation.png
-
- TIOQnn4lLF+D4pS5eHFyYaKVNic=
-
- Intercom.bundle/images/send_annotation@2x.png
-
- 2+GD+7q+7n8AN+3G8SGs8S6LqWQ=
-
- Intercom.bundle/images/send_annotation@3x.png
-
- qLc+YOxRLyPIkWPNObZXdD17U04=
-
- Intercom.bundle/images/snooze_icon.png
-
- DBm6T0PaLhnt48XOj/Q/+rIaue8=
-
- Intercom.bundle/images/snooze_icon@2x.png
-
- bMCm7miJEBcwaQtbm6k4ZSvBnM4=
-
- Intercom.bundle/images/snooze_icon@3x.png
-
- tcLfYh3EYHF+1rD9UvWGWkAxOOE=
-
- Intercom.bundle/images/spinner.png
-
- +OeFqjPQo1ApqgSErGbCnuopycQ=
-
- Intercom.bundle/images/spinner@2x.png
-
- Yk7aZEBBopbYvxVBubd33NcJUWk=
-
- Intercom.bundle/images/spinner@3x.png
-
- qahR5MOA3lvsGtOFQDYUNhwA4Jk=
-
- Intercom.bundle/images/startConversationIcon.png
-
- 2a2IdS0QILRiKHWx1/Gf78STkm0=
-
- Intercom.bundle/images/startConversationIcon@2x.png
-
- wDYZRLp5GIWEEVgIvWwnLnCxWkI=
-
- Intercom.bundle/images/startConversationIcon@3x.png
-
- MkLendjCSr3a4YxoIqe4cyPI3Mo=
-
- Intercom.bundle/images/submit_button_background.png
-
- fDJQR5/WUmzS+7mok/QJfh3JTn0=
-
- Intercom.bundle/images/submit_button_background@2x.png
-
- PQSwtOPqnVIRzyTx/8PfiigX6/U=
-
- Intercom.bundle/images/submit_button_background@3x.png
-
- pvLdI3lTwyZJJmw9H9Xqy3tmHE0=
-
- Intercom.bundle/images/submit_button_background_clear.png
-
- FyhfDBagj9rhcAiyNzFmC2b5pcs=
-
- Intercom.bundle/images/submit_button_background_clear@2x.png
-
- C+ChMqBlerG80hsj4AbmREsBfOg=
-
- Intercom.bundle/images/submit_button_background_clear@3x.png
-
- ZJviei1Y4I3+TApNpbZEkoF9B2A=
-
- Intercom.bundle/images/teammate_bio.png
-
- m14SYcMNUevkgeDLox79JyvIlJM=
-
- Intercom.bundle/images/teammate_bio@2x.png
-
- lDGjIF0Ag72gxAITDHSdhXrDFe4=
-
- Intercom.bundle/images/teammate_bio@3x.png
-
- TNRbaeGq4RcR+MXOVGNn76Ruahw=
-
- Intercom.bundle/images/teammate_location.png
-
- B/arrACpiq+W2xo6E51HLTqm1x4=
-
- Intercom.bundle/images/teammate_location@2x.png
-
- yT4QVuRS1OtCWIuAARx/8I7NEKA=
-
- Intercom.bundle/images/teammate_location@3x.png
-
- zGu7zuqU7fjsKWEBUSmsXcIC46w=
-
- Intercom.bundle/images/teammate_role.png
-
- vwjvaO3/9gvKPC6onvz/DB9d3KE=
-
- Intercom.bundle/images/teammate_role@2x.png
-
- Seh2IPVm1KWTCdSOXHWreRX7wqU=
-
- Intercom.bundle/images/teammate_role@3x.png
-
- SuTv69ZE2j4RQtXKCAjvEtpLjDI=
-
- Intercom.bundle/images/textfield_background.png
-
- LBKaxgYX83lVElaGWW56+Z5hrXU=
-
- Intercom.bundle/images/textfield_background@2x.png
-
- X9Nf6snyCI0zv9EZuYIIP/pFFzc=
-
- Intercom.bundle/images/textfield_background@3x.png
-
- nSLAsPZSn6Aica9Q8jnsFPf9u0Q=
-
- Intercom.bundle/images/textfield_background_error.png
-
- gngSpLxP+uBoamI0wv3R8c2AeSk=
-
- Intercom.bundle/images/textfield_background_error@2x.png
-
- 4W94EjAYvPStzGhA681gibYU2aQ=
-
- Intercom.bundle/images/textfield_background_error@3x.png
-
- rfcLx+G7DCq+Xft+tuv0s62MXzE=
-
- Intercom.bundle/images/twitter.png
-
- 76htKLId1Qw+uJ7faH1lsEa7hlA=
-
- Intercom.bundle/images/twitter@2x.png
-
- y0K3pfoFhgLWv+L09Tj3EcA4J4o=
-
- Intercom.bundle/images/twitter@3x.png
-
- WfmUsAsvhSv+C5bRTPoIV0Fb9uc=
-
- Intercom.bundle/images/undo.png
-
- rPs0MdfRqXlHDJq5DlXacGFypLo=
-
- Intercom.bundle/images/undo@2x.png
-
- YTI4H6qUYHIXEPHga5bh2MNLHdM=
-
- Intercom.bundle/images/undo@3x.png
-
- tM/XP/xKLIBE9MOSOI/oyL2KrnA=
-
- Intercom.bundle/images/upload_icon.png
-
- bsTAlBwWoR+lh6SaiPEg94D/dBU=
-
- Intercom.bundle/images/upload_icon@2x.png
-
- 6ODr6HwR/UG9liXa48UYaaI8loI=
-
- Intercom.bundle/images/upload_icon@3x.png
-
- 6rRbyeeaEjkVQ7TRt1W18mfAl5w=
-
- Intercom.bundle/images/warning.png
-
- zfChnE7+j1VIyK0hUwOz7v/MiPE=
-
- Intercom.bundle/images/warning@2x.png
-
- X475cGQ5CL21zDIsROwJsLr2ZkI=
-
- Intercom.bundle/images/warning@3x.png
-
- ThoGz3v4CmVf6nrz8Qkp7YRiO28=
-
- Intercom.bundle/sound/admin_reply_delivered.caf
-
- XMWy6g3s8AfIbdY7c442SjDOgtM=
-
- Intercom.bundle/sound/message_failed.caf
-
- JQZrxGFCKG3J3gaOIFdYE3aZSoU=
-
- Intercom.bundle/sound/message_operator.caf
-
- ojoAPvdAStxPZQ1m0b1gcklq+Ho=
-
- Intercom.bundle/sound/message_sending.caf
-
- 4ex9cI824foKdX7c25IY893/pio=
-
- IntercomTranslations.bundle/Info.plist
-
- QIT77G0gBnoPz2HG/LBLfayvt0g=
-
- IntercomTranslations.bundle/_CodeSignature/CodeDirectory
-
- wDRiznAEBN2a9hzjj93/fIIyYUs=
-
- IntercomTranslations.bundle/_CodeSignature/CodeRequirements
-
- OnX22wWFKRSOFN1+obRynMCeyXM=
-
- IntercomTranslations.bundle/_CodeSignature/CodeRequirements-1
-
- KtxJ9XNZos1Nqv8h5UHkIrmH7jo=
-
- IntercomTranslations.bundle/_CodeSignature/CodeResources
-
- eJq+KDx6ZHgtM1q/K6NAti4i9P4=
-
- IntercomTranslations.bundle/_CodeSignature/CodeSignature
-
- 2jmj7l5rSw0yVb/vlWAYkK/YBwk=
-
- IntercomTranslations.bundle/ar.strings
-
- Gmt3QDdrh4AwciXbQjRAb6ZsUFs=
-
- IntercomTranslations.bundle/bg.strings
-
- g49JghHHBhtEUuTr3rDdAE2OGX0=
-
- IntercomTranslations.bundle/bs.strings
-
- ylhLQtfv30zWupCz48JAxLi4Yqg=
-
- IntercomTranslations.bundle/ca.strings
-
- GC6gLsjMm3pC10ImL1NTvuvA9yk=
-
- IntercomTranslations.bundle/cs.strings
-
- EmIMhD3omvIJciBUhOaHDCxkPd4=
-
- IntercomTranslations.bundle/da.strings
-
- a6OOW3MXQRADpxJ56hDV0xp6FXU=
-
- IntercomTranslations.bundle/de-form.strings
-
- y7HIgC4LAzwsLUihNTD8AVF15VI=
-
- IntercomTranslations.bundle/de.strings
-
- +Nlux3Xc8WlqMh6z0gwL5B33jrU=
-
- IntercomTranslations.bundle/el.strings
-
- AC2Yt7HxklYRZ+W0xpwTfbRLxoE=
-
- IntercomTranslations.bundle/en.strings
-
- Ty43ehubiPxhKlvBoepfhCwA9y8=
-
- IntercomTranslations.bundle/es.strings
-
- kuwZPa6vvXFvuJjIVygtkO5uQXI=
-
- IntercomTranslations.bundle/et.strings
-
- AjGumyW5cCO4cx/r6M/JJHbiOpY=
-
- IntercomTranslations.bundle/fi.strings
-
- /RDSIhM7unQh7m7nqwnypJKOKKg=
-
- IntercomTranslations.bundle/fr.strings
-
- N3/7ftOfE21blyMH+Wi04uOc24Q=
-
- IntercomTranslations.bundle/he.strings
-
- EMNqMk6M1+32rzr1M4as7AUH7rI=
-
- IntercomTranslations.bundle/hr.strings
-
- 8bugbIUCrTpIRBmiFNrdB843ve4=
-
- IntercomTranslations.bundle/hu.strings
-
- Tdr4YoKyVdZA2DSp70u0gTSl8Sc=
-
- IntercomTranslations.bundle/id.strings
-
- pFkwgbLOwVLv6WgzgzEtcVTAmoY=
-
- IntercomTranslations.bundle/it.strings
-
- 4wej08fDi6+CgK9sLIIPaw55KQs=
-
- IntercomTranslations.bundle/ja.strings
-
- NcL7aw2/kEhFTzaM6Ue0UK0r6DY=
-
- IntercomTranslations.bundle/ko.strings
-
- KHRJMXwjfq2LDj+StRiU3MY6MKs=
-
- IntercomTranslations.bundle/lt.strings
-
- DyUHOfLMBRPeaugT5WC65pMFGSI=
-
- IntercomTranslations.bundle/lv.strings
-
- X+RQ71/wlXFndKklkbY5JsRo4WY=
-
- IntercomTranslations.bundle/mn.strings
-
- bOys42j6YfZh4pAnNmRmxAp+ctU=
-
- IntercomTranslations.bundle/nb.strings
-
- IxN08/nLE9WXuZLgZ7rkRuMwhg4=
-
- IntercomTranslations.bundle/nl.strings
-
- l1v4ek4TknzhIm4Da/Be/RvlBgc=
-
- IntercomTranslations.bundle/pl.strings
-
- LWNB7fQNXJA01T2NL4DfcfSYW9A=
-
- IntercomTranslations.bundle/pt-br.strings
-
- fY2umGFlSL/kbIY88sALbkm6UIw=
-
- IntercomTranslations.bundle/pt-pt.strings
-
- q2PHBM/aCSalD5idxoovgCPR9TY=
-
- IntercomTranslations.bundle/ro.strings
-
- /JCGWyw1CESBsgvfLpPUcFWE2Fw=
-
- IntercomTranslations.bundle/ru.strings
-
- 9HgUuW09Bo8Rip2+5xQJRlXslQQ=
-
- IntercomTranslations.bundle/sl.strings
-
- MbUPV2oNBz7E4Q9OlKMK8FPxNlY=
-
- IntercomTranslations.bundle/sr.strings
-
- t4Lu6KMwFfmeqQX1PQTLoZqv4BA=
-
- IntercomTranslations.bundle/sv.strings
-
- QxZMF4wPZNl5OHnGzSssvdKqzQg=
-
- IntercomTranslations.bundle/tr.strings
-
- xRsc2yo2v0gO2BmCiQuLb3vMWOw=
-
- IntercomTranslations.bundle/vi.strings
-
- /e12wYv+SfnlJZMSm9mSTWp61zo=
-
- IntercomTranslations.bundle/zh-hans.strings
-
- QoF0N6GvvST7E/DldPVxeVzrA3o=
-
- IntercomTranslations.bundle/zh-hant.strings
-
- jUFBV5Z8aUEShh3LvLNa/BrH0IM=
-
- Modules/Intercom.swiftmodule/arm64-apple-ios-simulator.swiftdoc
-
- h4Ee0GuDDPaOU+UKXPu+N7DYqVU=
-
- Modules/Intercom.swiftmodule/arm64-apple-ios-simulator.swiftinterface
-
- PyE2TFA7lmdGsCcPWwTjIBE5UEc=
-
- Modules/Intercom.swiftmodule/arm64-apple-ios-simulator.swiftmodule
-
- 8wEP1EeaTGBtTKLy6PjBfLkZtqE=
-
- Modules/Intercom.swiftmodule/arm64.swiftdoc
-
- h4Ee0GuDDPaOU+UKXPu+N7DYqVU=
-
- Modules/Intercom.swiftmodule/arm64.swiftinterface
-
- PyE2TFA7lmdGsCcPWwTjIBE5UEc=
-
- Modules/Intercom.swiftmodule/arm64.swiftmodule
-
- 8wEP1EeaTGBtTKLy6PjBfLkZtqE=
-
- Modules/Intercom.swiftmodule/i386-apple-ios-simulator.swiftdoc
-
- Yc3Bw9NfcgDcfu2SCYT77JWCskg=
-
- Modules/Intercom.swiftmodule/i386-apple-ios-simulator.swiftinterface
-
- qZrzQ2Fiec0/baXywr1pTKQ9t20=
-
- Modules/Intercom.swiftmodule/i386-apple-ios-simulator.swiftmodule
-
- TFUKFgKTAN7+BkBoIyMDpZhtT9A=
-
- Modules/Intercom.swiftmodule/i386.swiftdoc
-
- Yc3Bw9NfcgDcfu2SCYT77JWCskg=
-
- Modules/Intercom.swiftmodule/i386.swiftinterface
-
- qZrzQ2Fiec0/baXywr1pTKQ9t20=
-
- Modules/Intercom.swiftmodule/i386.swiftmodule
-
- TFUKFgKTAN7+BkBoIyMDpZhtT9A=
-
- Modules/Intercom.swiftmodule/x86_64-apple-ios-simulator.swiftdoc
-
- GCugfSoelIl+cxHLUxPtr9IOqtI=
-
- Modules/Intercom.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
-
- VKBP6QA/Bes5ogZLriEkGdD0K5k=
-
- Modules/Intercom.swiftmodule/x86_64-apple-ios-simulator.swiftmodule
-
- 5wpu7b500NSoHDadX0IS1GVQVuY=
-
- Modules/Intercom.swiftmodule/x86_64.swiftdoc
-
- GCugfSoelIl+cxHLUxPtr9IOqtI=
-
- Modules/Intercom.swiftmodule/x86_64.swiftinterface
-
- VKBP6QA/Bes5ogZLriEkGdD0K5k=
-
- Modules/Intercom.swiftmodule/x86_64.swiftmodule
-
- 5wpu7b500NSoHDadX0IS1GVQVuY=
-
- Modules/module.modulemap
-
- EppyuX6MzBQrz4cotp1RE2zqYTg=
-
- Modules/module.private.modulemap
-
- BxWP+6WXJvtZqhEmLo871TT7qjk=
-
- PrivateHeaders/ICMActiveAdminsAvatarView.h
-
- 9vJ085NJvBUP02HcSfHcMwXmvCY=
-
- PrivateHeaders/ICMArticleWebViewController.h
-
- c9fNZy7NVNbT55x1XyjnlAqAYJU=
-
- PrivateHeaders/ICMAssets.h
-
- VsmtV5iyMPWWO39PrOyaek7BT5k=
-
- PrivateHeaders/ICMAutoLayout.h
-
- ibYpQyF7ZrxbltzbzMSsmxqOePg=
-
- PrivateHeaders/ICMColor.h
-
- xw4RLFtDmgpy2Kfhqy96uKtvivA=
-
- PrivateHeaders/ICMConfig.h
-
- tITNCJo68GqWpKLbdTu+918qglk=
-
- PrivateHeaders/ICMContentViewController.h
-
- ZTygXZmX8qnT8tomvSrdziUznyY=
-
- PrivateHeaders/ICMContentViewControllerDelegate.h
-
- 2a1oegfhrvQt/vff/wmfh2V8w2k=
-
- PrivateHeaders/ICMEngine.h
-
- d6y1olmjJ6eShak/uKoU7uU+YCA=
-
- PrivateHeaders/ICMErrorViewController.h
-
- 7z5Kk6X40NSBGqOhNOz6bC/85SU=
-
- PrivateHeaders/ICMErrorViewDelegate.h
-
- xiQNHnsf7I4+VxR8Vi1u609Prec=
-
- PrivateHeaders/ICMFeedbackGenerator.h
-
- 0OJ8TLe3vV9hFAIvUKM1Z8OfjkI=
-
- PrivateHeaders/ICMHTTPClient.h
-
- JiTx2JeOgGLf8t/lQC85NGbpzs4=
-
- PrivateHeaders/ICMHTTPClientProtocol.h
-
- xlnsE87UY4WeU4e3PZrbRa3Uj4c=
-
- PrivateHeaders/ICMHelpCenterTranslationManager.h
-
- LZRbPoHUjaf222aLYZ9QY5HnGCc=
-
- PrivateHeaders/ICMLoadingViewController.h
-
- QH1Vbqj+ZMq4Y8HKz23kvDAWaQQ=
-
- PrivateHeaders/ICMMetric.h
-
- arD4zoUKbmQzIXlRpij0hdhiGCE=
-
- PrivateHeaders/ICMMetricEvent.h
-
- J22bP7uKewvTloH56JdO9iiKSuA=
-
- PrivateHeaders/ICMNavigationBarCloseButton.h
-
- 3RXfqW9dikZdjHxHy2umWPhg67c=
-
- PrivateHeaders/ICMNavigationController.h
-
- 1whWLs7oOlG6Il9jOs7oOpZyRDw=
-
- PrivateHeaders/ICMPresentationManager.h
-
- 9Y+eIvWuFparXg2/MBeUAJ7MmLI=
-
- PrivateHeaders/ICMSafeNetworkModel.h
-
- nwHA7vBks3Bs9vLyUWrO4oxPiMM=
-
- PrivateHeaders/ICMStartConversationButton.h
-
- v40kEnNLxmUnaQsCgc3SE1oYkC8=
-
- PrivateHeaders/ICMTranslationKeys.h
-
- Pp5WNbZtH5S/hX+6SCaZ74LXkpc=
-
- PrivateHeaders/ICMTranslationManager.h
-
- kXd7i0hAwIXiH0Rd4koHYTB9s8c=
-
- PrivateHeaders/ICMUtils.h
-
- LyTJxmvg5eSRRJVbraxDiM7SI80=
-
- PrivateHeaders/UIImage+ICMImageUtils.h
-
- mOIUn0jHQgFvZkpZsIPuYzrM8PI=
-
- strip-frameworks.sh
-
- bENFeKfMHTdHyWS5AygjhdAo44Q=
-
-
- files2
-
- Headers/ICMCompany.h
-
- hash
-
- uzxIny+8ehHozzulRDJxGPWhrho=
-
- hash2
-
- KXQtflvhLuH+c8GKQzjf2/kP2ZLCGNpz9xZXqwRylkA=
-
-
- Headers/ICMHelpCenterArticle.h
-
- hash
-
- QVphTXqzVrrSspmGCoiQBcuEfuc=
-
- hash2
-
- am5BH29FrWdENDT1xCDVFZo/zI3WMVw3t1+A35X4m6s=
-
-
- Headers/ICMHelpCenterArticleSearchResult.h
-
- hash
-
- 78SP9YlR+AvFvF/D9Jqo06iSQew=
-
- hash2
-
- iEdk6v2V9abd0snogzwoSsNlE9c/ZqPBGKpEPO8eBj8=
-
-
- Headers/ICMHelpCenterCollection.h
-
- hash
-
- EviQTXHFK3DVKoU6Azf0Vh5YwsE=
-
- hash2
-
- ohcAnOP43LVnQIja725XJjwwh1ryOcd3stBcx2zXEqw=
-
-
- Headers/ICMHelpCenterCollectionContent.h
-
- hash
-
- ELjdgd/YnX/h3CXNns8C0/quNDY=
-
- hash2
-
- 0TXm/0cllVClWxWgDXYSA3GPGJQiNoGHxubwEJ1+WYg=
-
-
- Headers/ICMHelpCenterDataError.h
-
- hash
-
- 8nSafSPhcIu+9cMBTGGTqWEgKpU=
-
- hash2
-
- NAqP71ksmNB0x5n6cc9lxlbUJvE183dKvqT8buSwKps=
-
-
- Headers/ICMHelpCenterSection.h
-
- hash
-
- 1/EbB4BtG4TSFUy3wi5E9AhYjSE=
-
- hash2
-
- nwn4HNmlMjbSVxkiBMCOxwzNmBSL33QAYOZjP1O2OI0=
-
-
- Headers/ICMUserAttributes.h
-
- hash
-
- ceP4QxLJXTzh1b1pG1CRsi9t9Po=
-
- hash2
-
- 459pkowgzVeFMuXYXfoda9U8Y0sgr7tqKjqCRy3uUgo=
-
-
- Headers/Intercom.h
-
- hash
-
- gS0P1t6U1t5AUjERMoPcfrMR6hY=
-
- hash2
-
- litP9Sr+xmosEd2FGhIZSN27ZUhBjPRjwm0IiyY+E8E=
-
-
- InterBlocksAssets.bundle/Assets.car
-
- hash
-
- DOFi6+95lhPCuP0NXl7HUoNKe+E=
-
- hash2
-
- rm6ueJT1/x0qknkgh7SPCzjAVFIcjrvXYvzb7IqqMts=
-
-
- InterBlocksAssets.bundle/Info.plist
-
- hash
-
- R2PVMHS0f3buKqzWcXTKDeovdPY=
-
- hash2
-
- Dd1TPHiV2MhxGubx4lqDz6q3fdlubMGkoT0ckB7P8BA=
-
-
- InterBlocksAssets.bundle/_CodeSignature/CodeDirectory
-
- hash
-
- Ij7WN+NilcSN8wm92hhFxdzUuvY=
-
- hash2
-
- ON6L3cb7cU3JAXgIQkCK5NbyX1ffvQVV6s+y/Stsrco=
-
-
- InterBlocksAssets.bundle/_CodeSignature/CodeRequirements
-
- hash
-
- OnX22wWFKRSOFN1+obRynMCeyXM=
-
- hash2
-
- mHkgkE6rZQ51eIwFSqCwUk5qgL/HGqMt+NI3phdD+YY=
-
-
- InterBlocksAssets.bundle/_CodeSignature/CodeRequirements-1
-
- hash
-
- 1LysRMEJ4fmtg1ixgGHAFFBaUlE=
-
- hash2
-
- IrTtg25KywKtH+Fk4iI3e4NQRfKrV74XjLA9YYB+Qwg=
-
-
- InterBlocksAssets.bundle/_CodeSignature/CodeResources
-
- hash
-
- xy6o2DP4aKwvdaZOqw0fvQTg8Yk=
-
- hash2
-
- DQ4wWvclUJ5Ad6ClJgvQltLmheLrpR7A+VDpd+XBfcc=
-
-
- InterBlocksAssets.bundle/_CodeSignature/CodeSignature
-
- hash
-
- 2jmj7l5rSw0yVb/vlWAYkK/YBwk=
-
- hash2
-
- 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=
-
-
- Intercom.bundle/data/intercom_area_codes.json
-
- hash
-
- 54e9anVjesbex2A5LAp2JmjGyng=
-
- hash2
-
- HHWx2K1Imauk/q7pULg6GxUazkz5a0O+1NgNYM8xPoM=
-
-
- Intercom.bundle/images/Inputs/GIF/icon_GIF.png
-
- hash
-
- +rhLF0Ei/tB1VweKBqJsT82Z+LY=
-
- hash2
-
- 52XViMeaQQeNmZnQ/twWcZUZ41U4gJcEfy3vkZI0Rmw=
-
-
- Intercom.bundle/images/Inputs/GIF/icon_GIF@2x.png
-
- hash
-
- 0nzK2KVldjxxexleHl7w0yu1PUs=
-
- hash2
-
- hwYB8t29+wcQtOsoNr8MzzVQZ0DYPGMiHa7GD+Dh81Q=
-
-
- Intercom.bundle/images/Inputs/GIF/icon_GIF@3x.png
-
- hash
-
- snxtV/aLyf1ItsmKgKCpEF2/6hQ=
-
- hash2
-
- Jy3Me7tWgvkJ3RiwdQFVklYwFtqW6nuBHc5xjV1f0So=
-
-
- Intercom.bundle/images/Inputs/Photo/icon_expand_photos.png
-
- hash
-
- xLy6fuzr1Ad9bxIt8BVKJOhITH8=
-
- hash2
-
- B936I1G21zsZbHY/AqRAqFfLH4UDuQtwvwJeMG1zRpY=
-
-
- Intercom.bundle/images/Inputs/Photo/icon_expand_photos@2x.png
-
- hash
-
- Wz3Bg2JOF1y2VuxxSpU3NNKSK7g=
-
- hash2
-
- YFeyueil+r+FeCrhIDPakvLRRH/Dvbzzb48Q9xDMgw8=
-
-
- Intercom.bundle/images/Inputs/Photo/icon_expand_photos@3x.png
-
- hash
-
- 7CC3Y7eCGcLkuVkIhg4xxqiwS5o=
-
- hash2
-
- FDpHACPCSV7kAkhgMguB2lZE6PFFB9GrVxC+TWJLC8Q=
-
-
- Intercom.bundle/images/Inputs/Photo/icon_photo_input.png
-
- hash
-
- cOIgyeJyAbmET3hcWPUQ8N4zrok=
-
- hash2
-
- XCJFM8mcc9MQynS+UgRDDmHxQjnrbCSnnovmXcWKMMQ=
-
-
- Intercom.bundle/images/Inputs/Photo/icon_photo_input@2x.png
-
- hash
-
- +ZsoXf+x97YVF975Swtd+1tN470=
-
- hash2
-
- wLcEiFy3d/TCwgFKwwHkgTzeHSp5g06+Lqphz0t7Iew=
-
-
- Intercom.bundle/images/Inputs/Photo/icon_photo_input@3x.png
-
- hash
-
- 8Ncm2JwAPpX7SPTLccAukgBOAfU=
-
- hash2
-
- nIM2cb295B7aIWn83TOTtZXIvp7pLchMA5gJfhjl0H8=
-
-
- Intercom.bundle/images/Inputs/Text/icon_text_input.png
-
- hash
-
- NODZAfvQ9H5OPP+U3fhIOkC9N/w=
-
- hash2
-
- qCezAZ0VR4MrCWAMetFH8ATTRdEcXd7kxeOOKGwKADs=
-
-
- Intercom.bundle/images/Inputs/Text/icon_text_input@2x.png
-
- hash
-
- knbKhHUTIZwCTYthfVE7BSiasec=
-
- hash2
-
- 6B/R7JHQCULKSt66II/J9aDwKGmxeHJ56eOzgxKSk48=
-
-
- Intercom.bundle/images/Inputs/Text/icon_text_input@3x.png
-
- hash
-
- 6N7W1kujrP4fsbo8DCYSO8tuOiY=
-
- hash2
-
- pDLFCT+AJjnc/iVmKr8g2kvK1qD0rO8+4IelKcr9yHE=
-
-
- Intercom.bundle/images/article_loading_state.png
-
- hash
-
- UtaBAQyyUb7WBTmUdgT7JEUtfRw=
-
- hash2
-
- SaAEM16+sS2UuJeOoZZKHHOBIWpOL0KF+aAhCute2v8=
-
-
- Intercom.bundle/images/article_loading_state@2x.png
-
- hash
-
- RBK42e9f6kHeLkkZQDNJVXOr4Cs=
-
- hash2
-
- fkW6XfeURnpebVGBZmoVTv15cdQeJfK6kv4gdC8lTuk=
-
-
- Intercom.bundle/images/article_loading_state@3x.png
-
- hash
-
- P7FueqYZo9Cit5vsSIsm9JMAcwY=
-
- hash2
-
- 2l2jEI0PqjqXb3Hcv87EruUeo2zzIXHj3s2kjn6cQJk=
-
-
- Intercom.bundle/images/ask_a_question.png
-
- hash
-
- IZTYxmQK6rFA23NNyYguHqyOTRc=
-
- hash2
-
- 47eiCTN2COdKmy/OOOicw0/VorAMZbUyOvqeaGF1Ns0=
-
-
- Intercom.bundle/images/ask_a_question@2x.png
-
- hash
-
- RrLlCuN7V8Xd2TBadSU7WyXwznM=
-
- hash2
-
- gEOcCoD731FoCSzEWeMxqzoWur4cPpTDjP2s4vZZfMA=
-
-
- Intercom.bundle/images/ask_a_question@3x.png
-
- hash
-
- WzEayc/hBttF841R8DrpKxhkHpw=
-
- hash2
-
- +HVtprOCJkJjS7oNbXMq8njg8oJJgZH+bRLyFx1CaGU=
-
-
- Intercom.bundle/images/back.png
-
- hash
-
- InbyO9LGRmibp4Xsi3CyBtxuuzc=
-
- hash2
-
- 74Dxf6DArw3sVCL5XJSaDS1C8bwcV/h/oAu+0Zz79xE=
-
-
- Intercom.bundle/images/back@2x.png
-
- hash
-
- 8uCKlTis+Fyi7yr1evN7y3ZCZ1o=
-
- hash2
-
- zSr0n+IAAIvawZiqeIs5EfXKM/3q2pznapLt269DBMc=
-
-
- Intercom.bundle/images/back@3x.png
-
- hash
-
- nw47jI7QC3zc1BTcxcEl+xH+7mg=
-
- hash2
-
- oABGniCAGfDmptKqpXT9s0xTQzqCW9cQGNK9alXB18A=
-
-
- Intercom.bundle/images/boolean_button_left.png
-
- hash
-
- rkXz82LLua9fj3nKCHW2a/Ory+M=
-
- hash2
-
- WhwnVbH7nVQ+hpURrbyliGSfuvyfta4l+uDAJFrHFdI=
-
-
- Intercom.bundle/images/boolean_button_left@2x.png
-
- hash
-
- Mk1e04Nkd2k2bwQL/CvgMxyc7oU=
-
- hash2
-
- BbNKyWpOV6evImFLaC2Q2XHlqmceOuWUG55oTwjH4C8=
-
-
- Intercom.bundle/images/boolean_button_left@3x.png
-
- hash
-
- lRO16mCkEFlsvz1x5nzob6iecS0=
-
- hash2
-
- ECvPo+O5WD5DExUKrsGj322H6RiUWBMp+NIWisBWUh4=
-
-
- Intercom.bundle/images/boolean_button_left_selected.png
-
- hash
-
- IBOCkV3XPF7hwgRjAg//vuwh7lQ=
-
- hash2
-
- xI8v5WcxWU7gRP6WUR9V5b4HbVkkF9ecj2hj3lp60cY=
-
-
- Intercom.bundle/images/boolean_button_left_selected@2x.png
-
- hash
-
- ESj8lD24TrdNKpDnFdm7MGqYqaQ=
-
- hash2
-
- QHnfvTX6RMvzUGvrcmkuHvYi7G2o8tz3YlT1jZEykAY=
-
-
- Intercom.bundle/images/boolean_button_left_selected@3x.png
-
- hash
-
- 5HAIrZsdC/Os3zHnXW6Ucr2KvLs=
-
- hash2
-
- ZcSmjT6YxmMY56OGxhEWMa82NmO++eLWBRwPr9nrsv8=
-
-
- Intercom.bundle/images/boolean_button_right.png
-
- hash
-
- f5mGsfJHUpt+5f2bg3wdFbdnCzE=
-
- hash2
-
- eqPiMobi5GOkt45eecSlb5ki3T0RZvQG1kveGnv7L70=
-
-
- Intercom.bundle/images/boolean_button_right@2x.png
-
- hash
-
- ed3g31hf46u2RNz0YObMOGIVtxI=
-
- hash2
-
- rTSKOEFZHLdSuywnJClqCGj2+NwM9XbcT/GqohsFDOo=
-
-
- Intercom.bundle/images/boolean_button_right@3x.png
-
- hash
-
- ZOx+8Le9RxkDgMyw0ZkJQ4bZp9Q=
-
- hash2
-
- wmzjeSaMaJ81j8h6j373xpw3mKqL2VU3nJEgfYgGUIo=
-
-
- Intercom.bundle/images/boolean_button_right_selected.png
-
- hash
-
- s12ZDUbCX7vGsL7PT7zr8o0WqiQ=
-
- hash2
-
- 40C0hY/Y3w0Mn0Agl8L6La+MlKoGpq2zdMDJF9xByvo=
-
-
- Intercom.bundle/images/boolean_button_right_selected@2x.png
-
- hash
-
- nmU7Nq+57ResB/mib3Z7eh5aF4Q=
-
- hash2
-
- 4Y1PWqryMqQKAi5RA3iFJb511vKhTK04bX8fI0digHk=
-
-
- Intercom.bundle/images/boolean_button_right_selected@3x.png
-
- hash
-
- Q/zhozAk9l0hqSrpbo/HlDLpyZM=
-
- hash2
-
- SRQQ8O2fDzdrCvErPo7NCXN5Gy8WNv9VII3Q2984obA=
-
-
- Intercom.bundle/images/carousel_loading_state.png
-
- hash
-
- mr1lCNvzXNMY21USkkcf5HHBJ8E=
-
- hash2
-
- t2SbBALaQYuYOHXA/jcjUR1FUE9RFrRRnnWQXoGLLuI=
-
-
- Intercom.bundle/images/carousel_loading_state@2x.png
-
- hash
-
- eGkoeSDdj39rv6/jk3k+HjKYgCg=
-
- hash2
-
- YxDasl3VZaN4SmV2HigEFCokLdzMgNAJGPWSaOQ8H1k=
-
-
- Intercom.bundle/images/carousel_loading_state@3x.png
-
- hash
-
- eGXB3QAQfhw+L4jMDVhsAEEH67c=
-
- hash2
-
- RhzvoSOui3o3NAHfWlQyjwMpi+1dpy5Ed+s2CQVeOHI=
-
-
- Intercom.bundle/images/chat_bubble.png
-
- hash
-
- cose6R8QZ73NybnulN/9Um5L1LI=
-
- hash2
-
- q1A39y/6jALaDKqaA7X0rbrZNtMgUE/YnyqUPKLOvYM=
-
-
- Intercom.bundle/images/chat_bubble@2x.png
-
- hash
-
- YuNKf6t4MpkMPbkzBj8QZlUIvrE=
-
- hash2
-
- eNaoxvS2v3i6VDmITXyehEanZ+pTKLjbukKyWNihi0I=
-
-
- Intercom.bundle/images/chat_bubble@3x.png
-
- hash
-
- Mrc87VDTTae6cDhQ/dVTZjFEduw=
-
- hash2
-
- 4gTy5rdI/2q6vxPlXOTnqb/CD1okazhQgQE0kRAlxgI=
-
-
- Intercom.bundle/images/close.png
-
- hash
-
- pE4dim623rsFTcOq3UZ7ImLfqhw=
-
- hash2
-
- uG8pWt0U5A0FOZTZEntejEV3XTcn2KwWzARhaiQmBWk=
-
-
- Intercom.bundle/images/close@2x.png
-
- hash
-
- jhVfGqoeEfCTV9EbUQFZA++yE1s=
-
- hash2
-
- HDN4EA4R3QgrHMQVztBelUF5NkuVBYaG2pgNZf2avKM=
-
-
- Intercom.bundle/images/close@3x.png
-
- hash
-
- aj4/HOhjnSmRngQlMGE9zZj/lb0=
-
- hash2
-
- +HadcGl4QkIRjykBcU3tJiFZWez9QYPbJSC8+Z70cWA=
-
-
- Intercom.bundle/images/close_annotation.png
-
- hash
-
- aua4VX3aBfhDZaYj6fbz8fRXCQg=
-
- hash2
-
- EWBh/ogOEtcC5U39jANHs+0gB0+0ugfUhnRjcWNhSCc=
-
-
- Intercom.bundle/images/close_annotation@2x.png
-
- hash
-
- BSUW7cmG2iVRdtBPLSZxMyUZR2k=
-
- hash2
-
- kMqPqmgsiXw4wKbzOp0Gkc2PB35uQGQ1/T7Zj/fppPU=
-
-
- Intercom.bundle/images/close_annotation@3x.png
-
- hash
-
- 0/PiFsSYPfjXYvn12SmmfqXLZNg=
-
- hash2
-
- mnT38umpGrqRAJik0xfeDxC9jM5OQ+LW2md7TwooaT0=
-
-
- Intercom.bundle/images/close_intercom.png
-
- hash
-
- ZDm27/T1D3OEqL0LrxcAtDy7ChI=
-
- hash2
-
- 7RTZpPQAicV5iBuTpWXIPt1P/9UshTvtMtF1SJZUyP8=
-
-
- Intercom.bundle/images/close_intercom@2x.png
-
- hash
-
- aoZt68sH+MgH4a05MHK5/PMcNuA=
-
- hash2
-
- Eg++fjX8SfWVGUz8wfJeubfeAwfAycGVQiAzun1rWd0=
-
-
- Intercom.bundle/images/close_intercom@3x.png
-
- hash
-
- GfgRbOHkvbeUdVYjRQdOLrjY58E=
-
- hash2
-
- AOh3hdPhiRchM723Wcy82+PerqGF83DhrPNsuRke2rQ=
-
-
- Intercom.bundle/images/close_note.png
-
- hash
-
- Bdxmsakts0ybXOCQ9tPyzxnScEQ=
-
- hash2
-
- hMflEut4U6vGANgPHVGDULeZoa0nQkoFhdtAFJsPO4E=
-
-
- Intercom.bundle/images/close_note@2x.png
-
- hash
-
- oP9/Ukf62HGrwTuSNtkw3RWG4m4=
-
- hash2
-
- 3EXyEMEqdBx2i7uS7T9diNjtehz8H6yE0Kw/C9RozpM=
-
-
- Intercom.bundle/images/close_note@3x.png
-
- hash
-
- VDsrbwpL0cRBxsPZgRTn4M7eKFU=
-
- hash2
-
- 8aJH2OEpt5I58cxaQREKzKtq6HNZvNT6k5aN8T8tYkg=
-
-
- Intercom.bundle/images/close_post.png
-
- hash
-
- ogwfk0OFJJfdWNq1h4eq8hzTfrI=
-
- hash2
-
- bqKHbp/D7taUd5cNzqK03GznTey39RWlsnZSNfqaino=
-
-
- Intercom.bundle/images/close_post@2x.png
-
- hash
-
- MkRTekv1xCZjs6B8MA9kqR4dtmY=
-
- hash2
-
- 1w/R54KNqStgvLpZRw/zx02TFS/5wMyfKw2/K81zMVc=
-
-
- Intercom.bundle/images/close_post@3x.png
-
- hash
-
- 73vicoCGoZ1d6R5ZiEYR1Ldjaf0=
-
- hash2
-
- kTYYb+l6DR7s7IoxSplNuA2gosFAwqFDb1fM+djUYVo=
-
-
- Intercom.bundle/images/date_selector.png
-
- hash
-
- B8EaxsMogNMaghViTqE4OmsOq5Y=
-
- hash2
-
- szFaIZ86QLjOAp9M9r9mSfXpXEd9HUSmjlLSD5gykBM=
-
-
- Intercom.bundle/images/date_selector@2x.png
-
- hash
-
- jugcpHinBFdSUAuY9LuHkipzObk=
-
- hash2
-
- oIai6WXQfWooje6H1PCtkrvmfgfESNMYP7j86k7nTbY=
-
-
- Intercom.bundle/images/date_selector@3x.png
-
- hash
-
- xSQF8GGOx6bXLdtJmG0VzaEsXmk=
-
- hash2
-
- rMB9+DfQ9tP1Soy/kQ1hpVggwixVyyyazI/cc1wChBQ=
-
-
- Intercom.bundle/images/footer_link_icon.png
-
- hash
-
- v3GhGS2UMrAxzlcbkkxGESaFdm4=
-
- hash2
-
- t/tHvKxR4sp0wrTqY59NyctPCENrJQNz9tB8ml1Ow2o=
-
-
- Intercom.bundle/images/footer_link_icon@2x.png
-
- hash
-
- q0tkzMEM2c+zwwrD4sJRHWqslt8=
-
- hash2
-
- 8ukJzbtyJ3nHSwPJ4LVJVfkuNZFKyUWyR+KDcHJnYlo=
-
-
- Intercom.bundle/images/footer_link_icon@3x.png
-
- hash
-
- ROSC3GDCZrqCRwYag+z8bUrh3MA=
-
- hash2
-
- T/+ir+UNDYzYs1fqr7/L7amWG9QTs38AWFE/JX5oKJw=
-
-
- Intercom.bundle/images/help_center_chevron.png
-
- hash
-
- rMYt6+eHADwjPLRBj16Xf6VG7Bc=
-
- hash2
-
- nN2ju0ZOgEbe94qTFGhEznUeeTdNhd36j2QBjTMxfdg=
-
-
- Intercom.bundle/images/help_center_chevron@2x.png
-
- hash
-
- OfyxRIKXdJEsLeeYSYcIGzJbX0A=
-
- hash2
-
- 51DHYY2e2yoT77R4R9N64uk532jl0BZ3KDyvlXWOVAA=
-
-
- Intercom.bundle/images/help_center_chevron@3x.png
-
- hash
-
- eyVRzw+WsRAEOQ0G953yrfReMZo=
-
- hash2
-
- UfrPlo4saycfBfSxrx31CzNLHyC+M40FrBT1odbE/PA=
-
-
- Intercom.bundle/images/help_center_loading_state.png
-
- hash
-
- 4/J19IR1U2sJFOx4zeOnwcNpUCQ=
-
- hash2
-
- kcT42abgwR2gqdBK1A8TmTPE5Qk79lPUwnz4/30Yyrw=
-
-
- Intercom.bundle/images/help_center_loading_state@2x.png
-
- hash
-
- tkuNkjeJb0HgdcGZgAW8aTewXQ4=
-
- hash2
-
- JUCSNalz7GBniTLoaETJjIHtPt3pdoU1GsEGsUBU6mQ=
-
-
- Intercom.bundle/images/help_center_loading_state@3x.png
-
- hash
-
- 9fdy/THGQl31afa1PqqvIhCR8zE=
-
- hash2
-
- 7jKrZUU/atKcYUD+wXN3VTzF8gdjscag5RjO/hp1Afg=
-
-
- Intercom.bundle/images/homescreenFailed.png
-
- hash
-
- hG7JVQL8lMwcjz/3ZImc4dBovAY=
-
- hash2
-
- qTZS7FHGIOMhohOXYr15z5u0jUUhTVv3S97tuw3qflQ=
-
-
- Intercom.bundle/images/homescreenFailed@2x.png
-
- hash
-
- r1R9++fgRBJHJWF5hBL0H9q9jQQ=
-
- hash2
-
- P4rSvqJlSFSyma6+wkNR83YJgT22JBEw3FAfZQcc8mc=
-
-
- Intercom.bundle/images/homescreenFailed@3x.png
-
- hash
-
- JAJFHCKpI259EzsPab5y7p9TXI4=
-
- hash2
-
- frFzhIIqt/81M30rPCqFc4kvvF5A1bYYBfhcxEDmgag=
-
-
- Intercom.bundle/images/icon_green_check.png
-
- hash
-
- XTdzzThg18fUs5seYTwtWxFCf1A=
-
- hash2
-
- ghFomJmrrsQdDA/qEaf0X0OCHU3dq88KYxCTw+dqkqU=
-
-
- Intercom.bundle/images/icon_green_check@2x.png
-
- hash
-
- 4blQTTuVKg9hURpC33kNk2orN/w=
-
- hash2
-
- ntIDlRg4kU3VwPxOR9+gRK5VBYQVr73JV4L9n3mvYCc=
-
-
- Intercom.bundle/images/icon_green_check@3x.png
-
- hash
-
- 8zE8e+ovRd1VSYI/Uf89hp2bsB4=
-
- hash2
-
- 2tN1yjB3B1x9iEE3dhmaIcudyq9EFBOefFsDMeySPA0=
-
-
- Intercom.bundle/images/icon_loading.png
-
- hash
-
- rUuJzjK9O2TaHYw27FvpKATi5IM=
-
- hash2
-
- vTIOTGm483A6m3SZTlmpnZas+yaTseZLx8WRe4/mSXc=
-
-
- Intercom.bundle/images/icon_loading@2x.png
-
- hash
-
- 7NCT+Gy9AMmmrhJlp5rzDJrgeXQ=
-
- hash2
-
- jSz7y1Bbve5Pub91ovkRoA59gUEsykr+WvMmIlhLK2A=
-
-
- Intercom.bundle/images/icon_loading@3x.png
-
- hash
-
- tWv1XfMvqTVie7WRB78USU3tYZE=
-
- hash2
-
- ahObeCT/Qe8IYoAOlMAZ4MXG9zZk1dXRIHKudcGhaq0=
-
-
- Intercom.bundle/images/icon_submit.png
-
- hash
-
- /R/11ZktygRZ5Cf7hSxF7fy6Clw=
-
- hash2
-
- FmIftFU5uicySEcNMys5ykDFlZqx2HZEgCo4Xu9VEiw=
-
-
- Intercom.bundle/images/icon_submit@2x.png
-
- hash
-
- lcafLJ744ZKiuxHqnZDFtBgdExk=
-
- hash2
-
- 2BPmkxjyAeUl8P9csz4rUdUVNZaNPtU0mlzkb77z5YU=
-
-
- Intercom.bundle/images/icon_submit@3x.png
-
- hash
-
- Uu5HgBMvVZCI7mLm/LLgITg7LhM=
-
- hash2
-
- oZTVsMieWRp/oXsyySMZ4fCt29RFAAhFCg0yr3YkQp8=
-
-
- Intercom.bundle/images/intercom_logo.png
-
- hash
-
- FEu5bkMSjwHpBIE21wY0S3QH2p8=
-
- hash2
-
- TujPGHMBxwVxrY2efgA/UFvGAwWRmWtxqyiLQiYYkr0=
-
-
- Intercom.bundle/images/intercom_logo@2x.png
-
- hash
-
- xnSvasLL9dHle1xCVz85ZPtutiw=
-
- hash2
-
- Cn2sfWV0ooHw2CUL1iLVbkDCy9k2nEFMGP5L74oMc6c=
-
-
- Intercom.bundle/images/intercom_logo@3x.png
-
- hash
-
- gwzO3mSjbiJL0ZoO5aajYhX6ZV4=
-
- hash2
-
- y8WWLPEIktBWKxgDhuYFI5dbM7/9AnxEAYsBAEdJ3fA=
-
-
- Intercom.bundle/images/launcher.png
-
- hash
-
- EpoVXdWVozTg7Mrwa5kQ83dIze8=
-
- hash2
-
- fFUApPazbzCiRV6kEre2oTQAl/lPFtWLmlblqe+dzSA=
-
-
- Intercom.bundle/images/launcher@2x.png
-
- hash
-
- NcSqlWdjqoDN6s/JriKNEpmWMKk=
-
- hash2
-
- KNmtkkzWyE9sdCMIx9m6SQI9whnfjfj/XsVvJGyay/I=
-
-
- Intercom.bundle/images/launcher@3x.png
-
- hash
-
- Q8vSQ2pdp1ITLalZJAXVDSxn60k=
-
- hash2
-
- qUo6+T6awzRC9ssZH8tRhqwzSqmKV9NSWAe4ocv0YaY=
-
-
- Intercom.bundle/images/linkedin.png
-
- hash
-
- 7n7WlF9baNTmwJ+SKIQISnVJIMY=
-
- hash2
-
- foSSSi0qgzJvYhUab2leUYLpzfj9OEefMf13UgesSjA=
-
-
- Intercom.bundle/images/linkedin@2x.png
-
- hash
-
- BH4u7v8n6uel+KPWrVyog8lMBvc=
-
- hash2
-
- bNBWmAxwbauQSMDHN/ZmzY36llbfikqH7vZh5v3/LVc=
-
-
- Intercom.bundle/images/linkedin@3x.png
-
- hash
-
- 5ZIN33offCEshD+gJ52G5iuCGgE=
-
- hash2
-
- Tunk2+UjTCe5BIkJ8g89U7DEOsd6Dul2aSC31IxNsjw=
-
-
- Intercom.bundle/images/logoa.png
-
- hash
-
- Qa7eEpxskfLQwF0GOcoy/lB1hZU=
-
- hash2
-
- MkLEFWvsbJXWaD/PHENXRKYxsAfBjG/lM5SIN5muC7I=
-
-
- Intercom.bundle/images/message_failed.png
-
- hash
-
- azBt20/t0z1AZmAiwdI0VdRVfJk=
-
- hash2
-
- p5QusUj3kM9asc2PgcqX5ECfalynb74XUhvp6SBRGag=
-
-
- Intercom.bundle/images/message_failed@2x.png
-
- hash
-
- FNLpbRlEelaudW14n5W6a12gNfw=
-
- hash2
-
- /LAxYlu/e9lJ2mlSl5oKK/apw0+RM4lf0lYfs2EMm9Y=
-
-
- Intercom.bundle/images/message_failed@3x.png
-
- hash
-
- R4VrYx08/BI4h8JSpe1aay/mi5I=
-
- hash2
-
- Pkvvu6nwQorjwG23gm/7qoK/OekYIDPjDF5MfZ0UERE=
-
-
- Intercom.bundle/images/open_post_from_card.png
-
- hash
-
- MXBhUYNnQ2FIlrH33ElX2O0SJwE=
-
- hash2
-
- NlBK29J2kldOD2ankCsIaHatStbke9PYDJRy5NxRbUg=
-
-
- Intercom.bundle/images/open_post_from_card@2x.png
-
- hash
-
- L574wvtGGHqP9lx6YsL5I4+RB2w=
-
- hash2
-
- Ru9TcvayeEwEHPxduuabMNzWuT97qr6p3wN+xsapBpg=
-
-
- Intercom.bundle/images/open_post_from_card@3x.png
-
- hash
-
- W935cNWR9u9n/iTRaCGqp2XeWnc=
-
- hash2
-
- 4SQManLDBjZwGME0siadZmglPS5ybGDUdCARxbE4x+E=
-
-
- Intercom.bundle/images/picker_selector.png
-
- hash
-
- M9Z7oDuzvTyQlNXXq52rVg5saD8=
-
- hash2
-
- n2qpRvvMFemY8R5yZZeEe8ZbFAm5C/w+vPMVuIz1sa8=
-
-
- Intercom.bundle/images/picker_selector@2x.png
-
- hash
-
- Ws1Wr8yIEQSXXiTdWCuzMNug3D8=
-
- hash2
-
- UpGo+u7HhaYlFMhys23yXcfDSp+ulzmC/eUV+d492pc=
-
-
- Intercom.bundle/images/picker_selector@3x.png
-
- hash
-
- OtJk2HLEfkD8FidyBtGFsYfGWhU=
-
- hash2
-
- ZIjiSeHTMu1xOI7anPLcXug4FRs8uUKEaZZxeBfeskI=
-
-
- Intercom.bundle/images/screen_action_checkmark.png
-
- hash
-
- BwgVHIhUhQ37tq8tC+C/GA68gG8=
-
- hash2
-
- blsIjxn9CUVD05Fa2ZfI1vs0/BY24s+hjxav1lXXNEw=
-
-
- Intercom.bundle/images/screen_action_checkmark@2x.png
-
- hash
-
- 4vCdpDzWqPZfMl31ng9mVPf/ZxU=
-
- hash2
-
- FwSwQ2Sb6Pk6Wwhq+WdZLkONm3uGL+hKAJnEQ8dmJmk=
-
-
- Intercom.bundle/images/screen_action_checkmark@3x.png
-
- hash
-
- 2PBVUD9jYlA+FjeAuUUUaEquBQk=
-
- hash2
-
- 7yuyi9G2wv9B9at0EKx57fzN2MWhGZ+LBRGatlBWIyw=
-
-
- Intercom.bundle/images/search_icon.png
-
- hash
-
- c2qnMujXiUOHQ72ba9KwjB3ltus=
-
- hash2
-
- SzRgmMy1GtIFDY9EP2KH3vVgt9ndTmwxCRJKhrENdoA=
-
-
- Intercom.bundle/images/search_icon@2x.png
-
- hash
-
- ItrgvVYiGgNKXH/CE77kdqlfJrM=
-
- hash2
-
- bJ6bwRyaeX784iJqZlUjROmB27v1NiMG9YM1o0L1SVU=
-
-
- Intercom.bundle/images/search_icon@3x.png
-
- hash
-
- h4uiFa1jtGRoa/wvB862pErP7XE=
-
- hash2
-
- 5JOPnq9o34Fk8x/ea/clQjcmU+9XQ8lde4hb0P2sBQ0=
-
-
- Intercom.bundle/images/send_annotation.png
-
- hash
-
- TIOQnn4lLF+D4pS5eHFyYaKVNic=
-
- hash2
-
- Pw2ZpSw7wiWgRJT05gmB7zJAlwypkfHJrvYanAH2WQk=
-
-
- Intercom.bundle/images/send_annotation@2x.png
-
- hash
-
- 2+GD+7q+7n8AN+3G8SGs8S6LqWQ=
-
- hash2
-
- qxjLoViC8bQFkn1r5+ga1pQWtVF7lMgekZVmobCc8ug=
-
-
- Intercom.bundle/images/send_annotation@3x.png
-
- hash
-
- qLc+YOxRLyPIkWPNObZXdD17U04=
-
- hash2
-
- G/WoA8uXlbNqR1psqJtxHH9lN7HnHDkkMlNmHEjf8HQ=
-
-
- Intercom.bundle/images/snooze_icon.png
-
- hash
-
- DBm6T0PaLhnt48XOj/Q/+rIaue8=
-
- hash2
-
- htsIvLunRyVf2DD84DXhDgZoYJ8VHgA2683sCuwMM4A=
-
-
- Intercom.bundle/images/snooze_icon@2x.png
-
- hash
-
- bMCm7miJEBcwaQtbm6k4ZSvBnM4=
-
- hash2
-
- pm2joz1rHZWSEoTmSOa2woZBCatevrh32dUirpA0ilE=
-
-
- Intercom.bundle/images/snooze_icon@3x.png
-
- hash
-
- tcLfYh3EYHF+1rD9UvWGWkAxOOE=
-
- hash2
-
- 9DImnnFocxUuOLC6Csu+bBMKYIPzKHcQWDdYwgI48R4=
-
-
- Intercom.bundle/images/spinner.png
-
- hash
-
- +OeFqjPQo1ApqgSErGbCnuopycQ=
-
- hash2
-
- buNLhD+LQZrqNutXdgWDhpbQwRczKC1UCUbHUrv89NY=
-
-
- Intercom.bundle/images/spinner@2x.png
-
- hash
-
- Yk7aZEBBopbYvxVBubd33NcJUWk=
-
- hash2
-
- H0pGxqJtHGEA2Ds2Mj8LdYr0nTtrYw9MIWij3lxHXFY=
-
-
- Intercom.bundle/images/spinner@3x.png
-
- hash
-
- qahR5MOA3lvsGtOFQDYUNhwA4Jk=
-
- hash2
-
- +mHQ6IsEabpjPbTTnhlARZ87UHrAko0O67JBt76DeZw=
-
-
- Intercom.bundle/images/startConversationIcon.png
-
- hash
-
- 2a2IdS0QILRiKHWx1/Gf78STkm0=
-
- hash2
-
- 2aN8L6q3FkZ/Sww98jl2wpNgFOHBdOB8I6zenJgIiiU=
-
-
- Intercom.bundle/images/startConversationIcon@2x.png
-
- hash
-
- wDYZRLp5GIWEEVgIvWwnLnCxWkI=
-
- hash2
-
- MHavRyLGxSTG9aPbjyeqoY/iS7FpXw+HF5ekncbST+Y=
-
-
- Intercom.bundle/images/startConversationIcon@3x.png
-
- hash
-
- MkLendjCSr3a4YxoIqe4cyPI3Mo=
-
- hash2
-
- hIpHu1ViQsTPXfSVolCkOTLo1Xcs9/LM1swx1H4tcOY=
-
-
- Intercom.bundle/images/submit_button_background.png
-
- hash
-
- fDJQR5/WUmzS+7mok/QJfh3JTn0=
-
- hash2
-
- 1eGYL34XwnhiRpstiMLPzs7dpEyj218RJcKtb2AdXrE=
-
-
- Intercom.bundle/images/submit_button_background@2x.png
-
- hash
-
- PQSwtOPqnVIRzyTx/8PfiigX6/U=
-
- hash2
-
- xrhGQDXVAdr/hDR+6ikBN4sJabzSzM0BtL6T6NVEL70=
-
-
- Intercom.bundle/images/submit_button_background@3x.png
-
- hash
-
- pvLdI3lTwyZJJmw9H9Xqy3tmHE0=
-
- hash2
-
- yN+R8MB8G4Cn6f8p4/K8bWr8E8e0kgYNtqogWc5XlYE=
-
-
- Intercom.bundle/images/submit_button_background_clear.png
-
- hash
-
- FyhfDBagj9rhcAiyNzFmC2b5pcs=
-
- hash2
-
- KDNdjedH+O52gZhl8TJKI3GgpTYlt2oliRsN4d+cfME=
-
-
- Intercom.bundle/images/submit_button_background_clear@2x.png
-
- hash
-
- C+ChMqBlerG80hsj4AbmREsBfOg=
-
- hash2
-
- fKcgRfyCzlGQIVsLdHTjfwbi9Az2enfKUqNcLffmEdE=
-
-
- Intercom.bundle/images/submit_button_background_clear@3x.png
-
- hash
-
- ZJviei1Y4I3+TApNpbZEkoF9B2A=
-
- hash2
-
- qw0+ncIPD9SyhmXXvgDeEsuh85OOyzRZ10fBtQRseGg=
-
-
- Intercom.bundle/images/teammate_bio.png
-
- hash
-
- m14SYcMNUevkgeDLox79JyvIlJM=
-
- hash2
-
- nPO1ZIqoAcQntEuo0x6H948DxLSw0OGwCJVgiG4ItDQ=
-
-
- Intercom.bundle/images/teammate_bio@2x.png
-
- hash
-
- lDGjIF0Ag72gxAITDHSdhXrDFe4=
-
- hash2
-
- 5Y8Un8CWijTa47okpeP2mkfoyXhlxAMGGrgtJEgP57E=
-
-
- Intercom.bundle/images/teammate_bio@3x.png
-
- hash
-
- TNRbaeGq4RcR+MXOVGNn76Ruahw=
-
- hash2
-
- zqr1sbXeEMP+RxIk784CA4Oq1MOLhSBZKcoCXYpyWhM=
-
-
- Intercom.bundle/images/teammate_location.png
-
- hash
-
- B/arrACpiq+W2xo6E51HLTqm1x4=
-
- hash2
-
- isOvunrVQViyfzCwseuyQ7evcuSQXaaLuA2XnV26XTk=
-
-
- Intercom.bundle/images/teammate_location@2x.png
-
- hash
-
- yT4QVuRS1OtCWIuAARx/8I7NEKA=
-
- hash2
-
- KjpYagDaLi1djVwpOCuxWfDnyrGYLbQPq4BO45RAU9U=
-
-
- Intercom.bundle/images/teammate_location@3x.png
-
- hash
-
- zGu7zuqU7fjsKWEBUSmsXcIC46w=
-
- hash2
-
- z6ceLvVnufYsrB/ojWfVo9iy3nAAB19Bm2kOApaTCyk=
-
-
- Intercom.bundle/images/teammate_role.png
-
- hash
-
- vwjvaO3/9gvKPC6onvz/DB9d3KE=
-
- hash2
-
- wz+y7dMFmI2QvcK40uHZXeHRDtjuGy8h/KGTr5a82kg=
-
-
- Intercom.bundle/images/teammate_role@2x.png
-
- hash
-
- Seh2IPVm1KWTCdSOXHWreRX7wqU=
-
- hash2
-
- PHP94EgvHojqwEuAXS3MU1HCFa7zO3eqA1WwFmEUouI=
-
-
- Intercom.bundle/images/teammate_role@3x.png
-
- hash
-
- SuTv69ZE2j4RQtXKCAjvEtpLjDI=
-
- hash2
-
- cCMV1RVZ1MmK9Rs/Xkk3CxeZjsdhAgi7hrZSW4++fmo=
-
-
- Intercom.bundle/images/textfield_background.png
-
- hash
-
- LBKaxgYX83lVElaGWW56+Z5hrXU=
-
- hash2
-
- W4Qb+esc+AmJ0406ad9eyiOZLq+wJsXomTUqKOfoEkI=
-
-
- Intercom.bundle/images/textfield_background@2x.png
-
- hash
-
- X9Nf6snyCI0zv9EZuYIIP/pFFzc=
-
- hash2
-
- 0J3aU10UWKzspAZzly4mtDqEUfv/DVtjNBQjHWCLo84=
-
-
- Intercom.bundle/images/textfield_background@3x.png
-
- hash
-
- nSLAsPZSn6Aica9Q8jnsFPf9u0Q=
-
- hash2
-
- LFw/DDNwp/IFrJ3tyktSt2V5Rt1e9ShooDGAmxzQLDs=
-
-
- Intercom.bundle/images/textfield_background_error.png
-
- hash
-
- gngSpLxP+uBoamI0wv3R8c2AeSk=
-
- hash2
-
- UIVCtBYc0CPEE5NyQ8MlkxSlDmJ1143ht67YDE/OVEA=
-
-
- Intercom.bundle/images/textfield_background_error@2x.png
-
- hash
-
- 4W94EjAYvPStzGhA681gibYU2aQ=
-
- hash2
-
- eCkWgew+f1qHD2DffUtRCe+BmAdQ5FFutNmgVj1ch1c=
-
-
- Intercom.bundle/images/textfield_background_error@3x.png
-
- hash
-
- rfcLx+G7DCq+Xft+tuv0s62MXzE=
-
- hash2
-
- ja9/BNbo24UJpJE2i+K7PP8FTRH9lj0Qd1omNsbFtNw=
-
-
- Intercom.bundle/images/twitter.png
-
- hash
-
- 76htKLId1Qw+uJ7faH1lsEa7hlA=
-
- hash2
-
- OEew0s2jUNQ7E/WAvnrCOup9uf6LukioWuvw0vRo8ro=
-
-
- Intercom.bundle/images/twitter@2x.png
-
- hash
-
- y0K3pfoFhgLWv+L09Tj3EcA4J4o=
-
- hash2
-
- c9847IP7pdOQ3yCwapQkD/R0GJUcU8EG/+tk3Xl8Cqk=
-
-
- Intercom.bundle/images/twitter@3x.png
-
- hash
-
- WfmUsAsvhSv+C5bRTPoIV0Fb9uc=
-
- hash2
-
- y683Ju+hFGAgACFcmfUOXsHzLAknMrOO9GmO46r60gE=
-
-
- Intercom.bundle/images/undo.png
-
- hash
-
- rPs0MdfRqXlHDJq5DlXacGFypLo=
-
- hash2
-
- YGaVTDGXmbfj5GPYzIyXupA95CC/sAmU+ByWyzqnEjg=
-
-
- Intercom.bundle/images/undo@2x.png
-
- hash
-
- YTI4H6qUYHIXEPHga5bh2MNLHdM=
-
- hash2
-
- SuCm7pxBNsIdGM78J2CfIZ9bqGMw2SuPANLYeVOoovw=
-
-
- Intercom.bundle/images/undo@3x.png
-
- hash
-
- tM/XP/xKLIBE9MOSOI/oyL2KrnA=
-
- hash2
-
- f9RnxPkumAvEbq0kgW72OZBZhaF/mnjTEZ/P5OqYfAo=
-
-
- Intercom.bundle/images/upload_icon.png
-
- hash
-
- bsTAlBwWoR+lh6SaiPEg94D/dBU=
-
- hash2
-
- filAa4rvxUAWAlD91NoFsd7p9+uG7OgHhElFsnWCkrw=
-
-
- Intercom.bundle/images/upload_icon@2x.png
-
- hash
-
- 6ODr6HwR/UG9liXa48UYaaI8loI=
-
- hash2
-
- bpjhnN/0pvG5duUow6E96RUv0bSApR9PeyLjYuG9SVA=
-
-
- Intercom.bundle/images/upload_icon@3x.png
-
- hash
-
- 6rRbyeeaEjkVQ7TRt1W18mfAl5w=
-
- hash2
-
- EkhueXGJCeLkJzHJU6OVEm37KGFhaI6z27d1GzIXMas=
-
-
- Intercom.bundle/images/warning.png
-
- hash
-
- zfChnE7+j1VIyK0hUwOz7v/MiPE=
-
- hash2
-
- suwcStstVhLT8TTkixSI6Gshz9PSnBKG2EMujfty05U=
-
-
- Intercom.bundle/images/warning@2x.png
-
- hash
-
- X475cGQ5CL21zDIsROwJsLr2ZkI=
-
- hash2
-
- QJdD8UqqtnUKCr8ci5lxjCWepvRNq4IKrONYBZQzJak=
-
-
- Intercom.bundle/images/warning@3x.png
-
- hash
-
- ThoGz3v4CmVf6nrz8Qkp7YRiO28=
-
- hash2
-
- EWZukpAMzKwnBzOdIBb6MtG3KnWD7JHZ2OwyyzsLZac=
-
-
- Intercom.bundle/sound/admin_reply_delivered.caf
-
- hash
-
- XMWy6g3s8AfIbdY7c442SjDOgtM=
-
- hash2
-
- DltxhEVySw02dT4pjXZEXjvqbmEeVQgHV9U9Vnf+bZc=
-
-
- Intercom.bundle/sound/message_failed.caf
-
- hash
-
- JQZrxGFCKG3J3gaOIFdYE3aZSoU=
-
- hash2
-
- z+oFmztdp/PrZbaiOCMc8hI+0ACQakOBtpeU4o92iRQ=
-
-
- Intercom.bundle/sound/message_operator.caf
-
- hash
-
- ojoAPvdAStxPZQ1m0b1gcklq+Ho=
-
- hash2
-
- y9EdmeincpYjEtRM3zWRwXdbQPTRmaYUR7Vp/3kcgGw=
-
-
- Intercom.bundle/sound/message_sending.caf
-
- hash
-
- 4ex9cI824foKdX7c25IY893/pio=
-
- hash2
-
- Y+4lRhNwia55OZLajS6XLXN6CBlCN2nnCqSE+ODizzY=
-
-
- IntercomTranslations.bundle/Info.plist
-
- hash
-
- QIT77G0gBnoPz2HG/LBLfayvt0g=
-
- hash2
-
- RB6lFbQOIcbw5MDhyaQ7KA5OsPOum19XiYIzy3IkviY=
-
-
- IntercomTranslations.bundle/_CodeSignature/CodeDirectory
-
- hash
-
- wDRiznAEBN2a9hzjj93/fIIyYUs=
-
- hash2
-
- A359LVwYziuoBdV/PfhbPiY6YMxeHkRbZuriq8FZi94=
-
-
- IntercomTranslations.bundle/_CodeSignature/CodeRequirements
-
- hash
-
- OnX22wWFKRSOFN1+obRynMCeyXM=
-
- hash2
-
- mHkgkE6rZQ51eIwFSqCwUk5qgL/HGqMt+NI3phdD+YY=
-
-
- IntercomTranslations.bundle/_CodeSignature/CodeRequirements-1
-
- hash
-
- KtxJ9XNZos1Nqv8h5UHkIrmH7jo=
-
- hash2
-
- +VcHav9Da8qS7+rDYyIUakWaXRCZ+cPIDLYEd5FhVoI=
-
-
- IntercomTranslations.bundle/_CodeSignature/CodeResources
-
- hash
-
- eJq+KDx6ZHgtM1q/K6NAti4i9P4=
-
- hash2
-
- LispzrYK+SFpTmkh56XOkfW0/zwMbKe97C8XNZIBpN4=
-
-
- IntercomTranslations.bundle/_CodeSignature/CodeSignature
-
- hash
-
- 2jmj7l5rSw0yVb/vlWAYkK/YBwk=
-
- hash2
-
- 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=
-
-
- IntercomTranslations.bundle/ar.strings
-
- hash
-
- Gmt3QDdrh4AwciXbQjRAb6ZsUFs=
-
- hash2
-
- GMBnRfh7HoSAZl/IHU5FdAJr26TUS5WjmPxdaLd3y5I=
-
-
- IntercomTranslations.bundle/bg.strings
-
- hash
-
- g49JghHHBhtEUuTr3rDdAE2OGX0=
-
- hash2
-
- cSVRDwSu0vvR34/rtKKnKsAcyh8hSgWgpvP86eshb+8=
-
-
- IntercomTranslations.bundle/bs.strings
-
- hash
-
- ylhLQtfv30zWupCz48JAxLi4Yqg=
-
- hash2
-
- xIF3XhyDeXDR0Js5dVf+xz+oDOZJCvrEwkYfMGj7u7I=
-
-
- IntercomTranslations.bundle/ca.strings
-
- hash
-
- GC6gLsjMm3pC10ImL1NTvuvA9yk=
-
- hash2
-
- m/ICm981Jro8QnWthqv+wAT38qMvZeig2nFgajcloN0=
-
-
- IntercomTranslations.bundle/cs.strings
-
- hash
-
- EmIMhD3omvIJciBUhOaHDCxkPd4=
-
- hash2
-
- zeM4Ss7nO8EZAknzw9yj5Z+OKoR/EHhCY1xusc7wGF0=
-
-
- IntercomTranslations.bundle/da.strings
-
- hash
-
- a6OOW3MXQRADpxJ56hDV0xp6FXU=
-
- hash2
-
- 4Hzppt2UAJ2me/1AErbHqfaqOXoMFyfwmkP9WTaJ6m8=
-
-
- IntercomTranslations.bundle/de-form.strings
-
- hash
-
- y7HIgC4LAzwsLUihNTD8AVF15VI=
-
- hash2
-
- MHHF1u98kQyBDeAvSvvy4IMVyFZaFnlilpSYbrrcFr8=
-
-
- IntercomTranslations.bundle/de.strings
-
- hash
-
- +Nlux3Xc8WlqMh6z0gwL5B33jrU=
-
- hash2
-
- yo+F9x4YO9KN563w3YBPZIPQwm4PRjWUn9LVdDoEaGw=
-
-
- IntercomTranslations.bundle/el.strings
-
- hash
-
- AC2Yt7HxklYRZ+W0xpwTfbRLxoE=
-
- hash2
-
- DIWaFzrUg2Kn7EgdwCD1af2hhpdjUtATy3SM/uViXcI=
-
-
- IntercomTranslations.bundle/en.strings
-
- hash
-
- Ty43ehubiPxhKlvBoepfhCwA9y8=
-
- hash2
-
- RG0aqYGe/PO6lOwm0Qe1mWaiIj1eKf0c5T4Jy9Sb9h8=
-
-
- IntercomTranslations.bundle/es.strings
-
- hash
-
- kuwZPa6vvXFvuJjIVygtkO5uQXI=
-
- hash2
-
- LQ+6IUABq6zY8FaaU3QOnCbgb8v7N9bIbnC9wdC22Os=
-
-
- IntercomTranslations.bundle/et.strings
-
- hash
-
- AjGumyW5cCO4cx/r6M/JJHbiOpY=
-
- hash2
-
- emLxRk0jlg63kh3uf5FMcjt9+n04wsFJeUgtDSeANrI=
-
-
- IntercomTranslations.bundle/fi.strings
-
- hash
-
- /RDSIhM7unQh7m7nqwnypJKOKKg=
-
- hash2
-
- LcktXD9rT6ynRsxgLG6oAGEXVhiEi7V1K+OqZMbC+uA=
-
-
- IntercomTranslations.bundle/fr.strings
-
- hash
-
- N3/7ftOfE21blyMH+Wi04uOc24Q=
-
- hash2
-
- 7M/wIeUkP9xJxRP/jE5KfpIoitvtVLo8aDknMd7ZC0w=
-
-
- IntercomTranslations.bundle/he.strings
-
- hash
-
- EMNqMk6M1+32rzr1M4as7AUH7rI=
-
- hash2
-
- ptzss+CtO/RlAcTZhipzvj+IxO9fWWJDGkXw5BuTcso=
-
-
- IntercomTranslations.bundle/hr.strings
-
- hash
-
- 8bugbIUCrTpIRBmiFNrdB843ve4=
-
- hash2
-
- MiT9zMLfbLJ+MMuIhl6uD6iJY1xPpqDcTgBXuZjGZAw=
-
-
- IntercomTranslations.bundle/hu.strings
-
- hash
-
- Tdr4YoKyVdZA2DSp70u0gTSl8Sc=
-
- hash2
-
- PkUlei6BQqFFjVn47Rnk7eiOcRR8Q4E09MiIq8gZ4QU=
-
-
- IntercomTranslations.bundle/id.strings
-
- hash
-
- pFkwgbLOwVLv6WgzgzEtcVTAmoY=
-
- hash2
-
- Q7TNmCX45Q0uZX6TPUsrAMqWGcCBnswGxEire83OSoI=
-
-
- IntercomTranslations.bundle/it.strings
-
- hash
-
- 4wej08fDi6+CgK9sLIIPaw55KQs=
-
- hash2
-
- JcML/i1i3KXeuB+vVMSYj1UfC96LcnikkVhGwC2scQw=
-
-
- IntercomTranslations.bundle/ja.strings
-
- hash
-
- NcL7aw2/kEhFTzaM6Ue0UK0r6DY=
-
- hash2
-
- YZcPg0r15nS3SpdTlMLDvCL4cyvc1bGFEz+QmczVhmI=
-
-
- IntercomTranslations.bundle/ko.strings
-
- hash
-
- KHRJMXwjfq2LDj+StRiU3MY6MKs=
-
- hash2
-
- TuSJY5YdCqBIWyZuKQ+i5xHf3eC+CJGWSdlZ9ambhZo=
-
-
- IntercomTranslations.bundle/lt.strings
-
- hash
-
- DyUHOfLMBRPeaugT5WC65pMFGSI=
-
- hash2
-
- l4SMry3OvHh0wyJeAadqv6N1JPP/WBhKppDqgvXPTnw=
-
-
- IntercomTranslations.bundle/lv.strings
-
- hash
-
- X+RQ71/wlXFndKklkbY5JsRo4WY=
-
- hash2
-
- aSt9gViOTrF49ZjYq6Oy7EZ/bBVfW6at4h8xIIKf2ig=
-
-
- IntercomTranslations.bundle/mn.strings
-
- hash
-
- bOys42j6YfZh4pAnNmRmxAp+ctU=
-
- hash2
-
- 2ovvZouAEPUpG9bYx85DwUM4W4ctfMfRay7FjMj33gk=
-
-
- IntercomTranslations.bundle/nb.strings
-
- hash
-
- IxN08/nLE9WXuZLgZ7rkRuMwhg4=
-
- hash2
-
- 3OFn0s/rjxdFrFEFlAKyAH0uj2QpLAa4V9SKTCW5dfQ=
-
-
- IntercomTranslations.bundle/nl.strings
-
- hash
-
- l1v4ek4TknzhIm4Da/Be/RvlBgc=
-
- hash2
-
- Gi31fWCJqe6vlrCE8mdFkCjfHXeaQzkmxRnr2oDgOeE=
-
-
- IntercomTranslations.bundle/pl.strings
-
- hash
-
- LWNB7fQNXJA01T2NL4DfcfSYW9A=
-
- hash2
-
- yVqtg7dptzIuEG3yI0hav6dpKYCv+NNgcwcQaZ14omU=
-
-
- IntercomTranslations.bundle/pt-br.strings
-
- hash
-
- fY2umGFlSL/kbIY88sALbkm6UIw=
-
- hash2
-
- 5hpJTyAvXclHKu950HVPnpnzQ+WqDbIWn9sYMcem1co=
-
-
- IntercomTranslations.bundle/pt-pt.strings
-
- hash
-
- q2PHBM/aCSalD5idxoovgCPR9TY=
-
- hash2
-
- n+BMWKfslIe6skkQqPExdoBL9U+M6/q2LPRcfobPxDE=
-
-
- IntercomTranslations.bundle/ro.strings
-
- hash
-
- /JCGWyw1CESBsgvfLpPUcFWE2Fw=
-
- hash2
-
- CCsdo7XIwuJwn+y0jlidjJ/cqfHFDYVJJ2mWst7gJcw=
-
-
- IntercomTranslations.bundle/ru.strings
-
- hash
-
- 9HgUuW09Bo8Rip2+5xQJRlXslQQ=
-
- hash2
-
- bNDu6SRxQAScHkNA847Va22YhjmsRoAvYA7Tze2TF28=
-
-
- IntercomTranslations.bundle/sl.strings
-
- hash
-
- MbUPV2oNBz7E4Q9OlKMK8FPxNlY=
-
- hash2
-
- 4W0Zkr74C0+H+QaVexmJ2FCa003cZKnKRlbCep/ybRI=
-
-
- IntercomTranslations.bundle/sr.strings
-
- hash
-
- t4Lu6KMwFfmeqQX1PQTLoZqv4BA=
-
- hash2
-
- uMYwEv7fmbn6ywJI3KW1ox1lHbt7a26WEtttUo8FL2g=
-
-
- IntercomTranslations.bundle/sv.strings
-
- hash
-
- QxZMF4wPZNl5OHnGzSssvdKqzQg=
-
- hash2
-
- hOAK3yRz/OUjZgLpIDXvX19eWsZYOUpHUk2IfmjSHaA=
-
-
- IntercomTranslations.bundle/tr.strings
-
- hash
-
- xRsc2yo2v0gO2BmCiQuLb3vMWOw=
-
- hash2
-
- 0aWjRajvW7t04Vs6PXsVTAlF8pa2C9ciSdAT2YC5M8A=
-
-
- IntercomTranslations.bundle/vi.strings
-
- hash
-
- /e12wYv+SfnlJZMSm9mSTWp61zo=
-
- hash2
-
- ud+nDne1B1b2YCL1WPc7XbPThWB9o/x1/1TpDqcMIvg=
-
-
- IntercomTranslations.bundle/zh-hans.strings
-
- hash
-
- QoF0N6GvvST7E/DldPVxeVzrA3o=
-
- hash2
-
- GYnGm6TWNfdgv/mgkPPUvjmM+/jquVPvpbyzBcorjCA=
-
-
- IntercomTranslations.bundle/zh-hant.strings
-
- hash
-
- jUFBV5Z8aUEShh3LvLNa/BrH0IM=
-
- hash2
-
- YZxu7gaYJrlpGtnvj2gOI38XY8izBAy2KcW5L1niUcg=
-
-
- Modules/Intercom.swiftmodule/arm64-apple-ios-simulator.swiftdoc
-
- hash
-
- h4Ee0GuDDPaOU+UKXPu+N7DYqVU=
-
- hash2
-
- dteIQLWpJ5AOVl6p1/6BxGy4y0UYTcg4RhUUHJucfCE=
-
-
- Modules/Intercom.swiftmodule/arm64-apple-ios-simulator.swiftinterface
-
- hash
-
- PyE2TFA7lmdGsCcPWwTjIBE5UEc=
-
- hash2
-
- QZZ0he586rBvkuUcTgGfLymBg1Y7bVo52rnjJ0ursMs=
-
-
- Modules/Intercom.swiftmodule/arm64-apple-ios-simulator.swiftmodule
-
- hash
-
- 8wEP1EeaTGBtTKLy6PjBfLkZtqE=
-
- hash2
-
- Nwrf4sLegb32KOM/YrakhiUuIPX4MpfrT2DkpdH5FiY=
-
-
- Modules/Intercom.swiftmodule/arm64.swiftdoc
-
- hash
-
- h4Ee0GuDDPaOU+UKXPu+N7DYqVU=
-
- hash2
-
- dteIQLWpJ5AOVl6p1/6BxGy4y0UYTcg4RhUUHJucfCE=
-
-
- Modules/Intercom.swiftmodule/arm64.swiftinterface
-
- hash
-
- PyE2TFA7lmdGsCcPWwTjIBE5UEc=
-
- hash2
-
- QZZ0he586rBvkuUcTgGfLymBg1Y7bVo52rnjJ0ursMs=
-
-
- Modules/Intercom.swiftmodule/arm64.swiftmodule
-
- hash
-
- 8wEP1EeaTGBtTKLy6PjBfLkZtqE=
-
- hash2
-
- Nwrf4sLegb32KOM/YrakhiUuIPX4MpfrT2DkpdH5FiY=
-
-
- Modules/Intercom.swiftmodule/i386-apple-ios-simulator.swiftdoc
-
- hash
-
- Yc3Bw9NfcgDcfu2SCYT77JWCskg=
-
- hash2
-
- nj3WLJ+xbLb7lDZMdkskwOyKyqurewqJqiaU1yK1GDU=
-
-
- Modules/Intercom.swiftmodule/i386-apple-ios-simulator.swiftinterface
-
- hash
-
- qZrzQ2Fiec0/baXywr1pTKQ9t20=
-
- hash2
-
- FSGrf2CNSFYwUoHNGc+RuCEqt0y1+wRNAZ0p+zNxcSU=
-
-
- Modules/Intercom.swiftmodule/i386-apple-ios-simulator.swiftmodule
-
- hash
-
- TFUKFgKTAN7+BkBoIyMDpZhtT9A=
-
- hash2
-
- ZVOk/2k1T0HC9Fd4bQuJXyzs4sdfvHLFYVQ5R84GlR8=
-
-
- Modules/Intercom.swiftmodule/i386.swiftdoc
-
- hash
-
- Yc3Bw9NfcgDcfu2SCYT77JWCskg=
-
- hash2
-
- nj3WLJ+xbLb7lDZMdkskwOyKyqurewqJqiaU1yK1GDU=
-
-
- Modules/Intercom.swiftmodule/i386.swiftinterface
-
- hash
-
- qZrzQ2Fiec0/baXywr1pTKQ9t20=
-
- hash2
-
- FSGrf2CNSFYwUoHNGc+RuCEqt0y1+wRNAZ0p+zNxcSU=
-
-
- Modules/Intercom.swiftmodule/i386.swiftmodule
-
- hash
-
- TFUKFgKTAN7+BkBoIyMDpZhtT9A=
-
- hash2
-
- ZVOk/2k1T0HC9Fd4bQuJXyzs4sdfvHLFYVQ5R84GlR8=
-
-
- Modules/Intercom.swiftmodule/x86_64-apple-ios-simulator.swiftdoc
-
- hash
-
- GCugfSoelIl+cxHLUxPtr9IOqtI=
-
- hash2
-
- Zl4ysu9eCjOm49QEnYhbzPpfR3ic143CUcFoT53uWnY=
-
-
- Modules/Intercom.swiftmodule/x86_64-apple-ios-simulator.swiftinterface
-
- hash
-
- VKBP6QA/Bes5ogZLriEkGdD0K5k=
-
- hash2
-
- /gvvZeOfr8GlGUZ5IkjEqsGj3ap/X2Ke8qYSlO5wTuY=
-
-
- Modules/Intercom.swiftmodule/x86_64-apple-ios-simulator.swiftmodule
-
- hash
-
- 5wpu7b500NSoHDadX0IS1GVQVuY=
-
- hash2
-
- whrw07qqDGUwFxHF1bnD4O2Wxiu/3sE4Kmzp/Ilbr2c=
-
-
- Modules/Intercom.swiftmodule/x86_64.swiftdoc
-
- hash
-
- GCugfSoelIl+cxHLUxPtr9IOqtI=
-
- hash2
-
- Zl4ysu9eCjOm49QEnYhbzPpfR3ic143CUcFoT53uWnY=
-
-
- Modules/Intercom.swiftmodule/x86_64.swiftinterface
-
- hash
-
- VKBP6QA/Bes5ogZLriEkGdD0K5k=
-
- hash2
-
- /gvvZeOfr8GlGUZ5IkjEqsGj3ap/X2Ke8qYSlO5wTuY=
-
-
- Modules/Intercom.swiftmodule/x86_64.swiftmodule
-
- hash
-
- 5wpu7b500NSoHDadX0IS1GVQVuY=
-
- hash2
-
- whrw07qqDGUwFxHF1bnD4O2Wxiu/3sE4Kmzp/Ilbr2c=
-
-
- Modules/module.modulemap
-
- hash
-
- EppyuX6MzBQrz4cotp1RE2zqYTg=
-
- hash2
-
- 4bIgKVn5j1VQgEVU76DvNk/9Roq/21ilX0w4xmASZpk=
-
-
- Modules/module.private.modulemap
-
- hash
-
- BxWP+6WXJvtZqhEmLo871TT7qjk=
-
- hash2
-
- AAsD6cKvkOG76DBMiX3mN/0UtEkiCTRw/Xki0Yy7ZIo=
-
-
- PrivateHeaders/ICMActiveAdminsAvatarView.h
-
- hash
-
- 9vJ085NJvBUP02HcSfHcMwXmvCY=
-
- hash2
-
- +8181T3nY6YavIjM7SOgbTVoLdhZ/CXO7BjgRGQfd8Y=
-
-
- PrivateHeaders/ICMArticleWebViewController.h
-
- hash
-
- c9fNZy7NVNbT55x1XyjnlAqAYJU=
-
- hash2
-
- 7jOMVEvErWn8BB7eb1vb9PonH0XNRwdl+lhgLFCbr4I=
-
-
- PrivateHeaders/ICMAssets.h
-
- hash
-
- VsmtV5iyMPWWO39PrOyaek7BT5k=
-
- hash2
-
- 8lxMxkzvM2zihh4/zSLgHl5SPLANCM2wEV7tiUrDsIY=
-
-
- PrivateHeaders/ICMAutoLayout.h
-
- hash
-
- ibYpQyF7ZrxbltzbzMSsmxqOePg=
-
- hash2
-
- dcY0wRqPlJdhHtP+t+ZyWEgdCkKyCGrVceoIOvGRIak=
-
-
- PrivateHeaders/ICMColor.h
-
- hash
-
- xw4RLFtDmgpy2Kfhqy96uKtvivA=
-
- hash2
-
- QIAxIXnP8S/0i8r+3nw/bvrRbXOIJecto0UJxRvrVe0=
-
-
- PrivateHeaders/ICMConfig.h
-
- hash
-
- tITNCJo68GqWpKLbdTu+918qglk=
-
- hash2
-
- tz50jNg1u+4K4STkX9RcvJOxk8pitS0qPGLiI+dktms=
-
-
- PrivateHeaders/ICMContentViewController.h
-
- hash
-
- ZTygXZmX8qnT8tomvSrdziUznyY=
-
- hash2
-
- 5KyBP+EFBaH04v3Og6rGIfyuju6/k2q6KCaSTQUx8Is=
-
-
- PrivateHeaders/ICMContentViewControllerDelegate.h
-
- hash
-
- 2a1oegfhrvQt/vff/wmfh2V8w2k=
-
- hash2
-
- +1ZrnEU+qspjEgHfk7o0XyQ1Rs+uhcUr0Zk331dnwoQ=
-
-
- PrivateHeaders/ICMEngine.h
-
- hash
-
- d6y1olmjJ6eShak/uKoU7uU+YCA=
-
- hash2
-
- PSDibjE1tm4GMi+WjXD0Zn8O4D4aMHk7VOTi2Z6y4/I=
-
-
- PrivateHeaders/ICMErrorViewController.h
-
- hash
-
- 7z5Kk6X40NSBGqOhNOz6bC/85SU=
-
- hash2
-
- d4IN9/AQiWGsqBhleML3B360kXN9Lxii31zdi39Bsz4=
-
-
- PrivateHeaders/ICMErrorViewDelegate.h
-
- hash
-
- xiQNHnsf7I4+VxR8Vi1u609Prec=
-
- hash2
-
- h5nS4EWsVW2YaTGtgokx3ZINO1D4h7pWKOGUwSHYlZE=
-
-
- PrivateHeaders/ICMFeedbackGenerator.h
-
- hash
-
- 0OJ8TLe3vV9hFAIvUKM1Z8OfjkI=
-
- hash2
-
- z6BI58iciJGNaqXhAa48qGUnGGoGo2YHR5dMKCMBYZs=
-
-
- PrivateHeaders/ICMHTTPClient.h
-
- hash
-
- JiTx2JeOgGLf8t/lQC85NGbpzs4=
-
- hash2
-
- 0dxklamKq2LuH9oTwDdy4/s8ODzio7bc/x809b9OX3A=
-
-
- PrivateHeaders/ICMHTTPClientProtocol.h
-
- hash
-
- xlnsE87UY4WeU4e3PZrbRa3Uj4c=
-
- hash2
-
- u+q/4j2PkqwDLWH/mB9Pd3p3NablwruOcSPjFHykWqo=
-
-
- PrivateHeaders/ICMHelpCenterTranslationManager.h
-
- hash
-
- LZRbPoHUjaf222aLYZ9QY5HnGCc=
-
- hash2
-
- 8N/MqHKTMR2kYRwa+YOFNHeKS51/TzEwXmEuhteQ4hA=
-
-
- PrivateHeaders/ICMLoadingViewController.h
-
- hash
-
- QH1Vbqj+ZMq4Y8HKz23kvDAWaQQ=
-
- hash2
-
- pf+VCZ5/Dz7E3z/kAnDUNFB2IiK6j0s7FDWn5XG5fE4=
-
-
- PrivateHeaders/ICMMetric.h
-
- hash
-
- arD4zoUKbmQzIXlRpij0hdhiGCE=
-
- hash2
-
- XF9Gis6fo/6yZjJ29JkpPcUGfnbxw8KNywOt3zRsKNo=
-
-
- PrivateHeaders/ICMMetricEvent.h
-
- hash
-
- J22bP7uKewvTloH56JdO9iiKSuA=
-
- hash2
-
- HeXtnaGPySKfFTRL1qAPFqHhIJ0tjzlxGqLOS2Ht398=
-
-
- PrivateHeaders/ICMNavigationBarCloseButton.h
-
- hash
-
- 3RXfqW9dikZdjHxHy2umWPhg67c=
-
- hash2
-
- DqXjGsIPX8LUrh8o5MwqEVKf5ZqnzWS0+vPidnwbnLI=
-
-
- PrivateHeaders/ICMNavigationController.h
-
- hash
-
- 1whWLs7oOlG6Il9jOs7oOpZyRDw=
-
- hash2
-
- VkfC7oL9NL8WsVrZka4Wa4EasCbzjQafUAUMFsivLng=
-
-
- PrivateHeaders/ICMPresentationManager.h
-
- hash
-
- 9Y+eIvWuFparXg2/MBeUAJ7MmLI=
-
- hash2
-
- ZpiUOw80opkTKuHClsLVw49gxPAN5lXL++4nlrDjTGo=
-
-
- PrivateHeaders/ICMSafeNetworkModel.h
-
- hash
-
- nwHA7vBks3Bs9vLyUWrO4oxPiMM=
-
- hash2
-
- 30GBgRdvzJhpBnE/NCgL9+bybRLWNQBSvmF/zqBpzsg=
-
-
- PrivateHeaders/ICMStartConversationButton.h
-
- hash
-
- v40kEnNLxmUnaQsCgc3SE1oYkC8=
-
- hash2
-
- E3Wk3FpPAkWaogfgCR+Reko3GIoDTYGpsbPuF4EUPe8=
-
-
- PrivateHeaders/ICMTranslationKeys.h
-
- hash
-
- Pp5WNbZtH5S/hX+6SCaZ74LXkpc=
-
- hash2
-
- skYJVVKaRq16Y0LiBVw27BJmC7QzRula6GQ1/a2wwcw=
-
-
- PrivateHeaders/ICMTranslationManager.h
-
- hash
-
- kXd7i0hAwIXiH0Rd4koHYTB9s8c=
-
- hash2
-
- h1Jhe1pwxf0QLMl1Xp3vfe8i6pinLZue4Vaai3z9OJU=
-
-
- PrivateHeaders/ICMUtils.h
-
- hash
-
- LyTJxmvg5eSRRJVbraxDiM7SI80=
-
- hash2
-
- PpeVMZVz5ko8m7+1ONNxtt/pDwSO42anDbyOzOJqDKs=
-
-
- PrivateHeaders/UIImage+ICMImageUtils.h
-
- hash
-
- mOIUn0jHQgFvZkpZsIPuYzrM8PI=
-
- hash2
-
- lnS8ik99Pg7LJ63QXn2+4AIMsxa9UXkLf7Yf9CJdd18=
-
-
- strip-frameworks.sh
-
- hash
-
- bENFeKfMHTdHyWS5AygjhdAo44Q=
-
- hash2
-
- TdoX67LzludHG3MJM/ykgPmTswRtyXdokveq/f6XloI=
-
-
-
- rules
-
- ^.*
-
- ^.*\.lproj/
-
- optional
-
- weight
- 1000
-
- ^.*\.lproj/locversion.plist$
-
- omit
-
- weight
- 1100
-
- ^Base\.lproj/
-
- weight
- 1010
-
- ^version.plist$
-
-
- rules2
-
- .*\.dSYM($|/)
-
- weight
- 11
-
- ^(.*/)?\.DS_Store$
-
- omit
-
- weight
- 2000
-
- ^.*
-
- ^.*\.lproj/
-
- optional
-
- weight
- 1000
-
- ^.*\.lproj/locversion.plist$
-
- omit
-
- weight
- 1100
-
- ^Base\.lproj/
-
- weight
- 1010
-
- ^Info\.plist$
-
- omit
-
- weight
- 20
-
- ^PkgInfo$
-
- omit
-
- weight
- 20
-
- ^embedded\.provisionprofile$
-
- weight
- 20
-
- ^version\.plist$
-
- weight
- 20
-
-
-
-
diff --git a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/strip-frameworks.sh b/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/strip-frameworks.sh
deleted file mode 100644
index 80814abb..00000000
--- a/Intercom.xcframework/ios-arm64_i386_x86_64-simulator/Intercom.framework/strip-frameworks.sh
+++ /dev/null
@@ -1,72 +0,0 @@
-################################################################################
-#
-# Copyright 2015 Realm Inc.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-################################################################################
-
-# This script strips all non-valid architectures from dynamic libraries in
-# the application's `Frameworks` directory.
-#
-# The following environment variables are required:
-#
-# BUILT_PRODUCTS_DIR
-# FRAMEWORKS_FOLDER_PATH
-# VALID_ARCHS
-# EXPANDED_CODE_SIGN_IDENTITY
-
-
-# Signs a framework with the provided identity
-code_sign() {
- # Use the current code_sign_identitiy
- echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}"
- echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements $1"
- /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1"
-}
-
-# Set working directory to product’s embedded frameworks
-cd "${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}"
-
-if [ "$ACTION" = "install" ]; then
- echo "Copy .bcsymbolmap files to .xcarchive"
- find . -name '*.bcsymbolmap' -type f -exec mv {} "${CONFIGURATION_BUILD_DIR}" \;
-else
- # Delete *.bcsymbolmap files from framework bundle unless archiving
- find . -name '*.bcsymbolmap' -type f -exec rm -rf "{}" +\;
-fi
-
-echo "Stripping frameworks"
-
-for file in $(find . -type f -perm +111); do
- # Skip non-dynamic libraries
- if ! [[ "$(file "$file")" == *"dynamically linked shared library"* ]]; then
- continue
- fi
- # Get architectures for current file
- archs="$(lipo -info "${file}" | rev | cut -d ':' -f1 | rev)"
- stripped=""
- for arch in $archs; do
- if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then
- # Strip non-valid architectures in-place
- lipo -remove "$arch" -output "$file" "$file" || exit 1
- stripped="$stripped $arch"
- fi
- done
- if [[ "$stripped" != "" ]]; then
- echo "Stripped $file of architectures:$stripped"
- if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then
- code_sign "${file}"
- fi
- fi
-done